Difference between revisions of "ITasks"

From Clean
Jump to navigationJump to search
(26 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
The iTask system ('''iTasks''') is a task-oriented programming toolkit for programming workflow support applications in [[Clean]].
 
The iTask system ('''iTasks''') is a task-oriented programming toolkit for programming workflow support applications in [[Clean]].
  
With this toolkit workflows can be speficied using combinators in a very high level declarative monadic style. Workflows consist
+
With this toolkit, interactive systems can be specified using combinators in a very high level declarative monadic style. Programs are constructed by combining typed 'tasks'. These tasks produce results that can be passed as parameters to other tasks. Tasks are constructed by combining
of typed tasks that produce results that can be passed as parameters to other tasks. Tasks are constructed by combining
 
 
single steps sequentially or in parallel.
 
single steps sequentially or in parallel.
From iTask specifications, executable workflow support systems are generated automatically.
+
From iTask specifications, executable web-based workflow support systems are generated automatically.
  
 
[[File:itasks2-gui.jpg|thumb|The iTask2 GUI]]
 
[[File:itasks2-gui.jpg|thumb|The iTask2 GUI]]
  
 
This latest version features:
 
This latest version features:
* A highly declarative API for specification of dynamic workflows
+
* A highly declarative API for specification of interactive systems as task compositions.
* A rich Ajax client interface for working on tasks
+
* Automatic generation of web-based user interfaces for entering and updating and viewing data.
* Automatically generated editors for entering and updating data in workflows.
+
* Automatic data persistance
* A JSON based service API for spawning and interacting with running workflow instances
+
* Automatic instant synchronization between different clients using html5 push technologies.
* The possibility to change running workflow instances
+
* Easy creation of JSON webservices
 +
* A builtin HTTP1.1 webserver
 +
* Integration framework for common client-side javascript libraries (for example google maps)
  
== Get from subversion ==
+
== Installation ==
The iTask system is actively developed, but not regularly released. You can get the development trunk from our subversion repository.
+
Download and unzip a [[Download Clean | Clean Development Release]]. It contains iTasks by default. Clean 2.4 is not supported in combination with iTasks.
You can get started with iTasks by following the following three steps:
 
# Install a Clean 2.3 system
 
# Check out the iTask trunk https://svn.cs.ru.nl/repos/iTask-system/trunk to a directory named 'iTasks-SDK' in your Clean 2.3 directory.
 
# Follow the setup instructions in README.txt
 
  
== Download release ==
+
Mac and Linux users should follow the installation instructions provided in the README.txt.
We provide alpha builds on request or on special occasions such as use during courses.
 
If you want to see the latest iTasks developments it is better to check out from subversion.
 
 
 
The latest development release is version 10.8 (Aug. 2010) which you can download below.
 
 
 
[[media:iTasks-SDK-10.8.zip|Download iTasks SDK 10.8]].
 
 
 
For this release you need a preview version of Clean 2.3 with a modified compiler which you can download from the [https://wiki.clean.cs.ru.nl/Download_Clean Clean download page] or directly using the link below:
 
 
 
[[Media:Clean-iTasks-10.8.zip|Clean system for iTasks]]
 
 
 
To get started you need both the latest [https://wiki.clean.cs.ru.nl/Download_Clean Clean release for iTasks] and the latest release of the iTasks-SDK, which can be downloaded from this page. To combine them follow these steps:
 
 
 
# Unzip the Clean system into any directory on your system.
 
# Unzip the iTasks-SDK-XX.zip into the root-folder of the Clean System. This will create a folder 'iTasks-SDK'. It is required to put the iTasks system in this directory for the 'iTasks'-environment to work.
 
# Follow the instructions in 'readme.txt'. A build of the AJAX web-client is already included in the release, so you don't have to create one for yourself.
 
  
 
== Documentation ==
 
== Documentation ==
 
Documentation of iTasks is still mostly done in scientific papers (look for iTasks on the [[Publications]] page).
 
Documentation of iTasks is still mostly done in scientific papers (look for iTasks on the [[Publications]] page).
On this Wiki the following additional resources are available:
 
 
* [[Interfacing with the iTasks JSON API]]
 
  
 
== Browsers ==
 
== Browsers ==
  
The iTask system works with most browsers. IE 9 is a known exception, we are working on that.
+
The iTask system works with most modern browsers. IE 9 is a known exception, we are working on that.
  
 
Using the iTask system with Firefox can be very slow. This is caused by a delay that is added by Firefox for all events for localhost. There are several solutions and workarounds:
 
Using the iTask system with Firefox can be very slow. This is caused by a delay that is added by Firefox for all events for localhost. There are several solutions and workarounds:
Line 61: Line 39:
  
 
== Read more ==
 
== Read more ==
* [[iTasks_papers|Papers about iTasks]]
+
* [[ST_Publications|Papers about iTasks]]
 
* [[Workflow examples]]
 
* [[Workflow examples]]
 
* [[ITasksProjectIdeas| Ideas for projects to improve iTasks]]
 
* [[ITasksProjectIdeas| Ideas for projects to improve iTasks]]

Revision as of 09:27, 28 April 2016

Itasks-logo.png

The iTask system (iTasks) is a task-oriented programming toolkit for programming workflow support applications in Clean.

With this toolkit, interactive systems can be specified using combinators in a very high level declarative monadic style. Programs are constructed by combining typed 'tasks'. These tasks produce results that can be passed as parameters to other tasks. Tasks are constructed by combining single steps sequentially or in parallel. From iTask specifications, executable web-based workflow support systems are generated automatically.

The iTask2 GUI

This latest version features:

  • A highly declarative API for specification of interactive systems as task compositions.
  • Automatic generation of web-based user interfaces for entering and updating and viewing data.
  • Automatic data persistance
  • Automatic instant synchronization between different clients using html5 push technologies.
  • Easy creation of JSON webservices
  • A builtin HTTP1.1 webserver
  • Integration framework for common client-side javascript libraries (for example google maps)

Installation

Download and unzip a Clean Development Release. It contains iTasks by default. Clean 2.4 is not supported in combination with iTasks.

Mac and Linux users should follow the installation instructions provided in the README.txt.

Documentation

Documentation of iTasks is still mostly done in scientific papers (look for iTasks on the Publications page).

Browsers

The iTask system works with most modern browsers. IE 9 is a known exception, we are working on that.

Using the iTask system with Firefox can be very slow. This is caused by a delay that is added by Firefox for all events for localhost. There are several solutions and workarounds:

  1. type as url: about:config
  2. search for v6, you will see network.dns.disableIPv6
  3. toggle the value of this parameter to True.

Read more