profoundjs 7.20.3 → 7.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auto-testing/static/test-runs/index.html +46 -0
- package/auto-testing/static/test-runs/script.js +477 -0
- package/auto-testing/static/test-runs/style.css +237 -0
- package/htdocs/profoundui/proddata/css/markdown.css +23 -0
- package/htdocs/profoundui/proddata/css/plogic.css +4976 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.eot +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.svg +276 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.ttf +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff2 +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.eot +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.svg +301 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.ttf +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff2 +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.eot +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.svg +281 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.ttf +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff +0 -0
- package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff2 +0 -0
- package/htdocs/profoundui/proddata/fonts/material_icons.woff2 +0 -0
- package/htdocs/profoundui/proddata/js/atrium.js +188 -186
- package/htdocs/profoundui/proddata/js/designer.js +3242 -3237
- package/htdocs/profoundui/proddata/js/genie.js +2169 -2168
- package/htdocs/profoundui/proddata/js/plogic.grids.js +326 -0
- package/htdocs/profoundui/proddata/js/runtime.js +1133 -1133
- package/htdocs/profoundui/proddata/js/signon.js +101 -99
- package/htdocs/profoundui/userdata/html/atrium_login.html +4 -1
- package/package.json +3 -1
- package/profound.jse +1 -1
- package/setup/completeInstall.js +7 -0
- package/setup/config.js +4 -1
- package/setup/modules/environment/README.md +17 -0
- package/setup/modules/environment/atenvcmds.json +1283 -0
- package/setup/modules/environment/atenvir.json +1643 -0
- package/setup/modules/environment/atuserenvirdefaults.json +1789 -0
- package/setup/modules/puiscreens.json +283 -0
- package/setup/pjsdist.savf +0 -0
- package/setup/setup.js +10 -0
package/setup/completeInstall.js
CHANGED
|
@@ -159,6 +159,8 @@ Valid arguments for --silent mode:
|
|
|
159
159
|
let svrname, autostart, ccsid, nodePath, installSamples;
|
|
160
160
|
|
|
161
161
|
// If config.js doesn't exist, or if --configure is passed, prompt and create/update config.js.
|
|
162
|
+
// Else config.js does exist and not --configure and --silent, resolve srvname and autostart from arguments.
|
|
163
|
+
// This allow the config file to already be configured but the ibmi service not yet be installed --> as with Transformation customers
|
|
162
164
|
if (!fileExists(configPath) || args["configure"] === true) {
|
|
163
165
|
const warnings = getWarnings();
|
|
164
166
|
for (const warning of warnings) {
|
|
@@ -314,6 +316,11 @@ Valid arguments for --silent mode:
|
|
|
314
316
|
}
|
|
315
317
|
|
|
316
318
|
installSamples = answers.installSamples == true;
|
|
319
|
+
} else if (IBMi && args.silent === true && args.configure !== true && args.strtcpsvr_svrname) {
|
|
320
|
+
if (validateServer(args.strtcpsvr_svrname) === true) {
|
|
321
|
+
svrname = args.strtcpsvr_svrname;
|
|
322
|
+
autostart = args.strtcpsvr_autostart;
|
|
323
|
+
}
|
|
317
324
|
}
|
|
318
325
|
|
|
319
326
|
// Complete installation.
|
package/setup/config.js
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
# Environment/User Maintenace
|
|
3
|
+
|
|
4
|
+
This **low-code maintenance program** allows you to manage multiple **ProfoundUI Environments** from a single instance.
|
|
5
|
+
|
|
6
|
+
## Features
|
|
7
|
+
|
|
8
|
+
- **Environment Maintenance** – Add custom commands to execute during instance startup.
|
|
9
|
+
- **Library List Management** – Assigning a job description to an environment automatically configures the library list.
|
|
10
|
+
- **Instance Notes** – Add notes for specific instances to track details or configurations.
|
|
11
|
+
- **User Environment Maintenance** – Replaces the initial menu and initial program used in the user profile setup.
|
|
12
|
+
- Sets the default **ProfoundUI environment** for each user.
|
|
13
|
+
- Allows authorized users to change their environment as needed.
|
|
14
|
+
- Ability to overrides the workstation id.
|
|
15
|
+
## Future Development
|
|
16
|
+
|
|
17
|
+
- The **Automated Testing** tab is currently reserved for future use.
|