Skip to content

Commit f165419

Browse files
committed
Update Http links to Https
1 parent 564fdaa commit f165419

File tree

234 files changed

+342
-345
lines changed

Some content is hidden

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

234 files changed

+342
-345
lines changed

content/en/docs/apidocs-mxsdk/mxsdk/sdk-howtos/sdk-old-versions-howtos/old-setting-up-your-development-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To set up your development tools, follow these steps:
4343
{{% alert color="info" %}}In the rest of the how-to's in these series, in blocks such as the above, lines starting with `$` represent commands to type into a terminal. Sometimes a line follows without a `$`, which represents the output of the command.
4444
{{% /alert %}}
4545
46-
3. Install [Visual Studio Code](https://code.visualstudio.com/) (not to be confused with Visual Studio), a text editor/IDE with good support for [TypeScript](http://www.typescriptlang.org/). Make sure you have a recent version (v1.11.0+) (you can check the version you are using via **Help** > **About**).
46+
3. Install [Visual Studio Code](https://code.visualstudio.com/) (not to be confused with Visual Studio), a text editor/IDE with good support for [TypeScript](https://www.typescriptlang.org/). Make sure you have a recent version (v1.11.0+) (you can check the version you are using via **Help** > **About**).
4747
4. Install TypeScript 3.6.2 (or higher) with [`npm`](https://www.npmjs.com/), Node.js's package manager:
4848

4949
```bash {linenos=false}

content/en/docs/apidocs-mxsdk/mxsdk/sdk-howtos/setting-up-your-development-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To set up your development tools, follow these steps:
4141

4242
In the rest of the how-to's, in blocks such as the above, lines starting with a `$` represent commands to type into a terminal. Sometimes a line follows without a $, represents output of the command.
4343
44-
3. Install [Visual Studio Code](https://code.visualstudio.com/) (not to be confused with Visual Studio), a text editor/IDE with good support for [TypeScript](http://www.typescriptlang.org/). Make sure you have a recent version (v1.11.0+); check the version you are using through Help > About when you have Code opened.
44+
3. Install [Visual Studio Code](https://code.visualstudio.com/) (not to be confused with Visual Studio), a text editor/IDE with good support for [TypeScript](https://www.typescriptlang.org/). Make sure you have a recent version (v1.11.0+); check the version you are using through Help > About when you have Code opened.
4545
4. Install TypeScript 4.4.3 or higher with [`npm`](https://www.npmjs.com/) (or [`yarn`](https://yarnpkg.com/)), Node.js's package manager:
4646

4747
```bash {linenos=false}

content/en/docs/apidocs-mxsdk/mxsdk/sdk-refguide/javascript-typescript-resources.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 2
99

1010
As a developer who works with the Mendix Platform, you may be familiar with implementing custom user actions using Java.
1111

12-
The Mendix Platform and Model SDKs, however, are implemented in an entirely different language, namely [TypeScript](http://www.typescriptlang.org/). TypeScript is similar to JavaScript - in fact, TypeScript sources are "transpiled" into JavaScript before they're run. The main difference that sets TypeScript apart from JavaScript is that it adds explicit typing. This is [good news for developers with a Java background](http://blog.pikodat.com/2015/07/24/why-java-developers-might-love-typescript/), who expect that the compiler will warn them if they by accident try to treat an Integer as a String. At the same time, you can still take advantage of the rich ecosystem of JavaScript libraries that already exists.
12+
The Mendix Platform and Model SDKs, however, are implemented in an entirely different language, namely [TypeScript](https://www.typescriptlang.org/). TypeScript is similar to JavaScript - in fact, TypeScript sources are "transpiled" into JavaScript before they're run. The main difference that sets TypeScript apart from JavaScript is that it adds explicit typing. This is good news for developers with a Java background, who expect that the compiler will warn them if they by accident try to treat an Integer as a String. At the same time, you can still take advantage of the rich ecosystem of JavaScript libraries that already exists.
1313

1414
To help you find your way in this new and exciting TypeScript universe, we've collected a few resources that we ourselves have found useful in getting the hang of developing with TypeScript and JavaScript libraries.
1515

@@ -19,11 +19,11 @@ If you have any additional useful resources, feel free to mention them in the co
1919

2020
* [TypeScript Deep Dive](https://basarat.gitbooks.io/typescript/content/index.html) – available in a web version as well as e-book formats.
2121
* [Pro TypeScript](https://www.stevefenton.co.uk/publications/pro-typescript/) by Steve Fenton
22-
* [JavaScript: The Good Parts](http://shop.oreilly.com/product/9780596517748.do) by Douglas Crockford, O'Reilly
22+
* [JavaScript: The Good Parts](https://shop.oreilly.com/product/9780596517748.do) by Douglas Crockford, O'Reilly
2323

2424
## 3 Websites
2525

26-
* [Official TypeScript website](http://www.typescriptlang.org/Handbook) – tutorial, handbook, and samples
26+
* [Official TypeScript website](https://www.typescriptlang.org/Handbook) – tutorial, handbook, and samples
2727
* [Definitive Guide to TypeScript](https://www.sitepen.com/blog/2013/12/31/definitive-guide-to-typescript/) – covers TypeScript 1.5 (slightly older than the current release, but still useful)
2828
* [Editing TypeScript](https://code.visualstudio.com/docs/languages/typescript) with Visual Studio Code
2929
* Debugging your app with [Node Inspector](https://www.npmjs.com/package/node-inspector)

content/en/docs/appstore/creating-content/connector-guide-build/connector-guide-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ The following tools are part of the testing process of custom Java code in your
401401
* [JaCoCo](https://www.jacoco.org/jacoco/trunk/index.html) (Java Code Coverage) — This helps you check how well your code is covered by tests.
402402
* Gradle — This pulls everything together to manage Java dependencies, and provides a way to work with JUnit and Mockito.
403403

404-
Gradle can handle managing Java dependencies and running [JUnit](http://junit.org) tests. Read about setting up Gradle in [Extending App Setup for Building Connectors with Java](#extend-app-java). If you have a pipeline, Mendix recommends running your tests as part of it.
404+
Gradle can handle managing Java dependencies and running [JUnit](https://junit.org) tests. Read about setting up Gradle in [Extending App Setup for Building Connectors with Java](#extend-app-java). If you have a pipeline, Mendix recommends running your tests as part of it.
405405

406406
#### 6.2.2 Using the Java Unit Test Reference
407407

content/en/docs/appstore/modules/audit-trail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ Changing the audit behavior is easily done by altering the values of the constan
5959
* **CreateLogObjectWithoutMemberChanges** (default: false) – If none of the members have been changed, this property determines whether a commit will still generate a log record populated only with the `changed date` and `changed by` fields.
6060
* **LogLineDateFormat** (default: MM/dd/yyyy) – This constant determines the format to be used to convert date attributes to strings. It uses the same pattern as used by the [parse and format date function calls](/refguide/parse-and-format-date-function-calls/).
6161
* **LogServerTimeZoneDateNotation** (default: true) – This determines if the date should be audited in the **ServerTimeZone**. If both the session time zone and **ServerTimeZone** are enabled, you will see two dates in the audit overview.
62-
* **ServerTimeZone** (default: UTC) – This the time zone in which the server time zone is printed. This will be a static time zone and should match the notation as used in Java (for an example, see [TimeZones in Java](http://stackoverflow.com/questions/1694885/timezones-in-java)).
62+
* **ServerTimeZone** (default: UTC) – This is the time zone in which the server time zone is printed. This will be a static time zone and should match the notation as used in Java (for an example, see [TimeZones in Java](https://stackoverflow.com/questions/1694885/timezones-in-java)).
6363
* **LogSessionTimeZoneDateNotation** (default: false) – This determines if the date should be audited in the session time zone of the user that makes the change. If both the session time zone and the server time zone are enabled, you will see two dates in the audit overview.

content/en/docs/appstore/modules/database-connector.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ When using the Database connector, keep these best practices in mind:
154154
## 5 Common JDBC Drivers{#links}
155155

156156
* [Amazon Redshift](https://docs.aws.amazon.com/redshift/latest/mgmt/configure-jdbc-connection.html#download-jdbc-driver)
157-
* [Apache Derby](http://db.apache.org/derby/derby_downloads.html)
158-
* [Firebird](http://www.firebirdsql.org/en/jdbc-driver/)
159-
* [H2 Database Engine](http://www.h2database.com/html/main.html)
157+
* [Apache Derby](https://db.apache.org/derby/derby_downloads.html)
158+
* [Firebird](https://www.firebirdsql.org/en/jdbc-driver/)
159+
* [H2 Database Engine](https://www.h2database.com/html/main.html)
160160
* [HSQLDB](https://sourceforge.net/projects/hsqldb/files/)
161161
* [IBM DB2](https://www.ibm.com/support/pages/download-initial-version-115-clients-and-drivers)
162162
* [IBM Informix](https://www.ibm.com/products/informix?mhsrc=ibmsearch_a&mhq=informix)

content/en/docs/appstore/overview/use-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,4 @@ To remove a module and user data from your app, follow these steps:
261261

262262
* [Importing and Exporting Apps, Modules, Widgets, and Documents](/refguide/import-and-export/)
263263
* [Properties Common in the Page Editor](/refguide/common-widget-properties/)
264-
* [My Top 5 Mendix Widgets for Speeding Up Application Development](http://www.mendix.com/blog/top-5-mendix-widgets-speeding-application-development/)
264+
* [My Top 5 Mendix Widgets for Speeding Up Application Development](https://www.mendix.com/blog/top-5-mendix-widgets-speeding-application-development/)

content/en/docs/appstore/partner-solutions/apd/rg-apd/rg-one-apm/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The sections below provide an introduction to APM. There is an explanation of wh
3434

3535
## 2 Definition of APM
3636

37-
Wikipedia provides a good definition of [Application Performance Management](http://en.wikipedia.org/wiki/Application_performance_management).
37+
Wikipedia provides a good definition of [Application Performance Management](https://en.wikipedia.org/wiki/Application_performance_management).
3838

3939
APM is the monitoring and management of performance and availability of software applications.
4040
APM strives to detect and diagnose application performance problems to maintain an expected level of service.

content/en/docs/appstore/partner-solutions/apd/rg-apd/rg-three-apd/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The sections below provide a short explanation of APD along with its features an
3232

3333
## 2 Definition of the APD Tool
3434

35-
APD is based on Wikipedia's definition of [application performance management](http://en.wikipedia.org/wiki/Application_performance_management). The goal of APD is to emphasize this point: "to detect and diagnose complex application performance problems to maintain an expected level of service."
35+
APD is based on Wikipedia's definition of [application performance management](https://en.wikipedia.org/wiki/Application_performance_management). The goal of APD is to emphasize this point: "to detect and diagnose complex application performance problems to maintain an expected level of service."
3636

3737
You need the basic infrastructure probes to measure hardware parts like the CPU, memory, and disk as well as components like the database and web server. However, for higher quality support, you should also look at the application and how it is performing, and especially look to link this to the user’s business perspective.
3838

content/en/docs/appstore/partner-solutions/apd/rg-apd/rg-two-apm/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The sections below provide a short explanation of APM along with its features an
2727

2828
## 2 Definition of APM
2929

30-
CLEVR APM is based on Wikipedia's definition of [Application Performance Management](http://en.wikipedia.org/wiki/Application_performance_management), with emphasis on these points:
30+
CLEVR APM is based on Wikipedia's definition of [Application Performance Management](https://en.wikipedia.org/wiki/Application_performance_management), with emphasis on these points:
3131

3232
* APM is the "monitoring and management of performance and availability of software applications"
3333
* APM strives "to detect and diagnose complex application performance problems to maintain an expected level of service"

0 commit comments

Comments
 (0)