# HG changeset patch # User Sylvain Thénault <sylvain.thenault@logilab.fr> # Date 1256052227 -7200 # Tue Oct 20 17:23:47 2009 +0200 # Node ID 5a91d8db61a2949f623b8d06dfe857491e5ba68f # Parent c806a41eecf2f0936cbf1d4609e2f83232f626a7 take care not selecting published state from another workflow diff --git a/migration/1.7.0_Any.py b/migration/1.7.0_Any.py --- a/migration/1.7.0_Any.py +++ b/migration/1.7.0_Any.py @@ -4,19 +4,23 @@ # add BlogEntry workflow -bwf = add_workflow(_('default BlogEntry workflow'), 'BlogEntry') +if confirm('add blog entry workflow'): + bwf = add_workflow(_('default BlogEntry workflow'), 'BlogEntry') -draft = bwf.add_state(_('draft'), initial=True) -published = bwf.add_state(_('published')) + draft = bwf.add_state(_('draft'), initial=True) + published = bwf.add_state(_('published')) -publish = bwf.add_transition(_('publish'), draft, published, - ('managers',)) -checkpoint() + publish = bwf.add_transition(_('publish'), draft, published, + ('managers',)) + checkpoint() # set state to published for already existing blog entries blogentries = rql('Any B WHERE B is BlogEntry') -for blogentry in blogentries: - session.unsafe_execute('SET B in_state S WHERE S name "published", B eid %(b)s', {'b': blogentry[0]}) +for eid, in blogentries: + session.unsafe_execute('SET B in_state S WHERE S name "published", ' + 'S state_of WF, WF name "default BlogEntry workflow", ' + 'B eid %(b)s', + {'b': eid}, 'b') checkpoint()