Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

This API is called from a command line script to update the copy of Profound UI used by Profound.js. This should only be used on a non-IBM i system because the proper way to install Profound UI on IBM i is by downloading the Windows Executable (GUI) Installer or the Save File (5250) Installer fromĀ http://www.profoundlogic.com/download.

...

Profound.js ships with a script named updatepui.js that provides for a simple way to use this API. You can call it like this:

Code Block
node updatepui

...


Example

Code Block
languagejavascript
titleupdatepui.js
// Load Profound.js
var profoundjs = require("profoundjs");

// Apply configuration
var config = require("./config.js");
profoundjs.applyConfig(config);

// Try updating Profound UI
profoundjs.updatepui();

...