├── Database └── ssdb20170222-full.sql ├── LICENSE ├── README.md ├── SlickSafe License.txt └── Source ├── .gitignore ├── .vs ├── SlickOne.sqlite ├── SlickSafe.sqlite ├── config │ └── applicationhost.config └── restore.dg ├── DLL ├── AutoMapper.dll ├── Autofac.Integration.Mef.dll ├── Autofac.Integration.Mef.xml ├── Autofac.dll ├── Autofac.xml ├── Microsoft.AspNet.SignalR.Client.dll ├── Microsoft.Web.Infrastructure.dll ├── Newtonsoft.Json.dll ├── RestSharp.dll ├── ServiceStack.Text.dll ├── SlickMaster.Builder.dll ├── System.Net.Http.Formatting.dll ├── System.Web.Helpers.dll ├── System.Web.Http.Data.EntityFramework.dll ├── System.Web.Http.Data.Helpers.dll ├── System.Web.Http.Data.Helpers2.dll ├── System.Web.Http.Data.dll ├── System.Web.Http.WebHost.dll ├── System.Web.Http.dll ├── System.Web.Mvc.dll ├── System.Web.Optimization.dll ├── System.Web.Providers.dll ├── System.Web.Razor.dll ├── System.Web.WebPages.Deployment.dll ├── System.Web.WebPages.Razor.dll ├── System.Web.WebPages.dll ├── WebActivator.dll ├── WebGrease.dll └── WebMatrix.Data.dll ├── Dapper ├── Dapper.csproj ├── DefaultParameterCharacter.cs ├── Extensions │ ├── DapperExtensions.cs │ ├── DapperExtensionsConfiguration.cs │ ├── DapperImplementor.cs │ ├── Database.cs │ ├── GetMultiplePredicate.cs │ ├── GetMultipleResult.cs │ ├── Mapper │ │ ├── AutoClassMapper.cs │ │ ├── ClassMapper.cs │ │ ├── PluralizedAutoClassMapper.cs │ │ └── PropertyMap.cs │ ├── Predicates.cs │ ├── ReflectionHelper.cs │ └── Sql │ │ ├── KingbaseSqlDialect.cs │ │ ├── MySqlDialect.cs │ │ ├── OracleSqlDialect.cs │ │ ├── PostgreSqlDialect.cs │ │ ├── SqlCeDialect.cs │ │ ├── SqlDialectBase.cs │ │ ├── SqlGenerator.cs │ │ ├── SqlServerDialect.cs │ │ └── SqliteDialect.cs ├── Properties │ └── AssemblyInfo.cs ├── SqlBuilder.cs ├── SqlMapper.cs ├── SqlMapperAsync.cs └── SqlMapperExtensions.cs ├── SlickOne.Biz ├── Entity │ ├── ActivityInstanceEntity.cs │ ├── FormEntity.cs │ ├── LogEntity.cs │ ├── LogQueryEntity.cs │ ├── ProcessEntity.cs │ ├── ProcessInstanceEntity.cs │ ├── ProductEntity.cs │ ├── ProductQuery.cs │ ├── QueryBase.cs │ ├── Table.cs │ ├── TaskEntity.cs │ ├── TaskViewEntity.cs │ └── TransitionInstanceEntity.cs ├── Properties │ └── AssemblyInfo.cs ├── Service │ ├── IProductService.cs │ ├── IWfDataService.cs │ ├── ProductService.cs │ └── WfDataService.cs └── SlickOne.Biz.csproj ├── SlickOne.Data ├── AppSettingsWrapper.cs ├── DBTypeExtensions.cs ├── IRepository.cs ├── Pager.cs ├── Properties │ └── AssemblyInfo.cs ├── Repository.cs ├── ServiceBase.cs ├── Session.cs ├── SessionFactory.cs └── SlickOne.Data.csproj ├── SlickOne.WebUtility ├── AutoMapperHelper.cs ├── CaptchaImageActionResult.cs ├── CookieHelper.cs ├── Credentials.cs ├── EMailUtility.cs ├── FileHelper.cs ├── HttpClientHelper.cs ├── HttpClientTest.cs ├── HttpRequestMessageExtensions.cs ├── ImageHelper.cs ├── JsTreeModel.cs ├── JsonHelper.cs ├── LogonResult.cs ├── MvcAuthControllerBase.cs ├── MvcControllerBase.cs ├── NetworkUtility.cs ├── Properties │ └── AssemblyInfo.cs ├── ResponseResult.cs ├── RestClientHelper.cs ├── Security │ ├── AdminAuthenticationAttribute.cs │ ├── AuthorizedUser.cs │ ├── CryptographUtility.cs │ ├── HashingAlgorithmUtility.cs │ └── RequireAuthorizeAttribute.cs ├── SessionManager.cs ├── SlickOne.WebUtility.csproj ├── UserAuthModel.cs ├── WebLogonUser.cs └── WebLogonUserData.cs ├── SlickSafe.AuthImpl ├── Entity │ ├── AccountStatusEnum.cs │ ├── AccountTypeEnum.cs │ ├── LoginUser.cs │ ├── QueryBase.cs │ ├── ResourceEntity.cs │ ├── ResourceNode.cs │ ├── ResourceQuery.cs │ ├── ResourceTypeEnum.cs │ ├── RoleEntity.cs │ ├── RoleResourceEntity.cs │ ├── RoleResourcePermissionView.cs │ ├── RoleUserEntity.cs │ ├── RoleUserQuery.cs │ ├── RoleUserView.cs │ ├── Table.cs │ ├── UserAccountEntity.cs │ ├── UserAccountQuery.cs │ ├── UserEntity.cs │ ├── UserLogEntity.cs │ ├── UserLogQuery.cs │ ├── UserPasswordEntity.cs │ ├── UserPermissionEntity.cs │ ├── UserResourceEntity.cs │ ├── UserResourcePermissionView.cs │ └── XmlTransferEntity.cs ├── Properties │ └── AssemblyInfo.cs ├── Service │ ├── AccountService.cs │ ├── IAccountService.cs │ ├── ILogService.cs │ ├── IPermissionService.cs │ ├── IResourceService.cs │ ├── IRoleService.cs │ ├── LogService.cs │ ├── PermissionService.cs │ ├── ResourceService.cs │ └── RoleService.cs └── SlickSafe.AuthImpl.csproj ├── SlickSafe.Web ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Content │ ├── ag-grid │ │ ├── ag-grid.css │ │ └── theme-bootstrap.css │ ├── bootstrap │ │ ├── bootstrap-3.3.7.min.css │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap-dialog.min.css │ │ ├── bootstrap-progressbar-3.3.4.css │ │ ├── bootstrap-progressbar-3.3.4.min.css │ │ ├── bootstrap-theme-3.3.7.min.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── font-awesome.min.css │ ├── bpmnjs │ │ ├── bpmn-font │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ ├── bpmn-embedded.css │ │ │ │ └── bpmn.css │ │ │ └── font │ │ │ │ ├── bpmn.eot │ │ │ │ ├── bpmn.svg │ │ │ │ ├── bpmn.ttf │ │ │ │ └── bpmn.woff │ │ └── diagram-js.css │ ├── fonts │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── ajax-loader.gif │ │ ├── bpmn-icons.gif │ │ ├── buttonicon.gif │ │ ├── circle.png │ │ ├── delete.png │ │ ├── diamond.png │ │ ├── ellipse.png │ │ ├── jsplumb-grid.png │ │ ├── logo.png │ │ ├── rectangle.png │ │ ├── sailor.jpg │ │ ├── sprite.png │ │ ├── triangle.png │ │ └── triangle_90.png │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── jsPlumb-Connector-Components.png │ ├── jquery-ui │ │ ├── images │ │ │ ├── 2.png │ │ │ ├── Batch-1_01.png │ │ │ ├── Batch-1_03.png │ │ │ ├── Batch-1_05.png │ │ │ ├── Batch-1_07.png │ │ │ ├── ajax-loader.gif │ │ │ ├── alert.png │ │ │ ├── arrow.png │ │ │ ├── arrowex.png │ │ │ ├── blue.png │ │ │ ├── buttonicon.gif │ │ │ ├── calendar.gif │ │ │ ├── chosebtn.png │ │ │ ├── chosedialog1_03.png │ │ │ ├── confirm.png │ │ │ ├── datagrid_title_bg.png │ │ │ ├── dd.html │ │ │ ├── empty.png │ │ │ ├── error.png │ │ │ ├── exit.png │ │ │ ├── exit1.png │ │ │ ├── expend.png │ │ │ ├── fieldset.png │ │ │ ├── fieldset1.png │ │ │ ├── gray.png │ │ │ ├── hightlight.jpg │ │ │ ├── info.png │ │ │ ├── jiantou.png │ │ │ ├── jsplumb-grid.png │ │ │ ├── listicon.png │ │ │ ├── listicon1.png │ │ │ ├── liulan_03.png │ │ │ ├── liulan_05.png │ │ │ ├── logo.png │ │ │ ├── message.png │ │ │ ├── message1.png │ │ │ ├── msgBoxBackGround.png │ │ │ ├── myui-header.png │ │ │ ├── openfile.png │ │ │ ├── relogin.png │ │ │ ├── relogin1.png │ │ │ ├── search.png │ │ │ ├── tick.png │ │ │ ├── tick2.png │ │ │ ├── toolbarwin7.png │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ ├── upload.png │ │ │ ├── user.png │ │ │ ├── user1.png │ │ │ ├── user2.png │ │ │ ├── user_online.gif │ │ │ ├── web_ui_lanrensc_01_03.png │ │ │ └── web_ui_lanrensc_03.png │ │ ├── jquery-ui-1.8.16.custom.css │ │ └── jquery-ui.css │ ├── jsplumb │ │ ├── ico-jsplumb.eot │ │ ├── ico-jsplumb.svg │ │ ├── ico-jsplumb.ttf │ │ ├── ico-jsplumb.woff │ │ ├── jsPlumb-demo.css │ │ ├── jsPlumb-main.css │ │ ├── jsPlumbToolkit-defaults.css │ │ └── jsPlumbToolkit-demo.css │ ├── layout.css │ ├── loginstyle.css │ ├── msgBoxLight.css │ ├── splitter.css │ ├── superfish.css │ ├── themes │ │ └── base │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.menu.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.spinner.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ ├── jquery.ui.tooltip.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.menu.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.spinner.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ ├── jquery.ui.theme.min.css │ │ │ └── jquery.ui.tooltip.min.css │ ├── ui │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui.css │ │ └── minified │ │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.menu.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.spinner.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ ├── jquery.ui.theme.min.css │ │ │ └── jquery.ui.tooltip.min.css │ └── ztree │ │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── line_conn.gif │ │ ├── line_conn.png │ │ ├── loading.gif │ │ ├── metro.gif │ │ └── metro.png │ │ └── metro.css ├── Controllers │ ├── Mvc │ │ ├── AccountController.cs │ │ ├── DemoController.cs │ │ ├── HomeController.cs │ │ ├── LogController.cs │ │ ├── PermissionController.cs │ │ ├── ProductController.cs │ │ ├── ProfileController.cs │ │ ├── ResourceController.cs │ │ ├── RoleController.cs │ │ ├── RoleUserController.cs │ │ ├── TaskController.cs │ │ ├── TestController.cs │ │ ├── UserController.cs │ │ └── WorkflowController.cs │ └── WebApi │ │ ├── AccountController.cs │ │ ├── HelloWorldController.cs │ │ ├── LogDataController.cs │ │ ├── PermissionDataController.cs │ │ ├── PermissionUserController.cs │ │ ├── ResourceDataController.cs │ │ ├── RoleDataController.cs │ │ └── WfDataController.cs ├── Filter │ ├── BasicAuthenticationAttribute.cs │ └── FormAuthCookieRequestAttribute.cs ├── Global.asax ├── Global.asax.cs ├── Models │ ├── AccountModel.cs │ ├── ChangePasswordResult.cs │ └── LogInfoModel.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── XMLWriter-1.0.0-min.js │ ├── _references.js │ ├── ag-grid │ │ ├── ag-grid.js │ │ └── ag-grid.min.js │ ├── bootstrap │ │ ├── bootbox.min.js │ │ ├── bootstrap-datetimepicker.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ ├── bootstrap-dialog.min.js │ │ ├── bootstrap-progressbar.js │ │ ├── bootstrap-progressbar.min.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── handlebars.js │ ├── jquery-3.1.1.intellisense.js │ ├── jquery-3.1.1.js │ ├── jquery-3.1.1.min.js │ ├── jquery-3.1.1.min.map │ ├── jquery-3.1.1.slim.js │ ├── jquery-3.1.1.slim.min.js │ ├── jquery-3.1.1.slim.min.map │ ├── jquery │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery-1.8.3.js │ │ ├── jquery-ui-1.10.3.min.js │ │ ├── jquery.event.drag-2.2.js │ │ ├── jquery.msgBox.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── jquery.ztree.all-3.5.min.js │ │ ├── jstree.js │ │ └── ui │ │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.resizable.js │ │ │ ├── jquery.ui.sortable.js │ │ │ └── jquery.ui.widget.js │ ├── jshelper.js │ ├── jsplumb │ │ ├── jsPlumb-2.2.8-min.js │ │ └── jsPlumb-2.2.8.js │ ├── localhelper.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ ├── respond.min.js │ ├── slick.event.js │ ├── xmlhelper.js │ └── ztree │ │ └── jquery.ztree.all-3.5.min.js ├── SlickSafe.Web.1.2.0.0.nupkg ├── SlickSafe.Web.csproj ├── SlickSafe.Web.nuspec ├── ViewJS │ ├── account.js │ ├── loglist.js │ ├── processlist.js │ ├── productlist.js │ ├── resourcelist.js │ ├── rolelist.js │ ├── rolepermissionlist.js │ ├── roleusertree.js │ ├── somain.js │ ├── somain.min.js │ ├── tasklist.js │ ├── userlist.js │ ├── userlistdialog.js │ └── userpermissionlist.js ├── Views │ ├── Account │ │ ├── Login.cshtml │ │ ├── Password.cshtml │ │ └── Register.cshtml │ ├── Demo │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Log │ │ ├── Exception.cshtml │ │ ├── Login.cshtml │ │ └── Operation.cshtml │ ├── Permission │ │ ├── Role.cshtml │ │ └── User.cshtml │ ├── Process │ │ └── List.cshtml │ ├── Product │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Profile │ │ └── Index.cshtml │ ├── Resource │ │ ├── Authorize.cshtml │ │ ├── Edit.cshtml │ │ └── List.cshtml │ ├── Role │ │ ├── Edit.cshtml │ │ └── List.cshtml │ ├── RoleUser │ │ └── List.cshtml │ ├── Shared │ │ └── mainlayout.cshtml │ ├── Test │ │ ├── Index.cshtml │ │ ├── NavBar.cshtml │ │ └── SideBar.cshtml │ ├── User │ │ ├── Dialog.cshtml │ │ ├── Edit.cshtml │ │ └── List.cshtml │ ├── Web.config │ └── Workflow │ │ ├── ActivityInstance.cshtml │ │ ├── Form.cshtml │ │ ├── Process.cshtml │ │ └── ProcessInstance.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico └── packages.config ├── SlickSafe.sln └── packages ├── Antlr.3.4.1.9004 ├── Antlr.3.4.1.9004.nupkg └── lib │ └── Antlr3.Runtime.dll ├── EntityFramework.6.1.3 ├── EntityFramework.6.1.3.nupkg ├── content │ ├── App.config.transform │ └── Web.config.transform ├── lib │ ├── net40 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.SqlServer.dll │ │ ├── EntityFramework.SqlServer.xml │ │ ├── EntityFramework.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ └── install.ps1 ├── JSPool.2.0.0 ├── JSPool.2.0.0.nupkg └── lib │ ├── net40-client │ ├── JSPool.dll │ └── JSPool.xml │ ├── net451 │ ├── JSPool.dll │ └── JSPool.xml │ └── netstandard1.3 │ ├── JSPool.dll │ └── JSPool.xml ├── JavaScriptEngineSwitcher.Core.2.0.0 ├── JavaScriptEngineSwitcher.Core.2.0.0.nupkg ├── lib │ ├── net40-client │ │ ├── JavaScriptEngineSwitcher.Core.dll │ │ └── ru-ru │ │ │ └── JavaScriptEngineSwitcher.Core.resources.dll │ ├── net451 │ │ ├── JavaScriptEngineSwitcher.Core.dll │ │ ├── JavaScriptEngineSwitcher.Core.xml │ │ └── ru-ru │ │ │ └── JavaScriptEngineSwitcher.Core.resources.dll │ └── netstandard1.3 │ │ ├── JavaScriptEngineSwitcher.Core.dll │ │ ├── JavaScriptEngineSwitcher.Core.xml │ │ └── ru-ru │ │ └── JavaScriptEngineSwitcher.Core.resources.dll └── readme.txt ├── JavaScriptEngineSwitcher.Msie.2.0.0 ├── JavaScriptEngineSwitcher.Msie.2.0.0.nupkg ├── lib │ ├── net40-client │ │ └── JavaScriptEngineSwitcher.Msie.dll │ ├── net451 │ │ ├── JavaScriptEngineSwitcher.Msie.dll │ │ └── JavaScriptEngineSwitcher.Msie.xml │ └── netstandard1.3 │ │ ├── JavaScriptEngineSwitcher.Msie.dll │ │ └── JavaScriptEngineSwitcher.Msie.xml ├── msie-javascript-engine-license.txt └── readme.txt ├── JavaScriptEngineSwitcher.V8.2.0.0 ├── JavaScriptEngineSwitcher.V8.2.0.0.nupkg ├── build │ └── JavaScriptEngineSwitcher.V8.props ├── clearscript-license.txt ├── lib │ ├── net40-client │ │ ├── ClearScript.dll │ │ ├── JavaScriptEngineSwitcher.V8.dll │ │ └── ru-ru │ │ │ └── JavaScriptEngineSwitcher.V8.resources.dll │ └── net451 │ │ ├── ClearScript.dll │ │ ├── JavaScriptEngineSwitcher.V8.dll │ │ ├── JavaScriptEngineSwitcher.V8.xml │ │ └── ru-ru │ │ └── JavaScriptEngineSwitcher.V8.resources.dll ├── readme.txt ├── runtimes │ ├── win7-x64 │ │ └── native │ │ │ ├── ClearScriptV8-64.dll │ │ │ └── v8-x64.dll │ └── win7-x86 │ │ └── native │ │ ├── ClearScriptV8-32.dll │ │ └── v8-ia32.dll ├── tools │ ├── Install.ps1 │ └── Uninstall.ps1 └── v8-license.txt ├── MSBuild.Microsoft.VisualStudio.Web.targets.14.0.0.3 ├── MSBuild.Microsoft.VisualStudio.Web.targets.14.0.0.3.nupkg ├── README.md ├── build │ └── MSBuild.Microsoft.VisualStudio.Web.targets.props └── tools │ └── VSToolsPath │ ├── Web │ ├── CollectFiles │ │ ├── Microsoft.Web.Publishing.AllFilesInProjectFolder.targets │ │ ├── Microsoft.Web.Publishing.AllFilesInTheProject.targets │ │ └── Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets │ ├── Deploy │ │ ├── Microsoft.Web.Publishing.Deploy.FPSE.targets │ │ ├── Microsoft.Web.Publishing.Deploy.FTP.targets │ │ ├── Microsoft.Web.Publishing.Deploy.FileSystem.targets │ │ ├── Microsoft.Web.Publishing.Deploy.MsDeploy.targets │ │ ├── Microsoft.Web.Publishing.Deploy.Package.targets │ │ └── Microsoft.Web.Publishing.MsDeploy.Common.targets │ ├── Microsoft.DNX.Publishing.targets │ ├── Microsoft.Web.Publishing.Tasks.dll │ ├── Microsoft.Web.Publishing.targets │ ├── Microsoft.Web.Publishing │ │ └── ImportAfter │ │ │ └── Microsoft.Web.AzureAD.Publishing.targets │ ├── Microsoft.Web.XmlTransform.dll │ ├── Microsoft.WebSite.Publishing.targets │ ├── Powershell │ │ └── 1.0.1 │ │ │ ├── default-publish.ps1 │ │ │ └── publish-module.psm1 │ └── Transform │ │ └── Microsoft.Web.Publishing.AspNetCompileMerge.targets │ └── WebApplications │ ├── Microsoft.WebApplication.Build.Tasks.Dll │ └── Microsoft.WebApplication.targets ├── Microsoft.ApplicationInsights.2.0.0 ├── Microsoft.ApplicationInsights.2.0.0.nupkg └── lib │ ├── dotnet5.4 │ ├── Microsoft.ApplicationInsights.XML │ └── Microsoft.ApplicationInsights.dll │ ├── net40 │ ├── Microsoft.ApplicationInsights.XML │ └── Microsoft.ApplicationInsights.dll │ ├── net45 │ ├── Microsoft.ApplicationInsights.XML │ └── Microsoft.ApplicationInsights.dll │ └── net46 │ ├── Microsoft.ApplicationInsights.XML │ └── Microsoft.ApplicationInsights.dll ├── Microsoft.ApplicationInsights.Agent.Intercept.1.2.1 ├── Microsoft.ApplicationInsights.Agent.Intercept.1.2.1.nupkg └── lib │ ├── net40 │ └── Microsoft.AI.Agent.Intercept.dll │ └── net45 │ └── Microsoft.AI.Agent.Intercept.dll ├── Microsoft.ApplicationInsights.DependencyCollector.2.0.0 ├── Microsoft.ApplicationInsights.DependencyCollector.2.0.0.nupkg ├── content │ ├── ApplicationInsights.config.install.xdt │ ├── ApplicationInsights.config.transform │ └── ApplicationInsights.config.uninstall.xdt └── lib │ ├── net40 │ ├── Microsoft.AI.DependencyCollector.XML │ └── Microsoft.AI.DependencyCollector.dll │ └── net45 │ ├── Microsoft.AI.DependencyCollector.XML │ └── Microsoft.AI.DependencyCollector.dll ├── Microsoft.ApplicationInsights.JavaScript.0.22.9-build00167 ├── Microsoft.ApplicationInsights.JavaScript.0.22.9-build00167.nupkg ├── content │ └── scripts │ │ ├── ai.0.22.9-build00167.js │ │ └── ai.0.22.9-build00167.min.js └── tools │ └── prefix.html ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.0.0 ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.0.0.nupkg ├── content │ ├── ApplicationInsights.config.install.xdt │ ├── ApplicationInsights.config.transform │ └── ApplicationInsights.config.uninstall.xdt └── lib │ ├── net40 │ └── Microsoft.AI.PerfCounterCollector.dll │ └── net45 │ └── Microsoft.AI.PerfCounterCollector.dll ├── Microsoft.ApplicationInsights.Web.2.0.0 ├── Microsoft.ApplicationInsights.Web.2.0.0.nupkg ├── content │ ├── net40 │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt │ └── net45 │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt └── lib │ ├── net40 │ ├── Microsoft.AI.Web.XML │ └── Microsoft.AI.Web.dll │ └── net45 │ ├── Microsoft.AI.Web.XML │ └── Microsoft.AI.Web.dll ├── Microsoft.ApplicationInsights.WindowsServer.2.0.0 ├── Microsoft.ApplicationInsights.WindowsServer.2.0.0.nupkg ├── Tools │ └── install.ps1 ├── content │ ├── ApplicationInsights.config.install.xdt │ ├── ApplicationInsights.config.transform │ └── ApplicationInsights.config.uninstall.xdt └── lib │ ├── net40 │ ├── Microsoft.AI.WindowsServer.XML │ └── Microsoft.AI.WindowsServer.dll │ └── net45 │ ├── Microsoft.AI.WindowsServer.XML │ └── Microsoft.AI.WindowsServer.dll ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.0.0 ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.0.0.nupkg ├── content │ ├── ApplicationInsights.config.install.xdt │ ├── ApplicationInsights.config.transform │ └── ApplicationInsights.config.uninstall.xdt └── lib │ ├── net40 │ ├── Microsoft.AI.ServerTelemetryChannel.XML │ └── Microsoft.AI.ServerTelemetryChannel.dll │ └── net45 │ ├── Microsoft.AI.ServerTelemetryChannel.XML │ └── Microsoft.AI.ServerTelemetryChannel.dll ├── Microsoft.AspNet.Identity.Core.2.2.1 ├── Microsoft.AspNet.Identity.Core.2.2.1.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Core.dll │ └── Microsoft.AspNet.Identity.Core.xml ├── Microsoft.AspNet.Identity.EntityFramework.2.2.1 ├── Microsoft.AspNet.Identity.EntityFramework.2.2.1.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.EntityFramework.dll │ └── Microsoft.AspNet.Identity.EntityFramework.xml ├── Microsoft.AspNet.Identity.Owin.2.2.1 ├── Microsoft.AspNet.Identity.Owin.2.2.1.nupkg └── lib │ └── net45 │ ├── Microsoft.AspNet.Identity.Owin.dll │ └── Microsoft.AspNet.Identity.Owin.xml ├── Microsoft.AspNet.Mvc.5.2.3 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.Mvc.5.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.2.3 ├── Microsoft.AspNet.Razor.3.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.1.3 ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── system.web.optimization.xml ├── Microsoft.AspNet.WebApi.5.2.3 └── Microsoft.AspNet.WebApi.5.2.3.nupkg ├── Microsoft.AspNet.WebApi.Client.5.2.3 ├── Microsoft.AspNet.WebApi.Client.5.2.3.nupkg └── lib │ ├── net45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45+wp81+wpa81 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.5.2.3 ├── Content │ └── web.config.transform ├── Microsoft.AspNet.WebApi.Core.5.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.HelpPage.5.2.3 ├── Content │ └── Areas │ │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs.pp │ │ ├── App_Start │ │ └── HelpPageConfig.cs.pp │ │ ├── Controllers │ │ └── HelpController.cs.pp │ │ ├── HelpPage.css.pp │ │ ├── HelpPageAreaRegistration.cs.pp │ │ ├── HelpPageConfigurationExtensions.cs.pp │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs.pp │ │ ├── ComplexTypeModelDescription.cs.pp │ │ ├── DictionaryModelDescription.cs.pp │ │ ├── EnumTypeModelDescription.cs.pp │ │ ├── EnumValueDescription.cs.pp │ │ ├── IModelDocumentationProvider.cs.pp │ │ ├── KeyValuePairModelDescription.cs.pp │ │ ├── ModelDescription.cs.pp │ │ ├── ModelDescriptionGenerator.cs.pp │ │ ├── ModelNameAttribute.cs.pp │ │ ├── ModelNameHelper.cs.pp │ │ ├── ParameterAnnotation.cs.pp │ │ ├── ParameterDescription.cs.pp │ │ └── SimpleTypeModelDescription.cs.pp │ │ ├── Models │ │ └── HelpPageApiModel.cs.pp │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs.pp │ │ ├── HelpPageSampleKey.cs.pp │ │ ├── ImageSample.cs.pp │ │ ├── InvalidSample.cs.pp │ │ ├── ObjectGenerator.cs.pp │ │ ├── SampleDirection.cs.pp │ │ └── TextSample.cs.pp │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml.pp │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml.pp │ │ │ │ ├── CollectionModelDescription.cshtml.pp │ │ │ │ ├── ComplexTypeModelDescription.cshtml.pp │ │ │ │ ├── DictionaryModelDescription.cshtml.pp │ │ │ │ ├── EnumTypeModelDescription.cshtml.pp │ │ │ │ ├── HelpPageApiModel.cshtml.pp │ │ │ │ ├── ImageSample.cshtml.pp │ │ │ │ ├── InvalidSample.cshtml.pp │ │ │ │ ├── KeyValuePairModelDescription.cshtml.pp │ │ │ │ ├── ModelDescriptionLink.cshtml.pp │ │ │ │ ├── Parameters.cshtml.pp │ │ │ │ ├── Samples.cshtml.pp │ │ │ │ ├── SimpleTypeModelDescription.cshtml.pp │ │ │ │ └── TextSample.cshtml.pp │ │ │ ├── Index.cshtml.pp │ │ │ └── ResourceModel.cshtml.pp │ │ ├── Shared │ │ │ └── _Layout.cshtml.pp │ │ ├── Web.config │ │ └── _ViewStart.cshtml.pp │ │ └── XmlDocumentationProvider.cs.pp └── Microsoft.AspNet.WebApi.HelpPage.5.2.3.nupkg ├── Microsoft.AspNet.WebApi.Owin.5.2.3 ├── Microsoft.AspNet.WebApi.Owin.5.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Http.Owin.dll │ └── System.Web.Http.Owin.xml ├── Microsoft.AspNet.WebApi.WebHost.5.2.3 ├── Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.3.2.3 ├── Content │ ├── Web.config.install.xdt │ └── Web.config.uninstall.xdt ├── Microsoft.AspNet.WebPages.3.2.3.nupkg └── lib │ └── net45 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0 ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0.nupkg ├── build │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props ├── content │ ├── web.config.install.xdt │ └── web.config.uninstall.xdt ├── lib │ └── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml └── tools │ ├── init.ps1 │ └── uninstall.ps1 ├── Microsoft.Net.Compilers.1.0.0 ├── Microsoft.Net.Compilers.1.0.0.nupkg ├── ThirdPartyNotices.rtf ├── build │ └── Microsoft.Net.Compilers.props └── tools │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.VisualBasic.Core.targets │ ├── System.Collections.Immutable.dll │ ├── System.Reflection.Metadata.dll │ └── VBCSCompiler.exe.config ├── Microsoft.Owin.3.0.1 ├── Microsoft.Owin.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll ├── Microsoft.Owin.Host.SystemWeb.3.0.1 ├── Microsoft.Owin.Host.SystemWeb.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Host.SystemWeb.dll │ └── Microsoft.Owin.Host.SystemWeb.xml ├── Microsoft.Owin.Security.3.0.1 ├── Microsoft.Owin.Security.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.XML │ └── Microsoft.Owin.Security.dll ├── Microsoft.Owin.Security.Cookies.3.0.1 ├── Microsoft.Owin.Security.Cookies.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Cookies.dll │ └── Microsoft.Owin.Security.Cookies.xml ├── Microsoft.Owin.Security.Facebook.3.0.1 ├── Microsoft.Owin.Security.Facebook.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Facebook.XML │ └── Microsoft.Owin.Security.Facebook.dll ├── Microsoft.Owin.Security.Google.3.0.1 ├── Microsoft.Owin.Security.Google.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Google.XML │ └── Microsoft.Owin.Security.Google.dll ├── Microsoft.Owin.Security.MicrosoftAccount.3.0.1 ├── Microsoft.Owin.Security.MicrosoftAccount.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.MicrosoftAccount.XML │ └── Microsoft.Owin.Security.MicrosoftAccount.dll ├── Microsoft.Owin.Security.OAuth.3.0.1 ├── Microsoft.Owin.Security.OAuth.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.OAuth.XML │ └── Microsoft.Owin.Security.OAuth.dll ├── Microsoft.Owin.Security.Twitter.3.0.1 ├── Microsoft.Owin.Security.Twitter.3.0.1.nupkg └── lib │ └── net45 │ ├── Microsoft.Owin.Security.Twitter.XML │ └── Microsoft.Owin.Security.Twitter.dll ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── MiniProfiler.3.0.10 ├── MiniProfiler.3.0.10.nupkg └── lib │ └── net40 │ ├── MiniProfiler.dll │ └── MiniProfiler.xml ├── MiniProfiler.MVC4.3.0.11 ├── MiniProfiler.MVC4.3.0.11.nupkg └── lib │ └── net40 │ └── MiniProfiler.Mvc.dll ├── Modernizr.2.6.2 ├── Content │ └── Scripts │ │ └── modernizr-2.6.2.js ├── Modernizr.2.6.2.nupkg └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── MsieJavaScriptEngine.2.0.0 ├── MsieJavaScriptEngine.2.0.0.nupkg ├── bundler-and-minifier-license.txt ├── chakra-host-license.txt ├── cross-browser-split-license.txt ├── jsrt-dotnet-license.txt ├── lib │ ├── net40-client │ │ ├── MsieJavaScriptEngine.dll │ │ └── ru-ru │ │ │ └── MsieJavaScriptEngine.resources.dll │ ├── net451 │ │ ├── MsieJavaScriptEngine.dll │ │ ├── MsieJavaScriptEngine.xml │ │ └── ru-ru │ │ │ └── MsieJavaScriptEngine.resources.dll │ └── netstandard1.3 │ │ ├── MsieJavaScriptEngine.dll │ │ ├── MsieJavaScriptEngine.xml │ │ └── ru-ru │ │ └── MsieJavaScriptEngine.resources.dll ├── readme.txt └── sass-and-coffee-license.txt ├── Newtonsoft.Json.6.0.4 ├── Newtonsoft.Json.6.0.4.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netcore45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Newtonsoft.Json.9.0.1 ├── Newtonsoft.Json.9.0.1.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Owin.1.0 ├── Owin.1.0.nupkg └── lib │ └── net40 │ └── Owin.dll ├── React.Core.3.0.0 ├── React.Core.3.0.0.nupkg └── lib │ ├── net40 │ ├── React.Core.dll │ └── React.Core.xml │ └── netstandard1.6 │ ├── React.Core.dll │ └── React.Core.xml ├── React.Web.3.0.0 ├── Content │ ├── App_Start │ │ └── ReactConfig.cs.pp │ └── web.config.transform ├── React.Web.3.0.0.nupkg └── lib │ └── net40 │ ├── React.Web.dll │ └── React.Web.xml ├── React.Web.Mvc4.3.0.0 ├── Content │ └── Views │ │ └── web.config.transform ├── React.Web.Mvc4.3.0.0.nupkg └── lib │ └── net40 │ ├── React.Web.Mvc4.dll │ └── React.Web.Mvc4.xml ├── Respond.1.2.0 ├── Respond.1.2.0.nupkg └── content │ └── Scripts │ ├── respond.js │ └── respond.min.js ├── System.Dynamic.Runtime.4.0.0 ├── License.rtf ├── System.Dynamic.Runtime.4.0.0.nupkg ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ └── xamarinmac20 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── dotnet │ ├── System.Dynamic.Runtime.dll │ ├── System.Dynamic.Runtime.xml │ ├── de │ │ └── System.Dynamic.Runtime.xml │ ├── es │ │ └── System.Dynamic.Runtime.xml │ ├── fr │ │ └── System.Dynamic.Runtime.xml │ ├── it │ │ └── System.Dynamic.Runtime.xml │ ├── ja │ │ └── System.Dynamic.Runtime.xml │ ├── ko │ │ └── System.Dynamic.Runtime.xml │ ├── ru │ │ └── System.Dynamic.Runtime.xml │ ├── zh-hans │ │ └── System.Dynamic.Runtime.xml │ └── zh-hant │ │ └── System.Dynamic.Runtime.xml │ ├── net45 │ └── _._ │ ├── netcore50 │ ├── System.Dynamic.Runtime.dll │ ├── System.Dynamic.Runtime.xml │ ├── de │ │ └── System.Dynamic.Runtime.xml │ ├── es │ │ └── System.Dynamic.Runtime.xml │ ├── fr │ │ └── System.Dynamic.Runtime.xml │ ├── it │ │ └── System.Dynamic.Runtime.xml │ ├── ja │ │ └── System.Dynamic.Runtime.xml │ ├── ko │ │ └── System.Dynamic.Runtime.xml │ ├── ru │ │ └── System.Dynamic.Runtime.xml │ ├── zh-hans │ │ └── System.Dynamic.Runtime.xml │ └── zh-hant │ │ └── System.Dynamic.Runtime.xml │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ └── xamarinmac20 │ └── _._ ├── VroomJs.1.2.3 ├── VroomJs.1.2.3.nupkg └── lib │ ├── net40 │ └── VroomJs.dll │ ├── net45 │ ├── VroomJs.dll │ └── VroomJs.xml │ └── netstandard1.6 │ └── VroomJs.dll ├── WebActivatorEx.2.1.0 ├── WebActivatorEx.2.1.0.nupkg └── lib │ └── net40 │ └── WebActivatorEx.dll ├── WebGrease.1.5.2 ├── WebGrease.1.5.2.nupkg ├── lib │ └── WebGrease.dll └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── bootstrap.3.0.0 ├── Content │ ├── Content │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Scripts │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff └── bootstrap.3.0.0.nupkg ├── jQuery.3.1.1 ├── Content │ └── Scripts │ │ ├── jquery-3.1.1-vsdoc.js │ │ ├── jquery-3.1.1.js │ │ ├── jquery-3.1.1.min.js │ │ ├── jquery-3.1.1.min.map │ │ ├── jquery-3.1.1.slim.js │ │ ├── jquery-3.1.1.slim.min.js │ │ └── jquery-3.1.1.slim.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-3.1.1.intellisense.js │ └── uninstall.ps1 └── jQuery.3.1.1.nupkg ├── jQuery.Validation.1.11.1 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jQuery.Validation.1.11.1.nupkg ├── react.js.0.14.7 ├── Content │ └── Scripts │ │ └── react │ │ ├── react-dom-server.js │ │ ├── react-dom-server.min.js │ │ ├── react-dom.js │ │ ├── react-dom.min.js │ │ ├── react-with-addons.js │ │ ├── react-with-addons.min.js │ │ ├── react.js │ │ └── react.min.js └── react.js.0.14.7.nupkg └── repositories.config /Database/ssdb20170222-full.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Database/ssdb20170222-full.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/README.md -------------------------------------------------------------------------------- /SlickSafe License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/SlickSafe License.txt -------------------------------------------------------------------------------- /Source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/.gitignore -------------------------------------------------------------------------------- /Source/.vs/SlickOne.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/.vs/SlickOne.sqlite -------------------------------------------------------------------------------- /Source/.vs/SlickSafe.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/.vs/SlickSafe.sqlite -------------------------------------------------------------------------------- /Source/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Source/.vs/restore.dg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/.vs/restore.dg -------------------------------------------------------------------------------- /Source/DLL/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/AutoMapper.dll -------------------------------------------------------------------------------- /Source/DLL/Autofac.Integration.Mef.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Autofac.Integration.Mef.dll -------------------------------------------------------------------------------- /Source/DLL/Autofac.Integration.Mef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Autofac.Integration.Mef.xml -------------------------------------------------------------------------------- /Source/DLL/Autofac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Autofac.dll -------------------------------------------------------------------------------- /Source/DLL/Autofac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Autofac.xml -------------------------------------------------------------------------------- /Source/DLL/Microsoft.AspNet.SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Microsoft.AspNet.SignalR.Client.dll -------------------------------------------------------------------------------- /Source/DLL/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /Source/DLL/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/DLL/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/RestSharp.dll -------------------------------------------------------------------------------- /Source/DLL/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/ServiceStack.Text.dll -------------------------------------------------------------------------------- /Source/DLL/SlickMaster.Builder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/SlickMaster.Builder.dll -------------------------------------------------------------------------------- /Source/DLL/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Helpers.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Http.Data.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Http.Data.EntityFramework.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Http.Data.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Http.Data.Helpers.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Http.Data.Helpers2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Http.Data.Helpers2.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Http.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Http.Data.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Http.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Optimization.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Providers.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.Razor.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /Source/DLL/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/System.Web.WebPages.dll -------------------------------------------------------------------------------- /Source/DLL/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/WebActivator.dll -------------------------------------------------------------------------------- /Source/DLL/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/WebGrease.dll -------------------------------------------------------------------------------- /Source/DLL/WebMatrix.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/DLL/WebMatrix.Data.dll -------------------------------------------------------------------------------- /Source/Dapper/Dapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Dapper.csproj -------------------------------------------------------------------------------- /Source/Dapper/DefaultParameterCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/DefaultParameterCharacter.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/DapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/DapperExtensions.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/DapperExtensionsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/DapperExtensionsConfiguration.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/DapperImplementor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/DapperImplementor.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Database.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/GetMultiplePredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/GetMultiplePredicate.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/GetMultipleResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/GetMultipleResult.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Mapper/AutoClassMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Mapper/AutoClassMapper.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Mapper/ClassMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Mapper/ClassMapper.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Mapper/PluralizedAutoClassMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Mapper/PluralizedAutoClassMapper.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Mapper/PropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Mapper/PropertyMap.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Predicates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Predicates.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/ReflectionHelper.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/KingbaseSqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/KingbaseSqlDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/MySqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/MySqlDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/OracleSqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/OracleSqlDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/PostgreSqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/PostgreSqlDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/SqlCeDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/SqlCeDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/SqlDialectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/SqlDialectBase.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/SqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/SqlGenerator.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/SqlServerDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/SqlServerDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Extensions/Sql/SqliteDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Extensions/Sql/SqliteDialect.cs -------------------------------------------------------------------------------- /Source/Dapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Dapper/SqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/SqlBuilder.cs -------------------------------------------------------------------------------- /Source/Dapper/SqlMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/SqlMapper.cs -------------------------------------------------------------------------------- /Source/Dapper/SqlMapperAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/SqlMapperAsync.cs -------------------------------------------------------------------------------- /Source/Dapper/SqlMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/Dapper/SqlMapperExtensions.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/ActivityInstanceEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/ActivityInstanceEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/FormEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/FormEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/LogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/LogEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/LogQueryEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/LogQueryEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/ProcessEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/ProcessEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/ProcessInstanceEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/ProcessInstanceEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/ProductEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/ProductEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/ProductQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/ProductQuery.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/QueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/QueryBase.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/Table.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/TaskEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/TaskEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/TaskViewEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/TaskViewEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Entity/TransitionInstanceEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Entity/TransitionInstanceEntity.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Service/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Service/IProductService.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Service/IWfDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Service/IWfDataService.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Service/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Service/ProductService.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/Service/WfDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/Service/WfDataService.cs -------------------------------------------------------------------------------- /Source/SlickOne.Biz/SlickOne.Biz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Biz/SlickOne.Biz.csproj -------------------------------------------------------------------------------- /Source/SlickOne.Data/AppSettingsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/AppSettingsWrapper.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/DBTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/DBTypeExtensions.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/IRepository.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/Pager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/Pager.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/Repository.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/ServiceBase.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/Session.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/SessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/SessionFactory.cs -------------------------------------------------------------------------------- /Source/SlickOne.Data/SlickOne.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.Data/SlickOne.Data.csproj -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/AutoMapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/AutoMapperHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/CaptchaImageActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/CaptchaImageActionResult.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/CookieHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/CookieHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Credentials.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/EMailUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/EMailUtility.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/FileHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/HttpClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/HttpClientHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/HttpClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/HttpClientTest.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/HttpRequestMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/HttpRequestMessageExtensions.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/ImageHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/JsTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/JsTreeModel.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/JsonHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/LogonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/LogonResult.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/MvcAuthControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/MvcAuthControllerBase.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/MvcControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/MvcControllerBase.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/NetworkUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/NetworkUtility.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/ResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/ResponseResult.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/RestClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/RestClientHelper.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Security/AdminAuthenticationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Security/AdminAuthenticationAttribute.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Security/AuthorizedUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Security/AuthorizedUser.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Security/CryptographUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Security/CryptographUtility.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Security/HashingAlgorithmUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Security/HashingAlgorithmUtility.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/Security/RequireAuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/Security/RequireAuthorizeAttribute.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/SessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/SessionManager.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/SlickOne.WebUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/SlickOne.WebUtility.csproj -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/UserAuthModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/UserAuthModel.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/WebLogonUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/WebLogonUser.cs -------------------------------------------------------------------------------- /Source/SlickOne.WebUtility/WebLogonUserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickOne.WebUtility/WebLogonUserData.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/AccountStatusEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/AccountStatusEnum.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/AccountTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/AccountTypeEnum.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/LoginUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/LoginUser.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/QueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/QueryBase.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/ResourceEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/ResourceEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/ResourceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/ResourceNode.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/ResourceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/ResourceQuery.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/ResourceTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/ResourceTypeEnum.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/RoleEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/RoleEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/RoleResourceEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/RoleResourceEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/RoleResourcePermissionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/RoleResourcePermissionView.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/RoleUserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/RoleUserEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/RoleUserQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/RoleUserQuery.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/RoleUserView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/RoleUserView.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/Table.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserAccountEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserAccountEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserAccountQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserAccountQuery.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserLogEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserLogEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserLogQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserLogQuery.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserPasswordEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserPasswordEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserPermissionEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserPermissionEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserResourceEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserResourceEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/UserResourcePermissionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/UserResourcePermissionView.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Entity/XmlTransferEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Entity/XmlTransferEntity.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/AccountService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/IAccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/IAccountService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/ILogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/ILogService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/IPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/IPermissionService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/IResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/IResourceService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/IRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/IRoleService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/LogService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/PermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/PermissionService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/ResourceService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/Service/RoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/Service/RoleService.cs -------------------------------------------------------------------------------- /Source/SlickSafe.AuthImpl/SlickSafe.AuthImpl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.AuthImpl/SlickSafe.AuthImpl.csproj -------------------------------------------------------------------------------- /Source/SlickSafe.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ag-grid/ag-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ag-grid/ag-grid.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ag-grid/theme-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ag-grid/theme-bootstrap.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-3.3.7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-3.3.7.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-dialog.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-progressbar-3.3.4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-progressbar-3.3.4.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-progressbar-3.3.4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-progressbar-3.3.4.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-theme-3.3.7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-theme-3.3.7.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bootstrap/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bootstrap/font-awesome.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/css/app.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/css/bpmn-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/css/bpmn-embedded.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/css/bpmn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/css/bpmn.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.eot -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.svg -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.ttf -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/bpmn-font/font/bpmn.woff -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/bpmnjs/diagram-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/bpmnjs/diagram-js.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/ajax-loader.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/bpmn-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/bpmn-icons.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/buttonicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/buttonicon.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/circle.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/delete.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/diamond.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/ellipse.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/jsplumb-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/jsplumb-grid.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/logo.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/rectangle.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/sailor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/sailor.jpg -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/sprite.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/triangle.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/images/triangle_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/images/triangle_90.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/img/jsPlumb-Connector-Components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/img/jsPlumb-Connector-Components.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/2.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_01.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_03.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_05.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/Batch-1_07.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ajax-loader.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/alert.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/arrow.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/arrowex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/arrowex.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/blue.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/buttonicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/buttonicon.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/calendar.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/chosebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/chosebtn.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/chosedialog1_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/chosedialog1_03.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/confirm.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/datagrid_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/datagrid_title_bg.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/dd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/dd.html -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/empty.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/error.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/exit.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/exit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/exit1.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/expend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/expend.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/fieldset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/fieldset.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/fieldset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/fieldset1.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/gray.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/hightlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/hightlight.jpg -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/info.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/jiantou.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/jsplumb-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/jsplumb-grid.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/listicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/listicon.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/listicon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/listicon1.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/liulan_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/liulan_03.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/liulan_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/liulan_05.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/logo.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/message.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/message1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/message1.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/msgBoxBackGround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/msgBoxBackGround.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/myui-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/myui-header.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/openfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/openfile.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/relogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/relogin.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/relogin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/relogin1.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/search.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/tick.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/tick2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/tick2.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/toolbarwin7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/toolbarwin7.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/upload.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/user.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/user1.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/user2.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/user_online.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/user_online.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/web_ui_lanrensc_01_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/web_ui_lanrensc_01_03.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/images/web_ui_lanrensc_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/images/web_ui_lanrensc_03.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/jquery-ui-1.8.16.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/jquery-ui-1.8.16.custom.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.eot -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.svg -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.ttf -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/ico-jsplumb.woff -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/jsPlumb-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/jsPlumb-demo.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/jsPlumb-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/jsPlumb-main.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/jsPlumbToolkit-defaults.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/jsPlumbToolkit-defaults.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/jsplumb/jsPlumbToolkit-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/jsplumb/jsPlumbToolkit-demo.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/layout.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/loginstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/loginstyle.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/msgBoxLight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/msgBoxLight.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/splitter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/splitter.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/superfish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/superfish.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.menu.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.spinner.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.menu.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.spinner.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/themes/base/minified/jquery.ui.tooltip.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/jquery-ui.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.menu.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.spinner.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ui/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ui/minified/jquery.ui.tooltip.min.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/1_close.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/1_open.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/2.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/3.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/4.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/5.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/6.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/7.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/8.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/diy/9.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/line_conn.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/line_conn.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/loading.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/metro.gif -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/img/metro.png -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Content/ztree/metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Content/ztree/metro.css -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/AccountController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/DemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/DemoController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/HomeController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/LogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/LogController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/PermissionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/PermissionController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/ProductController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/ProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/ProfileController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/ResourceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/ResourceController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/RoleController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/RoleUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/RoleUserController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/TaskController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/TaskController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/TestController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/UserController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/Mvc/WorkflowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/Mvc/WorkflowController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/AccountController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/HelloWorldController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/HelloWorldController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/LogDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/LogDataController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/PermissionDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/PermissionDataController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/PermissionUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/PermissionUserController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/ResourceDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/ResourceDataController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/RoleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/RoleDataController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Controllers/WebApi/WfDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Controllers/WebApi/WfDataController.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Filter/BasicAuthenticationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Filter/BasicAuthenticationAttribute.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Filter/FormAuthCookieRequestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Filter/FormAuthCookieRequestAttribute.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Global.asax -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Global.asax.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Models/AccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Models/AccountModel.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Models/ChangePasswordResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Models/ChangePasswordResult.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Models/LogInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Models/LogInfoModel.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/XMLWriter-1.0.0-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/XMLWriter-1.0.0-min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/_references.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/ag-grid/ag-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/ag-grid/ag-grid.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/ag-grid/ag-grid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/ag-grid/ag-grid.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootbox.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-datetimepicker.zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-datetimepicker.zh-CN.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-dialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-dialog.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-progressbar.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-progressbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap-progressbar.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/handlebars.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.intellisense.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.min.map -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.slim.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.slim.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery-3.1.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery-3.1.1.slim.min.map -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery-1.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery-1.8.3.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery-ui-1.10.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery-ui-1.10.3.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.event.drag-2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.event.drag-2.2.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.msgBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.msgBox.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.validate.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.validate.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jquery.ztree.all-3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jquery.ztree.all-3.5.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/jstree.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/ui/jquery-ui-1.8.16.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/ui/jquery-ui-1.8.16.custom.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.core.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.resizable.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.sortable.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jquery/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jshelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jshelper.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jsplumb/jsPlumb-2.2.8-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jsplumb/jsPlumb-2.2.8-min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/jsplumb/jsPlumb-2.2.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/jsplumb/jsPlumb-2.2.8.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/localhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/localhelper.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/respond.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/respond.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/slick.event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/slick.event.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/xmlhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/xmlhelper.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Scripts/ztree/jquery.ztree.all-3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Scripts/ztree/jquery.ztree.all-3.5.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/SlickSafe.Web.1.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/SlickSafe.Web.1.2.0.0.nupkg -------------------------------------------------------------------------------- /Source/SlickSafe.Web/SlickSafe.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/SlickSafe.Web.csproj -------------------------------------------------------------------------------- /Source/SlickSafe.Web/SlickSafe.Web.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/SlickSafe.Web.nuspec -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/account.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/loglist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/loglist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/processlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/processlist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/productlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/productlist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/resourcelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/resourcelist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/rolelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/rolelist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/rolepermissionlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/rolepermissionlist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/roleusertree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/roleusertree.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/somain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/somain.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/somain.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/somain.min.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/tasklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/tasklist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/userlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/userlist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/userlistdialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/userlistdialog.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/ViewJS/userpermissionlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/ViewJS/userpermissionlist.js -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Account/Password.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Account/Password.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Demo/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Demo/Index.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Log/Exception.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Log/Exception.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Log/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Log/Login.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Log/Operation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Log/Operation.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Permission/Role.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Permission/Role.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Permission/User.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Permission/User.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Process/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Process/List.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Product/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Product/Edit.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Product/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Product/Index.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Profile/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Profile/Index.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Resource/Authorize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Resource/Authorize.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Resource/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Resource/Edit.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Resource/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Resource/List.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Role/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Role/Edit.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Role/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Role/List.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/RoleUser/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/RoleUser/List.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Shared/mainlayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Shared/mainlayout.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Test/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Test/Index.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Test/NavBar.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Test/NavBar.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Test/SideBar.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Test/SideBar.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/User/Dialog.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/User/Dialog.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/User/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/User/Edit.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/User/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/User/List.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Web.config -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Workflow/ActivityInstance.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Workflow/ActivityInstance.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Workflow/Form.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Workflow/Form.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Workflow/Process.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Workflow/Process.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Views/Workflow/ProcessInstance.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Views/Workflow/ProcessInstance.cshtml -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Web.Debug.config -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Web.Release.config -------------------------------------------------------------------------------- /Source/SlickSafe.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/Web.config -------------------------------------------------------------------------------- /Source/SlickSafe.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/favicon.ico -------------------------------------------------------------------------------- /Source/SlickSafe.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.Web/packages.config -------------------------------------------------------------------------------- /Source/SlickSafe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/SlickSafe.sln -------------------------------------------------------------------------------- /Source/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /Source/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/content/App.config.transform -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/content/Web.config.transform -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/init.ps1 -------------------------------------------------------------------------------- /Source/packages/EntityFramework.6.1.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/EntityFramework.6.1.3/tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/JSPool.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/JSPool.2.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/lib/net40-client/JSPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/lib/net40-client/JSPool.dll -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/lib/net40-client/JSPool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/lib/net40-client/JSPool.xml -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/lib/net451/JSPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/lib/net451/JSPool.dll -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/lib/net451/JSPool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/lib/net451/JSPool.xml -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/lib/netstandard1.3/JSPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/lib/netstandard1.3/JSPool.dll -------------------------------------------------------------------------------- /Source/packages/JSPool.2.0.0/lib/netstandard1.3/JSPool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JSPool.2.0.0/lib/netstandard1.3/JSPool.xml -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.Core.2.0.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.Core.2.0.0/readme.txt -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.Msie.2.0.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.Msie.2.0.0/readme.txt -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/clearscript-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/clearscript-license.txt -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/lib/net40-client/ClearScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/lib/net40-client/ClearScript.dll -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/lib/net451/ClearScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/lib/net451/ClearScript.dll -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/readme.txt -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/runtimes/win7-x64/native/v8-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/runtimes/win7-x64/native/v8-x64.dll -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/tools/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/tools/Install.ps1 -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/tools/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/tools/Uninstall.ps1 -------------------------------------------------------------------------------- /Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/v8-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/JavaScriptEngineSwitcher.V8.2.0.0/v8-license.txt -------------------------------------------------------------------------------- /Source/packages/MSBuild.Microsoft.VisualStudio.Web.targets.14.0.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MSBuild.Microsoft.VisualStudio.Web.targets.14.0.0.3/README.md -------------------------------------------------------------------------------- /Source/packages/Microsoft.ApplicationInsights.WindowsServer.2.0.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.ApplicationInsights.WindowsServer.2.0.0/Tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebApi.5.2.3/Microsoft.AspNet.WebApi.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebApi.5.2.3/Microsoft.AspNet.WebApi.5.2.3.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebApi.Owin.5.2.3/lib/net45/System.Web.Http.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebApi.Owin.5.2.3/lib/net45/System.Web.Http.Owin.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebApi.Owin.5.2.3/lib/net45/System.Web.Http.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebApi.Owin.5.2.3/lib/net45/System.Web.Http.Owin.xml -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/build/Microsoft.Net.Compilers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/build/Microsoft.Net.Compilers.props -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /Source/packages/Microsoft.Owin.3.0.1/Microsoft.Owin.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Owin.3.0.1/Microsoft.Owin.3.0.1.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.Owin.3.0.1/lib/net45/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Owin.3.0.1/lib/net45/Microsoft.Owin.XML -------------------------------------------------------------------------------- /Source/packages/Microsoft.Owin.3.0.1/lib/net45/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Owin.3.0.1/lib/net45/Microsoft.Owin.dll -------------------------------------------------------------------------------- /Source/packages/Microsoft.Owin.Security.3.0.1/Microsoft.Owin.Security.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Owin.Security.3.0.1/Microsoft.Owin.Security.3.0.1.nupkg -------------------------------------------------------------------------------- /Source/packages/Microsoft.Owin.Security.3.0.1/lib/net45/Microsoft.Owin.Security.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Owin.Security.3.0.1/lib/net45/Microsoft.Owin.Security.XML -------------------------------------------------------------------------------- /Source/packages/Microsoft.Owin.Security.3.0.1/lib/net45/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Microsoft.Owin.Security.3.0.1/lib/net45/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /Source/packages/MiniProfiler.3.0.10/MiniProfiler.3.0.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MiniProfiler.3.0.10/MiniProfiler.3.0.10.nupkg -------------------------------------------------------------------------------- /Source/packages/MiniProfiler.3.0.10/lib/net40/MiniProfiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MiniProfiler.3.0.10/lib/net40/MiniProfiler.dll -------------------------------------------------------------------------------- /Source/packages/MiniProfiler.3.0.10/lib/net40/MiniProfiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MiniProfiler.3.0.10/lib/net40/MiniProfiler.xml -------------------------------------------------------------------------------- /Source/packages/MiniProfiler.MVC4.3.0.11/MiniProfiler.MVC4.3.0.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MiniProfiler.MVC4.3.0.11/MiniProfiler.MVC4.3.0.11.nupkg -------------------------------------------------------------------------------- /Source/packages/MiniProfiler.MVC4.3.0.11/lib/net40/MiniProfiler.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MiniProfiler.MVC4.3.0.11/lib/net40/MiniProfiler.Mvc.dll -------------------------------------------------------------------------------- /Source/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Source/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /Source/packages/Modernizr.2.6.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Modernizr.2.6.2/Tools/common.ps1 -------------------------------------------------------------------------------- /Source/packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Modernizr.2.6.2/Tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Modernizr.2.6.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/MsieJavaScriptEngine.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/MsieJavaScriptEngine.2.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/bundler-and-minifier-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/bundler-and-minifier-license.txt -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/chakra-host-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/chakra-host-license.txt -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/cross-browser-split-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/cross-browser-split-license.txt -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/jsrt-dotnet-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/jsrt-dotnet-license.txt -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/lib/net451/MsieJavaScriptEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/lib/net451/MsieJavaScriptEngine.dll -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/lib/net451/MsieJavaScriptEngine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/lib/net451/MsieJavaScriptEngine.xml -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/readme.txt -------------------------------------------------------------------------------- /Source/packages/MsieJavaScriptEngine.2.0.0/sass-and-coffee-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/MsieJavaScriptEngine.2.0.0/sass-and-coffee-license.txt -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.6.0.4/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.6.0.4/tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/packages/Newtonsoft.Json.9.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Newtonsoft.Json.9.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /Source/packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /Source/packages/React.Core.3.0.0/React.Core.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Core.3.0.0/React.Core.3.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/React.Core.3.0.0/lib/net40/React.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Core.3.0.0/lib/net40/React.Core.dll -------------------------------------------------------------------------------- /Source/packages/React.Core.3.0.0/lib/net40/React.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Core.3.0.0/lib/net40/React.Core.xml -------------------------------------------------------------------------------- /Source/packages/React.Core.3.0.0/lib/netstandard1.6/React.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Core.3.0.0/lib/netstandard1.6/React.Core.dll -------------------------------------------------------------------------------- /Source/packages/React.Core.3.0.0/lib/netstandard1.6/React.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Core.3.0.0/lib/netstandard1.6/React.Core.xml -------------------------------------------------------------------------------- /Source/packages/React.Web.3.0.0/Content/App_Start/ReactConfig.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.3.0.0/Content/App_Start/ReactConfig.cs.pp -------------------------------------------------------------------------------- /Source/packages/React.Web.3.0.0/Content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.3.0.0/Content/web.config.transform -------------------------------------------------------------------------------- /Source/packages/React.Web.3.0.0/React.Web.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.3.0.0/React.Web.3.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/React.Web.3.0.0/lib/net40/React.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.3.0.0/lib/net40/React.Web.dll -------------------------------------------------------------------------------- /Source/packages/React.Web.3.0.0/lib/net40/React.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.3.0.0/lib/net40/React.Web.xml -------------------------------------------------------------------------------- /Source/packages/React.Web.Mvc4.3.0.0/Content/Views/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.Mvc4.3.0.0/Content/Views/web.config.transform -------------------------------------------------------------------------------- /Source/packages/React.Web.Mvc4.3.0.0/React.Web.Mvc4.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.Mvc4.3.0.0/React.Web.Mvc4.3.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/React.Web.Mvc4.3.0.0/lib/net40/React.Web.Mvc4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.Mvc4.3.0.0/lib/net40/React.Web.Mvc4.dll -------------------------------------------------------------------------------- /Source/packages/React.Web.Mvc4.3.0.0/lib/net40/React.Web.Mvc4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/React.Web.Mvc4.3.0.0/lib/net40/React.Web.Mvc4.xml -------------------------------------------------------------------------------- /Source/packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /Source/packages/Respond.1.2.0/content/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Respond.1.2.0/content/Scripts/respond.js -------------------------------------------------------------------------------- /Source/packages/Respond.1.2.0/content/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/Respond.1.2.0/content/Scripts/respond.min.js -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/System.Dynamic.Runtime.4.0.0/License.rtf -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/System.Dynamic.Runtime.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/System.Dynamic.Runtime.4.0.0/System.Dynamic.Runtime.4.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/dotnet/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/System.Dynamic.Runtime.4.0.0/ref/dotnet/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/dotnet/System.Dynamic.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/System.Dynamic.Runtime.4.0.0/ref/dotnet/System.Dynamic.Runtime.xml -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/System.Dynamic.Runtime.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/packages/VroomJs.1.2.3/VroomJs.1.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/VroomJs.1.2.3/VroomJs.1.2.3.nupkg -------------------------------------------------------------------------------- /Source/packages/VroomJs.1.2.3/lib/net40/VroomJs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/VroomJs.1.2.3/lib/net40/VroomJs.dll -------------------------------------------------------------------------------- /Source/packages/VroomJs.1.2.3/lib/net45/VroomJs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/VroomJs.1.2.3/lib/net45/VroomJs.dll -------------------------------------------------------------------------------- /Source/packages/VroomJs.1.2.3/lib/net45/VroomJs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/VroomJs.1.2.3/lib/net45/VroomJs.xml -------------------------------------------------------------------------------- /Source/packages/VroomJs.1.2.3/lib/netstandard1.6/VroomJs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/VroomJs.1.2.3/lib/netstandard1.6/VroomJs.dll -------------------------------------------------------------------------------- /Source/packages/WebActivatorEx.2.1.0/WebActivatorEx.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/WebActivatorEx.2.1.0/WebActivatorEx.2.1.0.nupkg -------------------------------------------------------------------------------- /Source/packages/WebActivatorEx.2.1.0/lib/net40/WebActivatorEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/WebActivatorEx.2.1.0/lib/net40/WebActivatorEx.dll -------------------------------------------------------------------------------- /Source/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /Source/packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /Source/packages/WebGrease.1.5.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/WebGrease.1.5.2/tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/WebGrease.1.5.2/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/WebGrease.1.5.2/tools/uninstall.ps1 -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/Content/bootstrap.css -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/Content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Source/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1-vsdoc.js -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.js -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.min.map -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.slim.js -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.slim.min.js -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Content/Scripts/jquery-3.1.1.slim.min.map -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Tools/common.ps1 -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Tools/install.ps1 -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Tools/jquery-3.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Tools/jquery-3.1.1.intellisense.js -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /Source/packages/jQuery.3.1.1/jQuery.3.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.3.1.1/jQuery.3.1.1.nupkg -------------------------------------------------------------------------------- /Source/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Source/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Source/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.Validation.1.11.1/Content/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Source/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom-server.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom-server.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom-server.min.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react-dom.min.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react-with-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react-with-addons.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react-with-addons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react-with-addons.min.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/Content/Scripts/react/react.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/Content/Scripts/react/react.min.js -------------------------------------------------------------------------------- /Source/packages/react.js.0.14.7/react.js.0.14.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/react.js.0.14.7/react.js.0.14.7.nupkg -------------------------------------------------------------------------------- /Source/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/SlickSafe/HEAD/Source/packages/repositories.config --------------------------------------------------------------------------------