- 06 Jun, 2013 3 commits
-
-
Sebastien Robin authored
-
Sebastien Robin authored
-
Sebastien Robin authored
-
- 05 Jun, 2013 2 commits
-
-
Kazuhiko Shiozaki authored
before, user's input is completely ignored and calculated good values are automatically set. and the commit fc54fbaa somehow tried to respect user's source input, but it caused worse result for incoming case. so this commit reverts fc54fbaa and set source and destination just as user's input if not empty.
-
Arnaud Fontaine authored
When starting a node, ERP5Site.__of__ calls ComponentTool.reset(), which was never synchronised so it returned True (without generating a new cookie at its level) and causing synchronizeDynamicModules to be called with force=True. This generated a new cookie and leading to dynamic classes being meaninglessly regenerated on all nodes. Instead, modify ComponentTool.reset() behavior so it *always* reset Portal Type classes when Components are reset (as it should have always been as the class inheritance may have been modified) and force regeneration of Portal Type classes in this method if reset is True. Signed-off-by: Vincent Pelletier <vincent@nexedi.com>
-
- 04 Jun, 2013 6 commits
-
-
Julien Muchembled authored
-
Vincent Pelletier authored
-
Vincent Pelletier authored
When a document gets rows inserted in category table while there was none before (typically: first document indexation), it may trigger IntegrityError: (1062, "Duplicate entry '...' for key 'PRIMARY'") because in the DELETE..INSERT pattern, DELETE finds no matching rows and does not gap-lock (because we enable innodb_locks_unsafe_for_binlog), then the second INSERT happening, chronologically speaking, waits for the transaction of the first to e committed, and on commit it causes such duplicate key error. A transient visible effect of this change is that if both competing indexations see a different document state (because document got modified in some 3rd transaction), the union of the resulting set of rows will be visible until the reindexation which must have been triggered by the 3rd transaction gets executed, at which point only the latest set will be visible. A similar issue exists before this change, with stricter conditions: it needs the intersection of both sets to be empty, because a non-empty intersection causes the duplicate key error solved here. This change has been measured to improve scalability of an invoice building test case (naturally triggering indexations) starting from ~12 activity nodes: 8 nodes: +1.4% invoices/hour 12 nodes: +9.5% invoices/hour 16 nodes: +12.3% invoices/hour (values are the difference between DELETE..INSERT and DELETE..REPLACE)
-
Julien Muchembled authored
asSQLExpression() failed when executed several times on the same instance, because too much code was skipped when 'column_map' is cached.
-
Vincent Pelletier authored
-
Julien Muchembled authored
-
- 03 Jun, 2013 1 commit
-
-
Vincent Pelletier authored
Avoid getting the list twice, follow coding style, explicitly access portal methods on portal.
-
- 31 May, 2013 1 commit
-
-
Gabriel Monnerat authored
Remove condition to test if the event path destination predicate applies for this destination. On this this case, we can trust on the previous selection using the domain
-
- 30 May, 2013 1 commit
-
-
Julien Muchembled authored
-
- 29 May, 2013 3 commits
-
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
call getObject() once explicitly to reduce number of calls.
-
Kazuhiko Shiozaki authored
this code was working just by chance because active_knowledge_pad is a brain, not an ERP5 object.
-
- 28 May, 2013 2 commits
-
-
Jérome Perrin authored
Revert "fix undefined variables" This reverts commit 77a53809. Revert "Listbox: calculate a mapping uid -> object once" This reverts commit 84029c01. Revert "fix list method returning duplicate uids" This reverts commit 386b0e6b. Revert "test for dialog listbox with editable fields" This reverts commit e046d8f5.
-
Jérome Perrin authored
-
- 27 May, 2013 5 commits
-
-
Jérome Perrin authored
Instead of looping through the list each time. Also check that the list method does not return duplicate uids.
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
This cache is used by AccountingTransactionLine_getNodeItemList
-
- 24 May, 2013 4 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
It is useless to clear the cache in activities, because this would only work when using only one zope instance. Instead, clear the cache in the test for now.
-
Julien Muchembled authored
Also do not hardcode 'business_process_module'.
-
Julien Muchembled authored
>>> self.closure_cache[business_link] = new_business_process was done after 'business_link' was overridden by the for loop.
-
- 23 May, 2013 6 commits
-
-
Julien Muchembled authored
This also the following line in getBusinessLinkClosure(): if simulation_path.startswith(path): For example, '/erp5/portal_simulation/1/10' should not match '/erp5/portal_simulation/1/1'
-
Jérome Perrin authored
amendments to dd69a61c, unsubcribe / subscribe instead of changing alarm node
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
- 22 May, 2013 2 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
mistakenly removed in a8b2267c
-
- 21 May, 2013 4 commits
-
-
Kazuhiko Shiozaki authored
With this change, code like the following will use much less memory. for i in portal_catalog(...): i.activate().method() Signed-off-by: Vincent Pelletier <vincent@nexedi.com>
-
Kazuhiko Shiozaki authored
so that we can register activity by path from restricted environment. also set default parameters just same as ActiveObject.activate().
-
Kazuhiko Shiozaki authored
so that we can call ActivityTool.activateObject() with not only by object but also by it's path. Signed-off-by: Vincent Pelletier <vincent@nexedi.com>
-
Jérome Perrin authored
-