An error occurred fetching the project authors.
- 12 Jan, 2011 1 commit
-
-
Julien Muchembled authored
This fixes several unit tests (with not executable activities) where an object is created and deleted in the same transaction, whereas an interaction (ex: document_security_interaction_workflow) creates activities for this object just before committing. The 'flush' happens earlier. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42281 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 12 Oct, 2010 1 commit
-
-
Yoshinori Okuji authored
Add a special way to disable interactions for temporary documents, as this pattern is frequently used in many ERP5 applications, and it is a big bottleneck in the performance. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39043 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 10 Mar, 2010 1 commit
-
-
Nicolas Dumazet authored
What's the point? Mostly cleaning up pyflakes output: now, running it on those files does not give anymore cluttered output, but raises (almost) only valid human errors. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33558 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 26 Oct, 2009 1 commit
-
-
Leonardo Rochael Almeida authored
Create a new ERP5Type/Workflow.py file to house all changes needed as we progressively remove DCWorkflow dependencies. For now it contains the non-patches part of patches/DCWorkflow.py and a conditional replacement for addWorkflowFactory() function that disappeared on CMF 2. Adjust other import locations to point to this function. Adjust ERP5Type product initialization to register Zope2-style factories for workflows registered with the substitute addWorkflowFactory when on CMF2 (approved by jm and jerome) git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30010 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 21 Oct, 2009 1 commit
-
-
Leonardo Rochael Almeida authored
before-commit-hook API for the transaction object changed. Temporarily patch transaction on Zope 2.8 with the new API and adapt all uses (approved by jm) git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@29871 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 08 Oct, 2009 1 commit
-
-
Leonardo Rochael Almeida authored
Concentrate all imports of addWorkflowFactory to a location under our control. For CMF 2.x we will emulate this function by creating actual Zope2 Factories for our workflows. git-svn-id: https://svn.erp5.org/repos/public/erp5/sandbox/portal_types@29477 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 07 Oct, 2009 1 commit
-
-
Leonardo Rochael Almeida authored
On the way to Zope 2.12, Reform imports, specially from Globals (replacing it with Products.ERP5Type.Globals on the products that depend on ERP5Type), convert Interface uses to zope.interfaces, and remove CMFMailIn references with blessings from Jerome. git-svn-id: https://svn.erp5.org/repos/public/erp5/sandbox/portal_types@29459 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 12 May, 2009 2 commits
-
-
Nicolas Delaby authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26943 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Jérome Perrin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26928 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 15 Oct, 2008 2 commits
-
-
Nicolas Delaby authored
Add a test for this expected behaviour git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24192 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Nicolas Delaby authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24190 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 14 Oct, 2008 1 commit
-
-
Nicolas Delaby authored
this Executing Type allow to execute a interaction script at the end of transaction git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24180 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 11 Apr, 2008 1 commit
-
-
Vincent Pelletier authored
Be consistent with CMFActivity: use unrestrictedTraverse to get script's context. Security checks will still happen when script is executed. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@20440 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 15 Nov, 2007 1 commit
-
-
Jean-Paul Smets authored
This megapatch changes the way accessors are generated. Instead of generating all accessors for each portal type, we only generate tuples which are put in a kind of tuple cache. The idea is to minimise the number of objects which are created and use objects which are as small as possible. Then, the next time aq_dynamic is invoked, we dynamically create a new accessor instance based on the parameters provided in the tuple. This way, it is possible to reduce the memory footprint of ERP5 by 200 MB at least and create only those accessors which are needed. In addition, accessors are now generated per portal_type and per class. This way, if the class of a portal type changes in a system, different accessors are generated and there is no risk of falling into a problem of "first argument of method XXX must be of type YYY". The downside is currently a possible speed decrease of 2-3%. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@17606 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 31 Aug, 2007 1 commit
-
-
Jean-Paul Smets authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15978 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 27 Aug, 2007 1 commit
-
-
Jean-Paul Smets authored
New WorkflowMethod implementation. This new implementation solves most issues which existed previously and related to multiple workflows for a single workflow method ID. It should also be faster but will require some more work so that changes in workflow definition are reflected automatically in workflow methods registration. Added support in interaction workflows for once per transaction execution and regular expressions in trigger method IDs. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15825 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 02 Apr, 2007 1 commit
-
-
Jean-Paul Smets authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13852 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 24 Mar, 2006 1 commit
-
-
Yoshinori Okuji authored
Repare broken image. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6277 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 23 Nov, 2005 1 commit
-
-
Romain Courteaud authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4392 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 03 Nov, 2005 1 commit
-
-
Jérome Perrin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4209 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 15 Oct, 2005 2 commits
-
-
Jérome Perrin authored
do not catch ObjectMoved git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4034 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Jérome Perrin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4033 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 12 Jul, 2005 1 commit
-
-
Romain Courteaud authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3450 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 14 Mar, 2005 1 commit
-
-
Romain Courteaud authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2690 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 11 Mar, 2005 1 commit
-
-
Romain Courteaud authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2675 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 10 Mar, 2005 1 commit
-
-
Sebastien Robin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2672 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 17 Feb, 2005 1 commit
-
-
Sebastien Robin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2494 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 14 Feb, 2005 1 commit
-
-
Sebastien Robin authored
it must be interesting to have all keywords used to call the workflow method, so for example we can write a script wich can detect that we have called edit with the keyword title git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2468 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 31 Jan, 2005 1 commit
-
-
Jean-Paul Smets authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2357 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 10 Jan, 2005 1 commit
-
-
Alexandre Boeglin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2184 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 29 Nov, 2004 1 commit
-
-
Alexandre Boeglin authored
Redefines the DCWorkflow "_changeStateOf" method. As InteractionWorkflow is a stateless workflow, this should just do nothing. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1936 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 15 Oct, 2004 1 commit
-
-
Sebastien Robin authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1857 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 16 Aug, 2004 1 commit
-
-
Jean-Paul Smets authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1356 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 13 Jul, 2004 1 commit
-
-
Jean-Paul Smets authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1182 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 10 Dec, 2002 1 commit
-
-
Jean-Paul Smets authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2 20353a03-c40f-0410-a6d1-a30d3c3de9de
-