Skip to content

Commit 7dadb1f

Browse files
Release note and uniformization
1 parent 53f6bc6 commit 7dadb1f

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

docs/docs/front/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ It is possible to override the default icon sets, which can be useful if you are
4747

4848
In this case, use the **Icons set** field of the Theme to specify your resource. Call it `IMAGES_COLOR` if you want to override the color set.
4949

50-
Javascript API
50+
JavaScript API
5151
--------------
5252

5353
To use an icon in your JS code, use the following API:

docs/docs/front/javascript-dev.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
sidebar_position: 30
3-
title: Javascript Development
3+
title: JavaScript Development
44
---
55

6-
Javascript Development
6+
JavaScript Development
77
======================
88

99
:::warning
@@ -178,7 +178,7 @@ Explore examples for different environments:
178178
- **React Native**: [Mobile demo](https://github.com/simplicitesoftware/react-native-demo)
179179
- **Within Simplicité**: [Demo module](https://github.com/simplicitesoftware/module-demo-jslib)
180180
181-
Core Javascript usage
181+
Core JavaScript usage
182182
---------------------
183183
184184
### External Objects (Embedded Widgets)

docs/docs/integration/webservices/git-repositories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ If required, you can specify additional settings to change the ESLint® confi
229229

230230
```json
231231
{
232-
"eslintConfig": "<default|<Javascript resource name>>"
232+
"eslintConfig": "<default|<JavaScript resource name>>"
233233
}
234234
```
235235

docs/make/userinterface/externalobjects/basic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ All **External Objects** are organized as web elements, thus are composed of 3 [
5252

5353
- **HTML** is the resource containing the _HTML_ code of your object that defines its core structure and organization.
5454
- **STYLES** is the resource containing the stylesheet (_CSS_ or _LESS_) associated with your object's _HTML_.
55-
- **CLASS** is the resource with the Javascript logic inside of which you will code the behaviors and interactions for your External Object.
55+
- **CLASS** is the resource with the JavaScript logic inside of which you will code the behaviors and interactions for your External Object.
5656

5757
And in addition, all external objects works with a **Java Class** that ensures both their proper setup, and the rendering of the web resources.
5858

@@ -115,7 +115,7 @@ How to create
115115
@Override
116116
public Object display(Parameters params) {
117117
try {
118-
// Call the render Javascript method implemented in the SCRIPT resource
118+
// Call the render JavaScript method implemented in the SCRIPT resource
119119
// ctn is the "div.extern-content" to fill on UI
120120
return javascript(getName() + ".render(ctn);");
121121
}
@@ -148,7 +148,7 @@ Read More
148148

149149
**Tips & Advices**:
150150

151-
- [Javascript Development](/docs/front/javascript-dev).
151+
- [JavaScript Development](/docs/front/javascript-dev).
152152
- [Ajax Library](/docs/front/lib-ajax).
153153

154154
**Details & Specificities**:

docs/make/userinterface/externalobjects/staticsite.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ What is a Static Web Site?
1212
Simplicité's [External Objects](/make/userinterface/externalobjects/basic) allow you to create **Static Web Site** objects;
1313
standalone web pages used to display elements without necessarily being logged nor necessarily interacting with any feature from Simplicité's backend.
1414

15-
In other terms it is a static site that you create using either the native web stack (HTML, CSS, Javascript)
15+
In other terms it is a static site that you create using either the native web stack (HTML, CSS, JavaScript)
1616
or any popular web frameworks (Vue.js, React Angular, etc.).
1717

1818
:::tip
1919

2020
If the static site interacts with Simplicité's backend it is **highly** recommended
21-
to use [our simplified Javascript client lib](https://www.npmjs.com/package/simplicite) especially if it is based on a web framework.
21+
to use [our simplified JavaScript client lib](https://www.npmjs.com/package/simplicite) especially if it is based on a web framework.
2222

2323
:::
2424

@@ -86,7 +86,7 @@ Specific use case and code examples can be found in the following pages:
8686

8787
**CLASS**:
8888

89-
- Javascript where you declare all of your component's behavior and interactions.
89+
- JavaScript where you declare all of your component's behavior and interactions.
9090
- Most happens in the `async render(){ ... }` method.
9191
- Access your HTML using `const $content = this.ctn;` and then `$content.html(...)`.
9292
> You can also use more classic ways to access your elements like `document.getElementById()` or `$(<element-identifier>)`.

docs/make/userinterface/externalobjects/uicomponent.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ There are 2 different categories for your external object's implementation:
100100
- `com.simplicite.webapp.web.ResponsiveExternalObject` by default
101101
- Can be overridden by a java code extending `ResponsiveExternalObject` or at least `ExternalObject` (the main parent class).
102102

103-
2. The _workflow_ and _behavior_ that is done using the _Javascript Resource_.
103+
2. The _workflow_ and _behavior_ that is done using the _JavaScript Resource_.
104104
- JS class extending `Simplicite.UI.ExternalObject`
105105
- Implementing the `render()` method to handle the DOM-related instantiations.
106106
- Declaring any other custom behaviors or features.
@@ -426,7 +426,7 @@ The key concepts and understanding that you need are:
426426
You may need to implement some behaviors and features specifically on the _server-side_ (though in the java code).
427427
Such workflow is required when you don't want to share information with the front (public) or you just want the calculations to be done by the backend.
428428

429-
1. **Javascript:** make a call to the [service](https://platform.simplicite.io/current/jsdoc/Simplicite.UI.ExternalObject.html#service) hook,
429+
1. **JavaScript:** make a call to the [service](https://platform.simplicite.io/current/jsdoc/Simplicite.UI.ExternalObject.html#service) hook,
430430
and pass the and data needed as arguments.
431431

432432
```javascript
@@ -632,5 +632,5 @@ Read More
632632

633633
**JS Dev**:
634634

635-
- [Javascript Development](/docs/front/javascript-dev).
635+
- [JavaScript Development](/docs/front/javascript-dev).
636636
- [Ajax Library](/docs/front/lib-ajax).

docs/make/userinterface/externalobjects/webpage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class _ extends com.simplicite.webapp.web.WebPageExternalObject { // repl
7979
@Override
8080
public String displayBody(Parameters params) {
8181
try {
82-
// Call the render Javascript function implemented in the SCRIPT resource
82+
// Call the render JavaScript function implemented in the SCRIPT resource
8383
return javascript(getName() + ".render();");
8484
}
8585
catch (Exception e) {
@@ -162,5 +162,5 @@ Read More
162162

163163
**JS Dev**:
164164

165-
- [Javascript Development](/docs/front/javascript-dev).
165+
- [JavaScript Development](/docs/front/javascript-dev).
166166
- [Ajax Library](/docs/front/lib-ajax).

docs/make/userinterface/resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Resource types
2121
| Image | Image file that can be used in a publication |
2222
| Style CSS  | CSS stylesheet for customizing the UI |
2323
| Object icon | Icon set |
24-
| Javascript | Javascript file for front-end customization |
24+
| JavaScript | JavaScript file for front-end customization |
2525
| HTML | Used for the content of a publication |
2626
| Markdown | Store a Markdown file |
2727
| PDF | Store a PDF file in the application for use in business process |

docs/versions/release-notes/v5-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This means the recommended JVM to run the platform is still an **up to date JVM*
3030
Rhino
3131
-----
3232

33-
Implementing server side logic (hooks) using the Rhino (server-side Javascript) is now considered **deprecated**,
33+
Implementing server side logic (hooks) using the Rhino (server-side JavaScript) is now considered **deprecated**,
3434
this possibility will be removed in next major version (v6), then only Java server logic will be possible.
3535

3636
Converting your existing Rhino scripts to Java class is thus highly recommended.

docs/versions/release-notes/v6-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Post-release
283283
- Backported improvements on the counters widget
284284
- Allowed `ObjectContext` message with suggestion
285285
- Backported the permission merge action on list to merge same permissions on several groups
286-
- Backported possibility to implement external object script as a Javascript class
286+
- Backported possibility to implement external object script as a JavaScript class
287287
extending `Simplicite.UI.ExternalObject` (and overriding the `render` class function)
288288
- Fixed notepad fields losing their current content in case of validation error of the form
289289

0 commit comments

Comments
 (0)