Found 239 results for "workflow workflow-handlers script"

The search executed in 0.001663792 seconds. That's fast.

Gitana / 4.0 / Data Engine / Workflow / Workflow Handlers

Workflow Handlers Add Features Copy Node Email Lock Node Logger Move Node Remove Features Remove Properties Script Set Properties Slack Message Sync Node Unlock Node Web Hook

Score: 23.077042

Gitana / 4.0 / Data Engine / Publishing / Workflow

Workflow Cloud CMS lets you define your own Workflows and choose them for the Publish and Unpublish activities. Each activity like Publish and Unpublish will have a Workflow Model which will have a set of instructions on how the contents should be routed during each activity. The default Workflow models we use for the Publish activity is Simple Publish and for the Unpublish activity is Simple Unpublish. You can add your own Workflows and customize your publish and unpublish activities.

Score: 18.617556

Gitana / 3.2 / Guide / Guide / Workflow

Workflow In explaining workflow, let's first take a look at the following things: Workflow Models Workflow Instances Workflow Tasks Workflow Payload Resources Workflow Comments Workflow History Item Workflow Events Workflow Event Handlers A workflow model is a definition of a workflow consisting of a full set of instructions on how content should be routed between participants or activities on its way toward completion. A workflow model is kind of like a blueprint describing the sequence of step

Score: 16.87724

Gitana / 4.0 / Data Engine / Workflow / Sample Workflows

Sample Workflows Here we provide a collection of sample workflow models that you can use as references. Please look to these as you seek to build out your own custom models. Ad hoc Approval Ad hoc Approval with Email Template Custom Form Email Notification Events Example Pooled Task Simple Publish Simple Unpublish

Score: 15.604444

Gitana / 3.2 / Guide / Guide / Scripting

Scripting Cloud CMS provides a server-side Scripting API that allows you to write custom actions, rules and behaviors that execute on the server. These scripts can be introduced at any time and do not require any server downtime. Developers can write scripts and hook them into Cloud CMS at any time to adjust how the product behaves and operates. The Scripting API consists of a set of server-side Scripting Objects that wrap your content and expose a select set of API service methods for your use.

Score: 12.941547

Gitana / 4.0 / Data Engine / Scripting / Overview

Scripting Cloud CMS provides a server-side Scripting API that allows you to write custom actions, rules and behaviors that execute on the server. These scripts can be introduced at any time and do not require any server downtime. Developers can write scripts and hook them into Cloud CMS at any time to adjust how the product behaves and operates. The Scripting API consists of a set of server-side Scripting Objects that wrap your content and expose a select set of API service methods for your use.

Score: 12.941547

Gitana / 4.0 / Data Engine / Workflow / Overview

Workflow In explaining workflow, let's first take a look at the following things: Workflow Models Workflow Instances Workflow Tasks Workflow Payload Resources Workflow Comments Workflow History Item Workflow Events Workflow Event Handlers A workflow model is a definition of a workflow consisting of a full set of instructions on how content should be routed between participants or activities on its way toward completion. A workflow model is kind of like a blueprint describing the sequence of step

Score: 12.688407

Gitana / 4.0 / Developers / Cookbooks / Scripting Cookbook

Scripting Cookbook Getting Started To get started with Server-Side Scripting, please visit the Server Side Scripting page. Code Samples Here are some code samples of common data structures to help you get started. Increment a Property With this example, we want to keep track of a counter that tracks the number of updates made to a node. After a node is created, if the user clicks update ten times, we want to have a counter on the node that indicates it has been updated ten times. This script sho

Score: 12.543849

Gitana / 3.2 / Guide / Guide / Actions / Execute Script

Execute Script ID: executeScript Executes a script attachment of a node. The configuration for this action is described using JSON Schema like this: { "script": "if (typeof(node.data.count) === 'undefined') { node.data.count = 0; }; node.data.count++;" } Property Required Default Description script yes String containing the script scriptMimetype no application/javascript String methodName no The method name of the script args no The arguments for the method in the script

Score: 11.972563

Gitana / 4.0 / Data Engine / Behaviors / Actions / Execute Script

Execute Script ID: executeScript Executes a script attachment of a node. The configuration for this action is described using JSON Schema like this: { "script": "if (typeof(node.data.count) === 'undefined') { node.data.count = 0; }; node.data.count++;" } Property Required Default Description script yes String containing the script scriptMimetype no application/javascript String methodName no The method name of the script args no The arguments for the method in the script

Score: 11.972563

Gitana / 3.2 / Guide / Guide / Workflow / Workflow Handlers / Script

Script Type: script This handler lets you run a script based on the items in a workflow. The config for this handler is as follows: { "script": "my script" "mimetype": "optional script mimetype (javascript by default)" } When writing your script, you will have access to variables containing document and workflow data: workflow Current workflow workflowTask - Current workflowTask workflowData - Workflow metadata documents - Array of documents being processed by the workflow Example: Simp

Score: 11.510464

Gitana / 4.0 / Data Engine / Workflow / Workflow Handlers / Script

Script Type: script This handler lets you run a script based on the items in a workflow. The config for this handler is as follows: { "script": "my script" "mimetype": "optional script mimetype (javascript by default)" } When writing your script, you will have access to variables containing document and workflow data: workflow Current workflow workflowTask - Current workflowTask workflowData - Workflow metadata documents - Array of documents being processed by the workflow Example: Simp

Score: 11.510464

Gitana / 3.2 / Guide / Guide / Workflow / Workflow Handlers

Workflow Handlers Add Features Copy Node Email Lock Node Logger Move Node Remove Features Remove Properties Script Set Properties Slack Message Sync Node Unlock Node Web Hook

Score: 11.410896

Gitana / 4.0 / Data Engine / Content Models / Scripts

Scripts Scripts are content nodes with a default attachment of type application/javascript. As with all behaviors, script nodes must implement the f:behavior feature. They must be bound to a node upon which to act (either a definition node or a content instance) using a a:has_behavior association. Script Interfaces If you elect to write scripts to implement custom behaviors, the following signatures can be used inside of your JavaScript: {{#article "policies/association"}}Association Policies{{/

Score: 11.353154

Gitana / 4.0 / Developers / Drivers / JavaScript (Legacy)

JavaScript (Legacy) Connect your HTML browser applications to Gitana Latest Version Version undefined Date The Gitana JavaScript driver can be dropped into any web or mobile application running in the browser, within Node.js or any of a host of web frameworks including jQuery, Vue.js, Next.js, Nuxt and many others. Loading the Driver You can load the driver into your web application in one of three ways: In the Browser