profoundjs 7.20.4 → 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.
Files changed (39) hide show
  1. package/auto-testing/static/test-runs/index.html +46 -0
  2. package/auto-testing/static/test-runs/script.js +477 -0
  3. package/auto-testing/static/test-runs/style.css +237 -0
  4. package/htdocs/profoundui/proddata/css/markdown.css +23 -0
  5. package/htdocs/profoundui/proddata/css/plogic.css +4976 -0
  6. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.eot +0 -0
  7. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.svg +276 -0
  8. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.ttf +0 -0
  9. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff +0 -0
  10. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-700.woff2 +0 -0
  11. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.eot +0 -0
  12. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.svg +301 -0
  13. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.ttf +0 -0
  14. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff +0 -0
  15. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-italic.woff2 +0 -0
  16. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.eot +0 -0
  17. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.svg +281 -0
  18. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.ttf +0 -0
  19. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff +0 -0
  20. package/htdocs/profoundui/proddata/fonts/gudea-v10-latin-regular.woff2 +0 -0
  21. package/htdocs/profoundui/proddata/fonts/material_icons.woff2 +0 -0
  22. package/htdocs/profoundui/proddata/js/atrium.js +188 -186
  23. package/htdocs/profoundui/proddata/js/designer.js +3242 -3237
  24. package/htdocs/profoundui/proddata/js/genie.js +2169 -2168
  25. package/htdocs/profoundui/proddata/js/plogic.grids.js +326 -0
  26. package/htdocs/profoundui/proddata/js/runtime.js +1133 -1133
  27. package/htdocs/profoundui/proddata/js/signon.js +101 -99
  28. package/htdocs/profoundui/userdata/html/atrium_login.html +4 -1
  29. package/package.json +3 -1
  30. package/profound.jse +1 -1
  31. package/setup/completeInstall.js +7 -0
  32. package/setup/config.js +4 -1
  33. package/setup/modules/environment/README.md +17 -0
  34. package/setup/modules/environment/atenvcmds.json +1283 -0
  35. package/setup/modules/environment/atenvir.json +1643 -0
  36. package/setup/modules/environment/atuserenvirdefaults.json +1789 -0
  37. package/setup/modules/puiscreens.json +283 -0
  38. package/setup/pjsdist.savf +0 -0
  39. package/setup/setup.js +10 -0
@@ -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
@@ -22,5 +22,8 @@ module.exports = {
22
22
  ],
23
23
  "timeout": 3600,
24
24
  "defaultMode": "case-sensitive",
25
- "preserveFieldNames": true
25
+ "preserveFieldNames": true,
26
+ "searchModulesPaths": [
27
+ "environment"
28
+ ]
26
29
  }
@@ -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.