Difference between revisions of "ITasks"
m |
|||
Line 20: | Line 20: | ||
== Get from git == | == Get from git == | ||
The iTask system is actively developed, but not regularly released. Our version control is [https://gitlab.science.ru.nl/clean-and-itasks/iTasks-SDK publicly accessible]. | The iTask system is actively developed, but not regularly released. Our version control is [https://gitlab.science.ru.nl/clean-and-itasks/iTasks-SDK publicly accessible]. | ||
− | # Install a [[Download Clean | Clean | + | # Install a [[Download Clean | Clean development release]] |
# Check out the iTasks repository | # Check out the iTasks repository | ||
# Follow the setup instructions in README.txt | # Follow the setup instructions in README.txt |
Revision as of 14:45, 18 August 2015
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.
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)
Get from git
The iTask system is actively developed, but not regularly released. Our version control is publicly accessible.
- Install a Clean development release
- Check out the iTasks repository
- Follow the setup instructions in 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:
- Find out what your current ip address and use that instead of http://localhost/.
- Better: use http://127.0.0.1/ instead of http://localhost/.
- best: change the settings of Firefox.
- type as url: about:config
- search for v6, you will see network.dns.disableIPv6
- toggle the value of this parameter to True.