Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

<script>

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

</script>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![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)
[![REUSE status](https://api.reuse.software/badge/github.com/UI5/tutorials)](https://api.reuse.software/info/github.com/UI5/tutorials)

# UI5 Tutorials

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

## How to obtain support

[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.
[Create an issue](https://github.com/UI5/tutorials/issues) in this repository if you find a bug or have questions about the content.

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

Expand Down
2 changes: 1 addition & 1 deletion REUSE.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version = 1
SPDX-PackageName = "ui5-typescript-walkthrough"
SPDX-PackageSupplier = "ospo@sap.com"
SPDX-PackageDownloadLocation = "<https://github.com/SAP-samples/ui5-typescript-walkthrough>"
SPDX-PackageDownloadLocation = "<https://github.com/UI5/tutorials>"
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]]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:SAP-samples/ui5-typescript-walkthrough.git"
"url": "git@github.com:UI5/tutorials.git"
},
"scripts": {
"build": "node tools/builder",
Expand Down
6 changes: 3 additions & 3 deletions packages/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ We first introduce you to the basic development paradigms like *Model-View-Contr

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

- **[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> )
- **[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> )
- **[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> )
- **[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> )
- **[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> )
- **[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> )

## License

Expand Down
6 changes: 3 additions & 3 deletions packages/quickstart/steps/01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ Let's get you ready for your journey! We bootstrap OpenUI5 in an HTML page and i

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

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).
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).

***

### Coding

<details class="ts-only">

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

</details>

<details class="js-only">

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).
You can download the solution for this step here: [📥 Download step 1](https://ui5.github.io/tutorials/quickstart-step-01-js.zip).

</details>
***
Expand Down
6 changes: 3 additions & 3 deletions packages/quickstart/steps/02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ Now we extend our minimalist HTML page to a basic app with a view and a controll

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

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).
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).

***

### Coding

<details class="ts-only">

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

</details>

<details class="js-only">

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).
You can download the solution for this step here: [📥 Download step 2](https://ui5.github.io/tutorials/quickstart-step-02-js.zip).

</details>
***
Expand Down
6 changes: 3 additions & 3 deletions packages/quickstart/steps/03/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ Finally, we add a second page to our app showcasing some of the key OpenUI5 conc

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

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).
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).

***

### Coding

<details class="ts-only">

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

</details>

<details class="js-only">

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).
You can download the solution for this step here: [📥 Download step 3](https://ui5.github.io/tutorials/quickstart-step-03-js.zip).

</details>
***
Expand Down
Loading