Difference between revisions of "ITasks"

From Clean
Jump to navigationJump to search
m
 
(44 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
[[File:itasks-logo.png|right]]
 
[[File:itasks-logo.png|right]]
At the '''ICFP 2007''' conference we first presented '''iTasks''' [http://www.st.cs.ru.nl/papers/2007/plar2007-ICFP07-iTasks.pdf],
+
The iTask system ('''iTasks''') is a task-oriented programming toolkit for programming workflow support applications in [[Clean]].
a multi-user workflow system for the web. Since then the system has evolved from a small library on top of the [[iData]] framework to
 
a full fledged workflow language embedded in [[Clean]].  
 
  
Using '''iTasks''' 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. Workflows 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.
  
Lately we have been working on version 2 of iTasks that takes the quality of the generated workflow support systems
 
to a higher level and aims to offer end-users working on tasks a more user-friendly experience. We have presented this new incarnation
 
of the iTask system at the '''IFL 2009''' conference, and we are working on getting it ready for an alpha release.
 
 
[[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)
  
 +
== Installation ==
 +
Follow the instructions at [[Download Clean]] to install the ''Latest iTask and Clean Release''. Stable version (e.g. Clean 3.1) are not supported in combination with iTasks.
  
== Download ==
+
== Documentation ==
For the [[AFP2008|AFP Summerschool 2008]] we made a special Clean release which includes
+
You can find up-to-date documentation via the [https://cloogle.org Cloogle] search engine which indexes all standard libraries, external libraries, compiler errors, ABC instructions, builtins and syntax elements. Documentation of the concepts of iTasks is still mostly done in scientific papers (look for iTasks on the [[Publications]] page).
the new compiler which can generate SAPL code for execution on the client.
 
  
You can download this release at:
+
== Browsers ==
http://clean.cs.ru.nl/download/Clean22/windows/Clean2.2-iTasks-AFP2008.zip
+
The iTask system supports recent versions of Firefox, Chrome and Edge.
  
 
== Read more ==
 
== Read more ==
 +
* [[ST_Publications|Papers about iTasks]]
 
* [[Workflow examples]]
 
* [[Workflow examples]]
* Rinus' iTask pages [http://www.cs.ru.nl/~rinus/iTaskIntro.html].
+
* [[ITasksProjectIdeas| Ideas for projects to improve iTasks]]

Latest revision as of 08:01, 22 September 2022

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

Follow the instructions at Download Clean to install the Latest iTask and Clean Release. Stable version (e.g. Clean 3.1) are not supported in combination with iTasks.

Documentation

You can find up-to-date documentation via the Cloogle search engine which indexes all standard libraries, external libraries, compiler errors, ABC instructions, builtins and syntax elements. Documentation of the concepts of iTasks is still mostly done in scientific papers (look for iTasks on the Publications page).

Browsers

The iTask system supports recent versions of Firefox, Chrome and Edge.

Read more