An error occurred fetching the project authors.
- 02 Apr, 2024 5 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
- 19 Dec, 2022 1 commit
-
-
Jérome Perrin authored
The add-hoc assertin filter: -- from typing import List import lib2to3 from lib2to3.fixer_base import BaseFix from lib2to3.fixer_util import Comma, Name class FixAssertIn(BaseFix): PATTERN = """ power< any+ trailer< '.' meth=("assertTrue" | "assertFalse")> trailer< '(' comparison< (needle=any ( comp_op<'not' 'in'> | 'in' ) haystack=any) > ')' > > """ def transform(self, node: lib2to3.pytree.Node, results: List[lib2to3.pytree.Base]): needle = results['needle'] haystack = results['haystack'] meth = results["meth"][0] method_map = {True: 'assertIn', False: 'assertNotIn'} method_in = meth.value == 'assertTrue' if 'not' in str(needle.parent.children[1]): method_in = not method_in meth.replace(Name(method_map[method_in], prefix=meth.prefix)) needle.parent.children = [needle, Comma(), haystack]
-
- 04 Nov, 2022 1 commit
-
-
Vincent Pelletier authored
This reverts commit 035d099a. Installing BTs which do not come from produt/ERP5/bootstrap breaks site creation, except in unit tests. This commit is very desirable, but not ready, so unfortunately I have to revert it.
-
- 05 Oct, 2022 1 commit
-
-
Vincent Pelletier authored
So every new instance is able to use self-contained oauh2 authentication. In turn, this triggers atomated migration of a few portal types, which cause the coding style tests to fail. So commit these as well.
-
- 27 May, 2020 1 commit
-
-
Arnaud Fontaine authored
-
- 30 Sep, 2019 1 commit
-
-
Nicolas Wavrant authored
-
- 31 Aug, 2017 1 commit
-
-
Vincent Pelletier authored
follow_up/1 is an invalid relation. follow_up/project_module/1 is a valid relation.
-
- 10 Mar, 2015 1 commit
-
-
Gabriel Monnerat authored
-
- 08 Nov, 2014 1 commit
-
-
Kazuhiko Shiozaki authored
* to quickly setup catalog_full_text table, you can use the following SQL. REPLACE INTO catalog_full_text SELECT uid, title, description FROM catalog; * non fulltext queries like '=abc', '>abc', '%abc%' are supported. * now erp5_full_text_mroonga_catalog is used for unit tests thus I recommend using it instead of erp5_full_text_myisam_catalog. * to migrate existing MyISAM full_text table into Mroonga, you can use the following SQL. ALTER TABLE full_text DROP KEY SearchableText, ENGINE = mroonga, ADD FULLTEXT KEY SearchableText (`SearchableText`) COMMENT 'parser "TokenBigramSplitSymbolAlpha"'; * fulltext search score is no longer provided as (column_name) but now provided as (column_name)__score__. * (category)_title, like source_title, related keys are automatically generated. (category)_description keys as well.
-
- 16 Oct, 2014 1 commit
-
-
Julien Muchembled authored
-
- 04 Sep, 2014 1 commit
-
-
Gabriel Monnerat authored
-
- 24 Mar, 2014 1 commit
-
-
Julien Muchembled authored
This fixes many different bugs, like random Unauthorized errors when a knowledge pad is deleted. When an object is created, calling immediateReindexObject is only a performance coding crime, which should be negligible since pads are objects that are not created often. Previous implementation was certainly even less scalable due to the many extra requests done to wait that new pads are indexed. If immediateReindexObject is too slow, a distributed cache could be used instead. This is not trivial and overkill for the moment. It would be better if we didn't have to rely on the catalog. IOW, data could have been organized differently so that in ZODB, pads are grouped in containers, 1 per user.
-
- 30 Jan, 2014 1 commit
-
-
- 29 May, 2013 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 05 Apr, 2013 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 15 May, 2012 1 commit
-
-
Julien Muchembled authored
This is a followup to commit 8995b645 ("always start transactions with begin() and make tic() commit automatically"): there is now no need to use self.stepTic() instead of self.tic()
-
- 11 May, 2012 1 commit
-
-
Julien Muchembled authored
-
- 13 Dec, 2011 1 commit
-
-
Ivan Tyagov authored
-
- 13 Jun, 2011 2 commits
-
-
Ivan Tyagov authored
-
Ivan Tyagov authored
based search accordingly.
-
- 22 Mar, 2011 2 commits
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44496 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44493 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 21 Mar, 2011 1 commit
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44453 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 15 Mar, 2011 1 commit
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44273 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 14 Mar, 2011 2 commits
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44246 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44237 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 08 Mar, 2011 2 commits
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44032 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44028 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 07 Mar, 2011 3 commits
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44022 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44012 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
Merge testKM & testKMGadget (move away from erp5_km). Clean up and use MixIn. Add 'No ZODB' search test section (XXX). git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44000 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 17 Feb, 2011 2 commits
-
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@43452 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@43415 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 24 Jan, 2011 2 commits
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42620 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42617 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 07 Jan, 2011 1 commit
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42109 20353a03-c40f-0410-a6d1-a30d3c3de9de
-