├── web ├── Views │ ├── _ViewStart.cshtml │ ├── Home │ │ ├── _IndexSwitcherPartial.cshtml │ │ ├── _IndexLeftSidePartial.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── _FooterPartial.cshtml │ │ ├── _HeaderPartial.cshtml │ │ └── _Layout.cshtml │ └── web.config ├── favicon.ico ├── Content │ ├── images │ │ ├── flags.png │ │ ├── logo.png │ │ ├── step.png │ │ ├── loader.gif │ │ ├── social.png │ │ ├── sprite.png │ │ ├── combo_gray.png │ │ ├── corner_top.gif │ │ ├── toast_icon01.png │ │ ├── toast_icon02.png │ │ └── toast_icon03.png │ ├── paragraph.less │ ├── header.less │ ├── list.less │ ├── action-menu.less │ ├── link.less │ ├── button.less │ ├── layout.less │ ├── lang-switcher.less │ ├── vars.less │ ├── toastr.less │ └── form.less ├── Global.asax ├── Executables │ ├── tools │ │ ├── login-docker.sh │ │ ├── make-network.sh │ │ ├── check-ports.sh │ │ ├── remove-container.sh │ │ ├── pull-image.sh │ │ ├── check-bindings.sh │ │ ├── make-dir.sh │ │ ├── get-os-info.sh │ │ ├── get-available-version.sh │ │ └── check-previous-version.sh │ ├── run-document-server.sh │ ├── run-control-panel.sh │ ├── run-mail-server.sh │ ├── assets │ │ └── run-docker.sh │ ├── restart.sh │ └── run-community-server.sh ├── Classes │ ├── ImageTag.cs │ └── OsInfo.cs ├── Models │ ├── RequestInfoModel.cs │ ├── ConnectionSettingsModel.cs │ ├── InstallationProgressModel.cs │ └── InstallationComponentsModel.cs ├── Helpers │ ├── LangHelper.cs │ ├── CookieHelper.cs │ ├── SshHelper.cs │ ├── FileHelper.cs │ ├── TagHelper.cs │ ├── CacheHelper.cs │ └── Settings.cs ├── Properties │ └── AssemblyInfo.cs ├── App_Start │ ├── RouteConfig.cs │ ├── BundleConfig.cs │ └── LessTransform.cs ├── 404.htm ├── 500.htm ├── Scripts │ ├── toastr.min.js │ ├── toastr.js │ └── jquery.blockUI.min.js ├── Global.asax.cs ├── Controllers │ └── ResourceController.cs ├── Web.config └── Resources │ ├── OneClickJsResource.resx │ └── OneClickJsResource.Designer.cs ├── .nuget ├── NuGet.exe ├── NuGet.Config ├── packages.config └── NuGet.targets ├── references ├── ASC.Common.dll ├── ASC.Core.Common.dll ├── ASC.Resource.Data.dll └── FileConverterUtils2.dll ├── .gitignore ├── 3rd-Party.txt └── README.md /web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /references/ASC.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/references/ASC.Common.dll -------------------------------------------------------------------------------- /web/Content/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/flags.png -------------------------------------------------------------------------------- /web/Content/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/logo.png -------------------------------------------------------------------------------- /web/Content/images/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/step.png -------------------------------------------------------------------------------- /references/ASC.Core.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/references/ASC.Core.Common.dll -------------------------------------------------------------------------------- /web/Content/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/loader.gif -------------------------------------------------------------------------------- /web/Content/images/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/social.png -------------------------------------------------------------------------------- /web/Content/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/sprite.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | 3 | packages 4 | 5 | 6 | build/Build.log 7 | 8 | 9 | web/App_Data/ 10 | web/bin/ 11 | web/obj/ -------------------------------------------------------------------------------- /references/ASC.Resource.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/references/ASC.Resource.Data.dll -------------------------------------------------------------------------------- /web/Content/images/combo_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/combo_gray.png -------------------------------------------------------------------------------- /web/Content/images/corner_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/corner_top.gif -------------------------------------------------------------------------------- /web/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="OneClickInstallation.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /references/FileConverterUtils2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/references/FileConverterUtils2.dll -------------------------------------------------------------------------------- /web/Content/images/toast_icon01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/toast_icon01.png -------------------------------------------------------------------------------- /web/Content/images/toast_icon02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/toast_icon02.png -------------------------------------------------------------------------------- /web/Content/images/toast_icon03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/OneClickInstall/HEAD/web/Content/images/toast_icon03.png -------------------------------------------------------------------------------- /web/Views/Home/_IndexSwitcherPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 |
Sorry, the resource
30 |cannot be found.
31 |Sorry, ONLYOFFICE™ is
30 |on maintenance.
31 |It may take a few minutes.
32 |@OneClickHomePageResource.ConnectionSettingsFormText
11 | 12 |@OneClickHomePageResource.ConnectionSettingsConnectedFormText
71 | 72 |
113 |
128 |
129 |