Skip to content

Commit 0997486

Browse files
committed
Merge branch 'development' into qt-appsettingsupdate
2 parents 2e0d52c + d705e52 commit 0997486

29 files changed

Lines changed: 604 additions & 531 deletions

File tree

content/en/docs/apidocs-mxsdk/apidocs/catalog/search-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,17 +232,17 @@ A successful `GET` call results in a `200` status code and a JSON response body
232232
"application": {
233233
"type": "Other",
234234
"technicalOwner": {
235-
"email": "andrej.koelewijn@mendix.com",
235+
"email": "john.doe@mendix.com",
236236
"uuid": "d9d4b5bc-ffe8-4c5c-b237-7358d01f7981",
237-
"name": "Andrej Koelewijn"
237+
"name": "John Doe"
238238
},
239239
"icon": "https://catalog.mendix.com/resources/logos/other_icon.png",
240240
"uuid": "1bed66d2-4477-39a9-9144-d0f848212f1e",
241241
"repositoryLocation": "https://sprintr.home.mendix.com/link/project/369386df-35b4-475b-a917-17adcc81c1b5",
242242
"businessOwner": {
243-
"email": "andrej.koelewijn@mendix.com",
243+
"email": "john.doe@mendix.com",
244244
"uuid": "d9d4b5bc-ffe8-4c5c-b237-7358d01f7981",
245-
"name": "Andrej Koelewijn"
245+
"name": "John Doe"
246246
},
247247
"name": "CustomerApp"
248248
},

