Skip to content

Commit e8056d3

Browse files
authored
docs: Update links with new repository location (#223)
1 parent 18fb56b commit e8056d3

47 files changed

Lines changed: 168 additions & 168 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
<script>
55

6-
// Redirect for old sap-samples.github.io/ui5-typescript-walkthrough to new location sap-samples.github.io/ui5-typescript-walkthrough
7-
if (window.location.href.startsWith("https://sap-samples.github.io/ui5-typescript-walkthrough")) {
8-
var pathname = window.location.pathname.replace("/ui5-typescript-walkthrough-", "/walkthrough-");
9-
window.location.replace("https://sap-samples.github.io/ui5-typescript-walkthrough/walkthrough" + pathname + window.location.search);
6+
// Redirect for old single tutorial to multi tutorials setup - build folder
7+
if (window.location.href.startsWith("https://ui5.github.io/tutorials/build/")) {
8+
var pathname = window.location.pathname.replace("/tutorials/build/", "/tutorials/walkthrough/build/");
9+
window.location.replace("https://ui5.github.io/" + pathname + window.location.search);
1010
}
1111

1212
</script>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![REUSE status](https://api.reuse.software/badge/github.com/SAP-samples/ui5-typescript-walkthrough)](https://api.reuse.software/info/github.com/SAP-samples/ui5-typescript-walkthrough)
1+
[![REUSE status](https://api.reuse.software/badge/github.com/UI5/tutorials)](https://api.reuse.software/info/github.com/UI5/tutorials)
22

33
# UI5 Tutorials
44

@@ -16,7 +16,7 @@ This repository contains following tutorials:
1616

1717
## How to obtain support
1818

19-
[Create an issue](https://github.com/SAP-samples/ui5-typescript-walkthrough/issues) in this repository if you find a bug or have questions about the content.
19+
[Create an issue](https://github.com/UI5/tutorials/issues) in this repository if you find a bug or have questions about the content.
2020

2121
For additional support, [ask a question in OpenUI5 Community on Slack](https://ui5-slack-invite.cfapps.eu10.hana.ondemand.com/).
2222

REUSE.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version = 1
22
SPDX-PackageName = "ui5-typescript-walkthrough"
33
SPDX-PackageSupplier = "ospo@sap.com"
4-
SPDX-PackageDownloadLocation = "<https://github.com/SAP-samples/ui5-typescript-walkthrough>"
4+
SPDX-PackageDownloadLocation = "<https://github.com/UI5/tutorials>"
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]]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"license": "Apache-2.0",
2020
"repository": {
2121
"type": "git",
22-
"url": "git@github.com:SAP-samples/ui5-typescript-walkthrough.git"
22+
"url": "git@github.com:UI5/tutorials.git"
2323
},
2424
"scripts": {
2525
"build": "node tools/builder",

packages/quickstart/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ We first introduce you to the basic development paradigms like *Model-View-Contr
2020

2121
The tutorial consists of the following steps. To start, just open the first link - you`ll be guided from there.
2222

23-
- **[Step 1: Ready...](steps/01/README.md "Let's get you ready for your journey! We bootstrap OpenUI5 in an HTML page and implement a simple &quot;Hello World&quot; example.")** ([🔗 Live Preview](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/build/01/index.html) \| <details class="ts-only"> [📥 Download Solution](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/quickstart-step-01.zip) </details><details class="js-only"> [📥 Download Solution](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/quickstart-step-01-js.zip) </details> )
24-
- **[Step 2: Steady...](steps/02/README.md "Now we extend our minimalist HTML page to a basic app with a view and a controller.")** ([🔗 Live Preview](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/build/02/index-cdn.html) \| <details class="ts-only"> [📥 Download Solution](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/quickstart-step-02.zip) </details><details class="js-only"> [📥 Download Solution](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/quickstart-step-02-js.zip) </details> )
25-
- **[Step 3: Go!](steps/03/README.md "Now it is time to build our first little UI by replacing the &quot;Hello World&quot; text in the HTML body by the OpenUI5 control sap/m/Text. In the beginning, we will use the JavaScript control interface to set up the UI, the control instance is then placed into the HTML body. ")** ([🔗 Live Preview](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/build/03/index-cdn.html) \| <details class="ts-only"> [📥 Download Solution](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/quickstart-step-03.zip) </details><details class="js-only"> [📥 Download Solution](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/quickstart-step-03-js.zip)</details> )
23+
- **[Step 1: Ready...](steps/01/README.md "Let's get you ready for your journey! We bootstrap OpenUI5 in an HTML page and implement a simple &quot;Hello World&quot; example.")** ([🔗 Live Preview](https://ui5.github.io/tutorials/quickstart/build/01/index.html) \| <details class="ts-only"> [📥 Download Solution](https://ui5.github.io/tutorials/quickstart/quickstart-step-01.zip) </details><details class="js-only"> [📥 Download Solution](https://ui5.github.io/tutorials/quickstart/quickstart-step-01-js.zip) </details> )
24+
- **[Step 2: Steady...](steps/02/README.md "Now we extend our minimalist HTML page to a basic app with a view and a controller.")** ([🔗 Live Preview](https://ui5.github.io/tutorials/quickstart/build/02/index-cdn.html) \| <details class="ts-only"> [📥 Download Solution](https://ui5.github.io/tutorials/quickstart/quickstart-step-02.zip) </details><details class="js-only"> [📥 Download Solution](https://ui5.github.io/tutorials/quickstart/quickstart-step-02-js.zip) </details> )
25+
- **[Step 3: Go!](steps/03/README.md "Now it is time to build our first little UI by replacing the &quot;Hello World&quot; text in the HTML body by the OpenUI5 control sap/m/Text. In the beginning, we will use the JavaScript control interface to set up the UI, the control instance is then placed into the HTML body. ")** ([🔗 Live Preview](https://ui5.github.io/tutorials/quickstart/build/03/index-cdn.html) \| <details class="ts-only"> [📥 Download Solution](https://ui5.github.io/tutorials/quickstart/quickstart-step-03.zip) </details><details class="js-only"> [📥 Download Solution](https://ui5.github.io/tutorials/quickstart/quickstart-step-03-js.zip)</details> )
2626

2727
## License
2828

packages/quickstart/steps/01/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ Let's get you ready for your journey! We bootstrap OpenUI5 in an HTML page and i
1313

1414
<sup>*The browser shows a "Ready" button that triggers a "Hello World" message*</sup>
1515

16-
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 1](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/build/01/index.html).
16+
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 1](https://ui5.github.io/tutorials/quickstart/build/01/index.html).
1717

1818
***
1919

2020
### Coding
2121

2222
<details class="ts-only">
2323

24-
You can download the solution for this step here: [📥 Download step 1](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart-step-01.zip).
24+
You can download the solution for this step here: [📥 Download step 1](https://ui5.github.io/tutorials/quickstart-step-01.zip).
2525

2626
</details>
2727

2828
<details class="js-only">
2929

30-
You can download the solution for this step here: [📥 Download step 1](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart-step-01-js.zip).
30+
You can download the solution for this step here: [📥 Download step 1](https://ui5.github.io/tutorials/quickstart-step-01-js.zip).
3131

3232
</details>
3333
***

packages/quickstart/steps/02/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ Now we extend our minimalist HTML page to a basic app with a view and a controll
1313

1414
<sup>*The browser shows a Steady button in an app*</sup>
1515

16-
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 2](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/build/02/index.html).
16+
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 2](https://ui5.github.io/tutorials/quickstart/build/02/index.html).
1717

1818
***
1919

2020
### Coding
2121

2222
<details class="ts-only">
2323

24-
You can download the solution for this step here: [📥 Download step 2](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart-step-02.zip).
24+
You can download the solution for this step here: [📥 Download step 2](https://ui5.github.io/tutorials/quickstart-step-02.zip).
2525

2626
</details>
2727

2828
<details class="js-only">
2929

30-
You can download the solution for this step here: [📥 Download step 2](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart-step-02-js.zip).
30+
You can download the solution for this step here: [📥 Download step 2](https://ui5.github.io/tutorials/quickstart-step-02-js.zip).
3131

3232
</details>
3333
***

packages/quickstart/steps/03/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ Finally, we add a second page to our app showcasing some of the key OpenUI5 conc
1313

1414
<sup>*The second page shows plenty of UI controls and concepts to explore*</sup>
1515

16-
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 3](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart/build/03/index.html).
16+
You can access the live preview by clicking on this link: [🔗 Live Preview of Step 3](https://ui5.github.io/tutorials/quickstart/build/03/index.html).
1717

1818
***
1919

2020
### Coding
2121

2222
<details class="ts-only">
2323

24-
You can download the solution for this step here: [📥 Download step 3](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart-step-03.zip).
24+
You can download the solution for this step here: [📥 Download step 3](https://ui5.github.io/tutorials/quickstart-step-03.zip).
2525

2626
</details>
2727

2828
<details class="js-only">
2929

30-
You can download the solution for this step here: [📥 Download step 3](https://sap-samples.github.io/ui5-typescript-walkthrough/quickstart-step-03-js.zip).
30+
You can download the solution for this step here: [📥 Download step 3](https://ui5.github.io/tutorials/quickstart-step-03-js.zip).
3131

3232
</details>
3333
***

0 commit comments

Comments
 (0)