forked from ctrlspc/django-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
68 lines (45 loc) · 1.51 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
What is it?
===========
django-workflows provides a generic workflow engine for Django.
Documentation
=============
For more documentation please visit: http://packages.python.org/django-workflows/
Code
====
The code can be found on bitbucket: http://bitbucket.org/diefenbach/django-workflows/
Implementations
===============
If you want to see a comprehensive implementation of django-workflows take
a look at the CMS `LFC <http://pypi.python.org/pypi/django-lfc>`_
Changes
=======
1.0 beta 4 (2010-07-23)
-----------------------
* Changed: State.get_allowed_transitions: try to use the object's has_permissions
method before using the one from the utils
1.0 beta 3 (2010-07-07)
-----------------------
* Bugfix utils.get_allowed_transitions; issue #2
* Bugfix: get_workflow_for_object method; issue #3
1.0 beta 2 (2010-05-19)
------------------------
* Bugfix: get_allowed_transitions; return only allowed permissions; issue #2.
* Added license
1.0 beta 1 (2010-05-17)
------------------------
* First beta release.
1.0 alpha 4 (2010-04-16)
------------------------
* Added get_initial_state method
* Moved WorkflowBase to __init__.py
* Added related_name for permissions to WorkflowPermissionRelation
1.0 alpha 3 (2010-03-22)
------------------------
* Changes according to `django-permissions <http://pypi.python.org/pypi/django-permissions>`_
1.0a3 (Added roles)
1.0 alpha 2 (2010-03-22)
------------------------
* A lot of improvements
1.0 alpha 1 (2010-03-13)
------------------------
* Initial public release