content/en/docs/marketplace/create-content/create-solutions/sol-adapt/sol-architecting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ For example, a solution contains a module like the [Excel Importer](/appstore/mo
146146

147147
### Clean Coding
148148

149-
Mendix recommends adhering to the [Mendix Best Practices for Development](/refguide/dev-best-practices/) and having clear coding conventions.
149+
Mendix recommends adhering to [development best practices](/refguide/dev-best-practices/) and having clear coding conventions.
150150

151151
{{% alert color="warning" %}}
152152
This is even more important for solutions that will be adapted at the model level.

content/en/docs/marketplace/create-content/guidelines-content-creators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,5 +345,5 @@ For more information on what this program offers, see [Mendix Component Partner
345345
## Read More
346346

347347
* [Community Best Practices for App Performance](/refguide/community-best-practices-for-app-performance/)
348-
* [Mendix Best Practices for Development](/refguide/dev-best-practices/)
348+
* [Development Best Practices](/refguide/dev-best-practices/)
349349
* [Best Practices for Creating Connectors](/appstore/creating-content/connector-guide-best-practices/)

content/en/docs/marketplace/platform-supported-content/modules/document-generation/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ description: "Describes the configuration and usage of the PDF Document Generati
99

1010
The [PDF Document Generation](https://marketplace.mendix.com/link/component/211553) module allows you to generate pixel-perfect PDF documents based on regular pages in your app.
1111

12+
For detailed information on how to install and use the PDF Document Generation module, refer to these pages:
13+
14+
* [Installation and Configuration](/appstore/modules/document-generation/installation-configuration/)
15+
* [Usage](/appstore/modules/document-generation/usage/)
16+
* [Troubleshooting](/appstore/modules/document-generation/troubleshooting/)
17+
1218
## Features
1319

1420
* Generate pixel-perfect PDF documents based on regular pages in your app.

content/en/docs/marketplace/platform-supported-content/services/oidc-provider.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -193,20 +193,14 @@ Every end-user that is known in **Admin** module also needs to be known in the O
193193

194194
Perform the rest of configuration through the app:
195195

196-
1. Deploy and run the app.
197-
1. Login as an administrator.
198-
1. Use the **Accounts** navigation item.
199-
1. Click **New** and create the user account (or accounts) you need in your IAM Broker — for example, a new active account with the **User role** set to **User**.
200-
1. Use the **OpenID Connect** navigation item.
201-
1. Open the **Server Keys** tab.
202-
1. Click **New Key**.
203-
1. Open the **Scopes** tab.
204-
1. For the authorization code grant, create **New** scopes, enter `openid` as the **Name**, and set the **Scope type** to **Standard**. You need to use your own value in the **Name** field for the client credential grant type.
196+
1. Deploy your application and log in with the application Admin account.
197+
2. Click **New** in the **Accounts** navigation item to create the user account (or accounts) you need in your IAM Broker. For example, a new active account with the **User role** set to **User**.
198+
3. Click **New Key** on **Server Keys** tab of the **OpenID Connect** navigation item.
199+
4. For the authorization code grant, create **New** scopes, enter `openid` as the **Name**, and set the **Scope type** to **Standard**. You need to use your own value in the **Name** field for the client credential grant type.
205200

206201
This page sets up a single list of all the scopes that are known to the OIDC Provider service. For each client, you can then choose the scopes used by that specific client. See [Configuring Centralized Authorization](#configuring-authorization) for more information on which scopes you should set.
207202

208-
1. Open the **Clients** tab.
209-
1. Click **New Client Registration**.
203+
5. Open the **Clients** tab and click **New Client Registration**.
210204

211205
You can register a new client (an app using the OIDC SSO module for sign in which identifies this app as its IdP) in one of the two ways shown below in [Automatic Client Registration](#automatic-client-registration).
212206

content/en/docs/quickstarts/native-mobile-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Looking to get in touch with us or the community? Join our [Slack community work
163163
## Read More
164164

165165
* [Studio Pro Overview](/refguide/studio-pro-overview/) – describes Studio Pro tabs, menus, and shortcut keys
166-
* [Mendix Best Practices for Development](/refguide/dev-best-practices/) – a reference for adopting consistent naming and modeling conventions while developing your Mendix apps
166+
* [Development Best Practices](/refguide/dev-best-practices/) – a reference for adopting consistent naming and modeling conventions while developing your Mendix apps
167167
* [Starting with App from a Spreadsheet](/refguide/app-from-spreadsheet/) – describes importing a Microsoft Excel spreadsheet and building an app using your data
168168
* [Mendix Academy Become a Rapid Developer](https://academy.mendix.com/link/paths/31/Become-a-Rapid-Developer) – the learning path recommended for new Mendix users who want to create their first app using low-code
169169
* [Mendix Academy Crash Course](https://academy.mendix.com/link/paths/82/Crash-Course) – the learning path recommended for new Mendix users who are also experienced developers

content/en/docs/quickstarts/responsive-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Looking to get in touch with us or the community? Join our [Slack community work
263263
## Read More
264264

265265
* [Studio Pro Overview](/refguide/studio-pro-overview/) – describes Studio Pro tabs, menus, and shortcut keys
266-
* [Mendix Best Practices for Development](/refguide/dev-best-practices/) – a reference for adopting consistent naming and modeling conventions while developing your Mendix apps
266+
* [Development Best Practices](/refguide/dev-best-practices/) – a reference for adopting consistent naming and modeling conventions while developing your Mendix apps
267267
* [Starting with App from a Spreadsheet](/refguide/app-from-spreadsheet/) – describes importing a Microsoft Excel spreadsheet and building an app using your data
268268
* [Mendix Academy Become a Rapid Developer](https://academy.mendix.com/link/paths/31/Become-a-Rapid-Developer) – the learning path recommended for new Mendix users who want to create their first app using low-code
269269
* [Mendix Academy Crash Course](https://academy.mendix.com/link/paths/82/Crash-Course) – the learning path recommended for new Mendix users who are also experienced developers

content/en/docs/refguide/general/sbom-generation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Since a full SBOM contains all project details, this is only a partial represent
8080

8181
The table below describes what components are currently covered in the generated SBOM, and from what version. It is recommended to use version `10.10`, `9.24.22`, or `10.6.9` and above.
8282

83-
| Feature | Description | Version
83+
| Feature | Version | Description
8484
| --- | --- | --- |
8585
| Mendix Modules | `9.24.14`, `10.4.0` | Mendix Modules imported from the Marketplace. This does not include Add-on Modules, Solutions, Extensions, or manually imported modules. |
8686
| [Java Dependencies](/refguide/managed-dependencies/) | `9.24.14`, `10.4.0` | Java libraries imported into your project using [Managed Dependencies](/refguide/managed-dependencies/), or those manually added in the `userlib` folder. Libraries added through managed dependencies will have access to information of the package manager and will include more details, such as the used license. |

content/en/docs/refguide/installation/performance-tips/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ Antivirus software can sometimes impact the performance of Studio Pro. To mitiga
5252
## Read More
5353

5454
* [Community Best Practices for App Performance](/refguide/community-best-practices-for-app-performance/)
55-
* [Mendix Best Practices for Development](/refguide/dev-best-practices/)
55+
* [Development Best Practices](/refguide/dev-best-practices/)

content/en/docs/refguide/mobile/best-practices/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Guides in this section will help you apply best practices and patterns when buil
1919

2020
## Read More
2121

22-
* To increase the clarity, organization, and documentation of your apps, see [Mendix Best Practices for Development](/refguide/dev-best-practices/)
22+
* To increase the clarity, organization, and documentation of your apps, see [Development Best Practices](/refguide/dev-best-practices/)

0 commit comments

Comments
 (0)