forked from plone/Products.CMFPlacefulWorkflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
223 lines (156 loc) · 5.59 KB
/
CHANGES.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
Changelog
=========
1.5.8 (unreleased)
------------------
- Fixed updating Role Mappings only in current folder.
[kroman0]
- Added 'CMFPlacefulWorkflow: Manage workflow policies' permission. ManageWorkflowPolicies is
no longer 'Manage portal', it's now assigned to 'CMFPlacefulWorkflow: Manage workflow policies'.
[alecghica]
- Fixed add workflow policy template (via ZMI).
[alecghica]
- Fixed descriptions under placeful_workflow_configuration.pt for sections
"For this folder" and "Below this folder".
[alecghica]
- Added "update security" as an option field on local configuration management
form, as in most cases updating catalog role mappings can be a very long operation
and is better to be made as a separate upgrade step.
[alecghica]
1.5.7 (2012-05-25)
------------------
- Fixed a few test failures in combination with five.pt.
[maurits]
1.5.6 (2011-11-24)
------------------
- Fix profiles description to be translated.
[vincentfretin]
- Fix failing test.
[davisagli]
1.5.5 - 2011-06-15
------------------
- Fix required value untested #9833
[encolpe]
1.5.4 - 2011-03-31
------------------
- Fix test to work with both 4.0 and 4.1.
[elro]
- Create base profile with no dependencies on the default Plone types to allow use in an
archetype free dexterity environment
[anthonyg]
1.5.3 - 2011-02-04
------------------
- Fix failing test. The 'comment_review_workflow' from plone.app.discussion is
now part of the core.
[timo]
1.5.2 - 2011-01-03
------------------
- Depend on ``Products.CMFPlone`` instead of ``Plone``.
[elro]
- Updated the placeful_workflow import step to depends on typeinfo,
as we need to make sure all types are available when importing the
local policies.
[deo]
1.5.1 - 2010-10-27
------------------
- Fixed chameleon incompatibility in `manage_workflow_policy_config.zpt`.
Renamed `select_workflows.zpt` to `select_workflows.dtml` and
`select_workflows.zpt` to `select_workflows.dtml`.
[swampmonkey]
1.5 - 2010-07-18
----------------
- No changes.
1.5b5 - 2010-06-13
------------------
- Avoid deprecation warnings under Zope 2.13.
[hannosch]
- Avoid using the deprecated five:implements directive.
[hannosch]
1.5b4 - 2010-06-03
------------------
- Remove references to Large Plone Folder from the included workflow policies.
[davisagli]
1.5b3 - 2010-05-01
------------------
- Use i18n_domain=cmfplacefulworkflow in profiles.zcml to be able to
translate the title and description of the profile. This refs
http://dev.plone.org/plone/ticket/9864
[vincentfretin]
1.5b1 - 2009-12-27
------------------
- Avoid showing the content type icons in the workflow mapping screens.
[hannosch]
- Small code cleanup and removal of unused imports.
[hannosch]
1.5a2 - 2009-11-18
------------------
- Make CMFPlacefulWorkflow tool an ImmutableId object, but not a UniqueObject.
The UniqueObject base class specifies that it is impossible to have any
other object with the same id (portal_placeful_workflow). This was breaking
in-ZODB GenericSetup snapshots, because the GenericSetup sub-folder for
placeful workflow policies happens to also be called
portal_placeful_workflow. Plone has a checkId script which disallows
shadowing tools anyway, so the UniqueObject base class is a nicety rather
than a necessity.
[optilude]
1.5a1 - 2009-11-18
------------------
- Removed createSnapshot() call from exportimport.txt test. It wasn't doing
anything useful, and caused a distracting test failure not related to
CMFPlacefulWorkflow.
- Fix #9359: CMFPlacefulWorkflow defines __implements__ with zope3 interface.
[encolpe]
- Remove use of the deprecated document_byline macro in the placeful
workflow configuration template.
[davisagli]
- Register configlet icon using icon_expr for forwards-compatibility
with Plone 4.
[davisagli]
- Copied safeEditProperty function from CMFPlone's migrations package,
as that is being removed.
[davisagli]
- Change imports from Globals to use canonical locations, for compatibility
with Zope 2.12.
[davisagli]
- Define wtool inside the prefs_workflow_policy_mapping template.
[hannosch]
- Removed settings of the portal_skins tool itself from skins.xml.
Specifically, allow_any was set to False, which bit me.
[maurits]
- Made worflow policies translatable in prefs_workflow_localpolicies_form.
[vincentfretin]
1.4.2 - 2009-03-05
------------------
- The `Cancel` button on the local workflow configuration screen was saving
data as much as the `Save` button. Now it actually cancels the operation.
[hannosch]
- Made sure you cannot set a workflow configuration on a non-folderish item
in the site root. The actual configuration would end up on the site root.
[hannosch]
- Change the local workflow configuration screen to not be shown for the
site root, even if you accidentally type in the wrong URL.
[hannosch]
1.4.1 (2009-01-17)
------------------
- Declare package dependencies and fixed deprecation warnings for use
of Globals.
[hannosch]
- Copied safeEditProperty from CMFPlone.migration_util to avoid a dependency.
[hannosch]
1.4.0 (2008-11-05)
------------------
- Port evolutions from the 1.3 maintenance branch (old style product).
[encolpe]
- Fixed bad version in metadata.xml (again)
[encolpe]
- Removed Favorite content type.
[hannosch]
- Fixed "ValueError: 'acquisition' is not a workflow ID" in
prefs_workflow_policy_mapping. Fix prepared by jhackel. Fixes
http://dev.plone.org/plone/ticket/8101
[maurits]
1.3.2 (2008-06-30)
------------------
- Fixed bad metadata.xml.
[encolpe]
- Fixed incorrect variable name in exception message.
[davisagli]