Skip to content

Commit 273fb37

Browse files
authored
Merge pull request #18 from UI5/docs-update-urls
docs: update urls
2 parents b736ab6 + 4b2ea4c commit 273fb37

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
![UI5-logo](docs/imgs/ui5-svelte-logo.png)
22

3-
[![CI](https://github.com/SAP-samples/ui5-webcomponents-sample-svelte/actions/workflows/ci.yaml/badge.svg)](https://github.com/SAP-samples/ui5-webcomponents-sample-svelte/actions/workflows/ci.yaml)
4-
[![REUSE status](https://api.reuse.software/badge/github.com/SAP-samples/ui5-webcomponents-sample-svelte)](https://api.reuse.software/info/github.com/SAP-samples/ui5-webcomponents-sample-svelte)
3+
[![CI](https://github.com/UI5/sample-webcomponents-svelte/actions/workflows/ci.yaml/badge.svg)](https://github.com/UI5/sample-webcomponents-svelte/actions/workflows/ci.yaml)
4+
[![REUSE status](https://api.reuse.software/badge/github.com/UI5/sample-webcomponents-svelte)](https://api.reuse.software/info/github.com/UI5/sample-webcomponents-svelte)
55

66
# **UI5 Web Components Sample ToDo App**
7-
### ***Sample ToDo application that demonstrates the usage of [UI5 Web Components](https://sap.github.io/ui5-webcomponents/) using [Svelte](https://svelte.dev/)***
7+
8+
***Sample ToDo application that demonstrates the usage of [UI5 Web Components](https://ui5.github.io/webcomponents/) using [Svelte](https://svelte.dev/)***
89

910
The application showcases how to: bind properties, subscribe to and forward events, and consume UI5 Web Components within Svelte.
1011

@@ -16,8 +17,8 @@ Project was initialized uising **[ViteJs](https://vitejs.dev/guide/#scaffolding-
1617
## **Download and Installation**
1718
1. **[Clone this repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository)** and navigate to the downloaded directory
1819
```sh
19-
git clone https://github.com/SAP-samples/ui5-webcomponents-sample-svelte.git
20-
cd ui5-webcomponents-sample-svelte
20+
git clone https://github.com/UI5/sample-webcomponents-svelte.git
21+
cd sample-webcomponents-svelte
2122
```
2223
2. Install all dependencies
2324
```sh

REUSE.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
version = 1
22
SPDX-PackageName = "UI5 Webcomponents Sample with Svelte"
33
SPDX-PackageSupplier = "SAP OpenUI5 <openui5@sap.com>"
4-
SPDX-PackageDownloadLocation = "https://github.com/sap-samples/ui5-webcomponents-sample-svelte"
4+
SPDX-PackageDownloadLocation = "https://github.com/UI5/sample-webcomponents-svelte"
55
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."
66

77
[[annotations]]
88
path = "**"
99
precedence = "aggregate"
10-
SPDX-FileCopyrightText = "2021 SAP SE or an SAP affiliate company and ui5-webcomponents-sample-svelte contributors"
10+
SPDX-FileCopyrightText = "2021 SAP SE or an SAP affiliate company and sample-webcomponents-svelte contributors"
1111
SPDX-License-Identifier = "Apache-2.0"
1212

1313
[[annotations]]
1414
path = "docs/imgs/ui5-svelte-logo.png"
1515
precedence = "aggregate"
16-
SPDX-FileCopyrightText = ["", "2016-21 Svelte contributors (https://github.com/sveltejs/svelte/graphs/contributors)", "2021 SAP SE or an SAP affiliate company and ui5-webcomponents-sample-svelte contributors"]
16+
SPDX-FileCopyrightText = ["", "2016-21 Svelte contributors (https://github.com/sveltejs/svelte/graphs/contributors)", "2021 SAP SE or an SAP affiliate company and sample-webcomponents-svelte contributors"]
1717
SPDX-License-Identifier = "Apache-2.0 and MIT"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"start": "vite",
7-
"build": "vite build --base=/ui5-webcomponents-sample-svelte/",
7+
"build": "vite build --base=/sample-webcomponents-svelte/",
88
"preview": "vite preview",
99
"check": "svelte-check --tsconfig ./tsconfig.json",
1010
"lint": "eslint src",

src/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@
339339
<b>Admin version</b>: Svelte Admin <br />
340340
</p>
341341
<hr />
342-
<span class="help-dialog-text">For more information, please visit our <a href="https://github.com/SAP-samples/ui5-webcomponents-sample-svelte" target="_blank">documentation</a>.</span>
342+
<span class="help-dialog-text">For more information, please visit our <a href="https://github.com/UI5/sample-webcomponents-svelte" target="_blank">documentation</a>.</span>
343343
<p />
344344
<div class="dialog-button">
345345
<ui5-button design="Emphasized" on:click={handleHelpDialogCloseButtonClick}>Close</ui5-button>

0 commit comments

Comments
 (0)