diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index b99b078d6..000000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,29 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: openui5-website -Upstream-Contact: SAP OpenUI5 -Source: https://github.com/SAP/openui5-website -Disclaimer: The code in this project may include calls to APIs (“API Calls”) of - SAP or third-party products or services developed outside of this project - (“External Products”). - “APIs” means application programming interfaces, as well as their respective - specifications and implementing code that allows software to communicate with - other software. - API Calls to External Products are not licensed under the open source license - that governs this project. The use of such API Calls and related External - Products are subject to applicable additional agreements with the relevant - provider of the External Products. In no event shall the open source license - that governs this project grant any rights in or to any External Products,or - alter, expand or supersede any terms of the applicable additional agreements. - If you have a valid license agreement with SAP for the use of a particular SAP - External Product, then you may make use of any API Calls included in this - project’s code for that SAP External Product, subject to the terms of such - license agreement. If you do not have a valid license agreement for the use of - a particular SAP External Product, then you may only make use of any API Calls - in this project for that SAP External Product for your internal, non-productive - and non-commercial test and evaluation of such API Calls. Nothing herein grants - you any rights to use or access any SAP External Product, or provide any third - parties the right to use of access any SAP External Product, through API Calls. - -Files: * -Copyright: 2025 SAP SE or an SAP affiliate company and OpenUI5 contributors -License: Apache-2.0 \ No newline at end of file diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 000000000..469b43333 --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,11 @@ +version = 1 +SPDX-PackageName = "openui5-website" +SPDX-PackageSupplier = "SAP OpenUI5 " +SPDX-PackageDownloadLocation = "https://github.com/UI5/cli" +SPDX-PackageComment = "The code in this project may include calls to APIs (“API Calls”) of\n SAP or third-party products or services developed outside of this project\n (“External Products”).\n “APIs” means application programming interfaces, as well as their respective\n specifications and implementing code that allows software to communicate with\n other software.\n API Calls to External Products are not licensed under the open source license\n that governs this project. The use of such API Calls and related External\n Products are subject to applicable additional agreements with the relevant\n provider of the External Products. In no event shall the open source license\n that governs this project grant any rights in or to any External Products,or\n alter, expand or supersede any terms of the applicable additional agreements.\n If you have a valid license agreement with SAP for the use of a particular SAP\n External Product, then you may make use of any API Calls included in this\n project’s code for that SAP External Product, subject to the terms of such\n license agreement. If you do not have a valid license agreement for the use of\n a particular SAP External Product, then you may only make use of any API Calls\n in this project for that SAP External Product for your internal, non-productive\n and non-commercial test and evaluation of such API Calls. Nothing herein grants\n you any rights to use or access any SAP External Product, or provide any third\n parties the right to use of access any SAP External Product, through API Calls." + +[[annotations]] +path = "**" +precedence = "aggregate" +SPDX-FileCopyrightText = "2025 SAP SE or an SAP affiliate company and UI5 CLI contributors" +SPDX-License-Identifier = "Apache-2.0" \ No newline at end of file diff --git a/backtobasics/community.html b/backtobasics/community.html index a45c2b2d3..01ea9c4b0 100644 --- a/backtobasics/community.html +++ b/backtobasics/community.html @@ -32,7 +32,7 @@ - + @@ -41,8 +41,8 @@ @@ -188,13 +188,5 @@

Contact us

- - - - - - - - \ No newline at end of file diff --git a/backtobasics/components/footer-section.component.js b/backtobasics/components/footer-section.component.js deleted file mode 100644 index 59c89c9c4..000000000 --- a/backtobasics/components/footer-section.component.js +++ /dev/null @@ -1,24 +0,0 @@ -'use strict'; -Vue.component("footer-section", { - template:`
- - -
` -}); \ No newline at end of file diff --git a/backtobasics/components/nav-section-mobile.component.js b/backtobasics/components/nav-section-mobile.component.js deleted file mode 100644 index efc45fb92..000000000 --- a/backtobasics/components/nav-section-mobile.component.js +++ /dev/null @@ -1,56 +0,0 @@ -'use strict'; -Vue.component("nav-section-mobile", { - data: function () { - return { - currentPage: '', - hamburgerMenuVisible: false, - } - }, - methods: { - isActive: function(name) { - return this.currentPage.includes(name); - }, - toggleHamburgerMenu() { - this.hamburgerMenuVisible = !this.hamburgerMenuVisible - } - }, - mounted() { - this.currentPage = window.location.href; - }, - template:`
- - - -
- ` -}); \ No newline at end of file diff --git a/backtobasics/components/nav-section.component.js b/backtobasics/components/nav-section.component.js deleted file mode 100644 index eebde2914..000000000 --- a/backtobasics/components/nav-section.component.js +++ /dev/null @@ -1,49 +0,0 @@ -'use strict'; -Vue.component("nav-section", { - data: function () { - return { - currentPage: '' - } - }, - methods: { - isActive: function(name) { - return this.currentPage.includes(name); - } - }, - mounted() { - this.currentPage = window.location.href; - }, - template:`` -}); \ No newline at end of file diff --git a/backtobasics/css/common.css b/backtobasics/css/common.css index a1bdecc55..8aee90f78 100644 --- a/backtobasics/css/common.css +++ b/backtobasics/css/common.css @@ -639,6 +639,33 @@ article { } } +/* --------------------------- Navigation --------------------------- */ +.nav ul.anchor-nav { + display: flex; +} + +.nav div.mobile-nav { + display: none; +} + +@media (width < 780px) { + .nav ul.anchor-nav { + display: none; + } + + .nav div.mobile-nav { + display: inline; + } +} + +.mobile-nav ul.mobile-nav-menu { + display: none; +} + +.mobile-nav ul.mobile-nav-menu.hamburgerMenuVisible { + display: flex; +} + /* --------------------------- Main Contents --------------------------- */ .head { position: relative; diff --git a/backtobasics/documentation.html b/backtobasics/documentation.html index a46f132db..68c607b37 100644 --- a/backtobasics/documentation.html +++ b/backtobasics/documentation.html @@ -32,7 +32,7 @@ - + @@ -41,8 +41,8 @@ @@ -198,13 +198,5 @@

- - - - - - - - \ No newline at end of file diff --git a/backtobasics/events.html b/backtobasics/events.html index dd1120559..f606d28ee 100644 --- a/backtobasics/events.html +++ b/backtobasics/events.html @@ -32,7 +32,7 @@ - + @@ -41,8 +41,8 @@ @@ -267,13 +267,5 @@

Speakers

- - - - - - - - \ No newline at end of file diff --git a/backtobasics/guidelines.html b/backtobasics/guidelines.html index 197c78ad9..8f50631fe 100644 --- a/backtobasics/guidelines.html +++ b/backtobasics/guidelines.html @@ -32,7 +32,7 @@ - + @@ -41,8 +41,8 @@ @@ -235,13 +235,5 @@

3D Icon Model

- - - - - - - - \ No newline at end of file diff --git a/backtobasics/index.html b/backtobasics/index.html index 2873d3ef8..a258f00eb 100644 --- a/backtobasics/index.html +++ b/backtobasics/index.html @@ -32,7 +32,7 @@ - + @@ -41,8 +41,8 @@