An error occurred fetching the project authors.
- 31 Aug, 2017 1 commit
-
-
Ayush Tiwari authored
Move from SQLCatalog to ERP5Catalog as the default Catalog inside ERP5. The major difference is use of Products.ERP5Type.Core.Folder as Catalog base class. Significant changes: -Inherit from Catalog class from Products.ZSQLCatalog.SQLCatalog instead of copy-pasting the whole code again. -Add allowed_types for ERP5Catalog tool -Monkey patch some property setters and getters to maintain consistency -Update id and title for ERP5Catlog while class initialization -Set declarative securities and solve some inheritance conflicts -Add isRADContent for ERP5Catalog Class -Solve inheritence conflict for _setPropValue function in ERP5Catalog class -Add SQL Method portal_type in allowed_types for ERP5Catalog class -Override getCatalogMethodIds cause it uses global variable in SQLCatalog.Catalog -Redefine security declarations -Add functions for object_actions of Catalog portal_type in ERP5Catalog object -Add filter_dict attribute for compatibilty Also, - Update BusinessTemplate installation with updated filter_dict This removes the need to copy-patch or if-else on meta_type of catalog. Use dynamic migration while installing the catalog method objects for bt5. - Update tests according to changes in portal_catalog - Create FilterDict and Filter class which would be used to imitate the behaviour of filter_dict for Catalog.
-
- 23 Dec, 2016 3 commits
-
-
Vincent Pelletier authored
-
Vincent Pelletier authored
To prepare for moving user id to a different property. Mostly replacing getReference on Persons with Person_getUserId, and catalog searches with PAS API when it is meant to search for a user and not really a person by reference.
-
Vincent Pelletier authored
-
- 08 Dec, 2016 1 commit
-
-
Vincent Pelletier authored
-
- 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.
-
- 04 Sep, 2014 1 commit
-
-
Gabriel Monnerat authored
-
- 10 Mar, 2014 3 commits
-
-
Jérome Perrin authored
When a portal type acquire role, it should place the role definitions in the same local role group ids
-
Jérome Perrin authored
This reverts commit 1e90e4f8. missing commit message
-
Jérome Perrin authored
-
- 30 Jan, 2014 1 commit
-
-
- 23 May, 2013 1 commit
-
-
Jérome Perrin authored
-
- 04 Apr, 2013 1 commit
-
-
Jérome Perrin authored
We were not able to export and import back roles of a document when more than one local role group id was used.
-
- 13 Sep, 2012 1 commit
-
-
Ivan Tyagov authored
Remove not used proeprty.
-
- 12 Jul, 2012 1 commit
-
-
Ivan Tyagov authored
a new bt5 (erp5_security_uid_innodb_catalog) upon installation. Add all generic ZSQL methods to this new bt5 so projects can adjust only the minimum required.
-