From 9142541585298aeed016ef77301bc057fb18c8f7 Mon Sep 17 00:00:00 2001 From: Hendrik Leidinger Date: Mon, 11 May 2026 15:14:37 -0700 Subject: [PATCH 1/4] feat: package build Signed-off-by: Hendrik Leidinger --- web/documentserver-example/nodejs/config/production-linux.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/documentserver-example/nodejs/config/production-linux.json b/web/documentserver-example/nodejs/config/production-linux.json index a0199aea4..cd35ccaf6 100644 --- a/web/documentserver-example/nodejs/config/production-linux.json +++ b/web/documentserver-example/nodejs/config/production-linux.json @@ -2,7 +2,7 @@ "server": { "siteUrl": "/", "maxFileSize": 104857600, - "storageFolder": "/var/lib/onlyoffice/documentserver-example/files", + "storageFolder": "/var/lib/euro-office/documentserver-example/files", "enableForgotten": false } } From bc389b42a0563711050767fa6ee2ededeba61851 Mon Sep 17 00:00:00 2001 From: Hendrik Leidinger Date: Mon, 11 May 2026 19:12:55 -0700 Subject: [PATCH 2/4] fix: more rebranding Signed-off-by: Hendrik Leidinger --- .../csharp-mvc/Views/Home/Editor.aspx | 4 ++-- .../csharp-mvc/Views/Home/Index.aspx | 4 ++-- web/documentserver-example/csharp/Default.aspx | 4 ++-- web/documentserver-example/csharp/DocEditor.aspx | 4 ++-- web/documentserver-example/go/templates/editor.html | 4 ++-- .../go/templates/forgotten.html | 2 +- web/documentserver-example/go/templates/index.html | 6 +++--- .../src/main/resources/templates/editor.html | 4 ++-- .../src/main/resources/templates/index.html | 4 ++-- .../java/src/main/webapp/editor.jsp | 4 ++-- .../java/src/main/webapp/index.jsp | 4 ++-- .../js/OnlineEditorsExampleJS.html | 6 +++--- web/documentserver-example/nodejs/views/editor.ejs | 4 ++-- .../nodejs/views/forgotten.ejs | 2 +- web/documentserver-example/nodejs/views/index.ejs | 6 +++--- .../nodejs/views/wopiAction.ejs | 2 +- .../nodejs/views/wopiIndex.ejs | 12 ++++++------ .../php-laravel/resources/views/editor.blade.php | 4 ++-- .../php-laravel/resources/views/forgotten.blade.php | 2 +- .../php-laravel/resources/views/index.blade.php | 6 +++--- .../php/templates/docEditor.tpl | 4 ++-- .../php/templates/forgotten.tpl | 2 +- web/documentserver-example/php/templates/index.tpl | 6 +++--- .../python/templates/editor.html | 4 ++-- .../python/templates/forgotten.html | 2 +- .../python/templates/index.html | 6 +++--- .../ruby/app/views/home/editor.html.erb | 2 +- .../ruby/app/views/home/index.html.erb | 4 ++-- .../ruby/app/views/layouts/application.html.erb | 2 +- 29 files changed, 60 insertions(+), 60 deletions(-) diff --git a/web/documentserver-example/csharp-mvc/Views/Home/Editor.aspx b/web/documentserver-example/csharp-mvc/Views/Home/Editor.aspx index ef86c67d0..770501c00 100644 --- a/web/documentserver-example/csharp-mvc/Views/Home/Editor.aspx +++ b/web/documentserver-example/csharp-mvc/Views/Home/Editor.aspx @@ -30,7 +30,7 @@ * --> " type="image/x-icon" /> - <%= Model.FileName + " - ONLYOFFICE" %> + <%= Model.FileName + " - Euro-Office" %> <%: Styles.Render("~/Content/editor") %> @@ -118,7 +118,7 @@ // the meta information of the document is changed via the meta command var onMetaChange = function (event) { if (event.data.title !== undefined) { - document.title = event.data.title + " - ONLYOFFICE"; + document.title = event.data.title + " - Euro-Office"; } if (event.data.favorite !== undefined) { diff --git a/web/documentserver-example/csharp-mvc/Views/Home/Index.aspx b/web/documentserver-example/csharp-mvc/Views/Home/Index.aspx index 9092297c7..1b955cb28 100644 --- a/web/documentserver-example/csharp-mvc/Views/Home/Index.aspx +++ b/web/documentserver-example/csharp-mvc/Views/Home/Index.aspx @@ -154,8 +154,8 @@ <% var storedFiles = DocManagerHelper.GetStoredFiles(); %>
"> - Welcome to ONLYOFFICE Docs! - Get started with a live demo of ONLYOFFICE Docs, a powerful open-source office suite for your browser. + Welcome to Euro-Office Docs! + Get started with a live demo of Euro-Office Docs, a powerful open-source office suite for your browser. You can test editing features in real-time and explore multi-user collaboration:
    diff --git a/web/documentserver-example/csharp/Default.aspx b/web/documentserver-example/csharp/Default.aspx index 4831d50a4..b32debd67 100644 --- a/web/documentserver-example/csharp/Default.aspx +++ b/web/documentserver-example/csharp/Default.aspx @@ -156,8 +156,8 @@ <% } %>
    "> - Welcome to ONLYOFFICE Docs! - Get started with a live demo of ONLYOFFICE Docs, a powerful open-source office suite for your browser. + Welcome to Euro-Office Docs! + Get started with a live demo of Euro-Office Docs, a powerful open-source office suite for your browser. You can test editing features in real-time and explore multi-user collaboration:
      diff --git a/web/documentserver-example/csharp/DocEditor.aspx b/web/documentserver-example/csharp/DocEditor.aspx index 775546dae..a28f5c785 100644 --- a/web/documentserver-example/csharp/DocEditor.aspx +++ b/web/documentserver-example/csharp/DocEditor.aspx @@ -12,7 +12,7 @@ " type="image/x-icon" /> - <%= FileName + " - ONLYOFFICE" %> + <%= FileName + " - Euro-Office" %> - [[${model.getDocument().getTitle()}]] - ONLYOFFICE + [[${model.getDocument().getTitle()}]] - Euro-Office @@ -101,7 +101,7 @@ // the meta information of the document is changed via the meta command var onMetaChange = function (event) { if (event.data.title !== undefined) { - document.title = event.data.title + " - ONLYOFFICE"; + document.title = event.data.title + " - Euro-Office"; } if (event.data.favorite !== undefined) { diff --git a/web/documentserver-example/java-spring/src/main/resources/templates/index.html b/web/documentserver-example/java-spring/src/main/resources/templates/index.html index 4ad67af7e..8ab3ba88a 100755 --- a/web/documentserver-example/java-spring/src/main/resources/templates/index.html +++ b/web/documentserver-example/java-spring/src/main/resources/templates/index.html @@ -130,8 +130,8 @@
      - Welcome to ONLYOFFICE Docs! - Get started with a live demo of ONLYOFFICE Docs, a powerful open-source office suite for your browser. + Welcome to Euro-Office Docs! + Get started with a live demo of Euro-Office Docs, a powerful open-source office suite for your browser. You can test editing features in real-time and explore multi-user collaboration:
        diff --git a/web/documentserver-example/java/src/main/webapp/editor.jsp b/web/documentserver-example/java/src/main/webapp/editor.jsp index 2f293185b..044e4de5c 100644 --- a/web/documentserver-example/java/src/main/webapp/editor.jsp +++ b/web/documentserver-example/java/src/main/webapp/editor.jsp @@ -27,7 +27,7 @@ * limitations under the License. * --> - <%= Model.getDocument().getTitle() %> - ONLYOFFICE + <%= Model.getDocument().getTitle() %> - Euro-Office @@ -108,7 +108,7 @@ // the meta information of the document is changed via the meta command var onMetaChange = function (event) { if (event.data.title !== undefined) { - document.title = event.data.title + " - ONLYOFFICE"; + document.title = event.data.title + " - Euro-Office"; } if (event.data.favorite !== undefined) { diff --git a/web/documentserver-example/java/src/main/webapp/index.jsp b/web/documentserver-example/java/src/main/webapp/index.jsp index 47fa629df..99c24d433 100755 --- a/web/documentserver-example/java/src/main/webapp/index.jsp +++ b/web/documentserver-example/java/src/main/webapp/index.jsp @@ -153,8 +153,8 @@ <% } %>
        "> - Welcome to ONLYOFFICE Docs! - Get started with a live demo of ONLYOFFICE Docs, a powerful open-source office suite for your browser. + Welcome to Euro-Office Docs! + Get started with a live demo of Euro-Office Docs, a powerful open-source office suite for your browser. You can test editing features in real-time and explore multi-user collaboration:
          diff --git a/web/documentserver-example/js/OnlineEditorsExampleJS.html b/web/documentserver-example/js/OnlineEditorsExampleJS.html index 5a3da515c..b2d1bd6e7 100644 --- a/web/documentserver-example/js/OnlineEditorsExampleJS.html +++ b/web/documentserver-example/js/OnlineEditorsExampleJS.html @@ -22,7 +22,7 @@ - + @@ -37,10 +37,10 @@
        - ONLYOFFICE Document Editors + Euro-Office Document editors

        - Get started with a demo-sample of ONLYOFFICE Document Editors, the first html5-based editors. You may enter url your own document for testing. + Get started with a demo-sample of Euro-Office Document editors, the first html5-based editors. You may enter url your own document for testing.

        diff --git a/web/documentserver-example/nodejs/views/editor.ejs b/web/documentserver-example/nodejs/views/editor.ejs index d417a6fe3..1ede311bf 100644 --- a/web/documentserver-example/nodejs/views/editor.ejs +++ b/web/documentserver-example/nodejs/views/editor.ejs @@ -23,7 +23,7 @@ * limitations under the License. * --> - <%- file.name %> - ONLYOFFICE + <%- file.name %> - Euro-Office @@ -95,7 +95,7 @@ var onMetaChange = function (event) { // the meta information of the document is changed via the meta command if (event.data.title !== undefined) { - document.title = event.data.title + " - ONLYOFFICE"; + document.title = event.data.title + " - Euro-Office"; } if (event.data.favorite !== undefined) { diff --git a/web/documentserver-example/nodejs/views/forgotten.ejs b/web/documentserver-example/nodejs/views/forgotten.ejs index 707d24b89..368eb38a6 100644 --- a/web/documentserver-example/nodejs/views/forgotten.ejs +++ b/web/documentserver-example/nodejs/views/forgotten.ejs @@ -22,7 +22,7 @@ * limitations under the License. * --> - ONLYOFFICE Document Editors + Euro-Office Document editors diff --git a/web/documentserver-example/nodejs/views/index.ejs b/web/documentserver-example/nodejs/views/index.ejs index fc4dbad6e..a0190b220 100755 --- a/web/documentserver-example/nodejs/views/index.ejs +++ b/web/documentserver-example/nodejs/views/index.ejs @@ -23,7 +23,7 @@ * limitations under the License. * --> - ONLYOFFICE Document Editors + Euro-Office Document editors @@ -142,8 +142,8 @@ <% } %>
        "> - Welcome to ONLYOFFICE Docs! - Get started with a live demo of ONLYOFFICE Docs, a powerful open-source office suite for your browser. + Welcome to Euro-Office Docs! + Get started with a live demo of Euro-Office Docs, a powerful open-source office suite for your browser. You can test editing features in real-time and explore multi-user collaboration:
          diff --git a/web/documentserver-example/nodejs/views/wopiAction.ejs b/web/documentserver-example/nodejs/views/wopiAction.ejs index fcb239459..2c9689e2b 100644 --- a/web/documentserver-example/nodejs/views/wopiAction.ejs +++ b/web/documentserver-example/nodejs/views/wopiAction.ejs @@ -22,7 +22,7 @@ * limitations under the License. * --> - ONLYOFFICE Document Editors + Euro-Office Document editors