An error occurred fetching the project authors.
  1. 18 May, 2017 1 commit
  2. 05 Apr, 2017 1 commit
  3. 23 Dec, 2016 1 commit
  4. 28 Jan, 2016 1 commit
  5. 12 Jan, 2016 1 commit
  6. 10 Jun, 2015 1 commit
  7. 10 Mar, 2015 1 commit
  8. 08 Nov, 2014 1 commit
    • Kazuhiko Shiozaki's avatar
      use fulltext search in title and description. · d47df833
      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.
      d47df833
  9. 16 Oct, 2014 3 commits
  10. 04 Sep, 2014 1 commit
  11. 30 Jan, 2014 1 commit
  12. 28 Aug, 2013 2 commits
  13. 12 Apr, 2013 1 commit
    • Jérome Perrin's avatar
      CatalogTool: support sorting on a related key · 331fed02
      Jérome Perrin authored
      This approach consists in treating each keys from the default group (the
      one for sort on and select dict) as a left join if the key supports it, at
      column mapping level.
      
      Also update testERP5Catalog, the specification changed a bit.
      Before, using a related key in select_dict had the side effect of not selecting
      documents without related documents unless the key is explicitly passed in
      select_dict. Now all documents are always returned.
      331fed02
  14. 09 Apr, 2013 1 commit
  15. 26 Feb, 2013 1 commit
    • Aurel's avatar
      Implement cache of getInventory results · cf53db45
      Aurel authored
      Create a sql cache for getInventory call
      Remove full-inventory optimisation as it now useless
      Implement full-inventory feature directly into stock
      Make erp5_pdm depends on this optimisation
      Install optimisation for all unit tests
      cf53db45
  16. 25 Jan, 2013 1 commit
  17. 21 Jan, 2013 4 commits
  18. 12 Jul, 2012 1 commit
  19. 21 Jun, 2012 3 commits
  20. 11 May, 2012 1 commit
  21. 16 Apr, 2012 1 commit
  22. 17 Oct, 2011 2 commits
    • Julien Muchembled's avatar
      Simplify code by using some new Python syntax · 9cd33ca4
      Julien Muchembled authored
      - PEP 308: Conditional Expressions
      - PEP 341: Unified try/except/finally
      - PEP 343: The ‘with’ statement
      9cd33ca4
    • Julien Muchembled's avatar
      Drop support for Zope 2.8 · 48212534
      Julien Muchembled authored
      Checked following occurrences in comments:
      - "Python 2.[456]"
      - "Zope 2.[891]"
      - "BBB"
      - "BACK"
      
      Checked uses of:
      - email, hashlib, numpy & tarfile (modules)
      - ImportError
      - string.Template
      - suppress_events (parameter of _setObject)
      
      Excluded:
      - some forked modules (MailTemplates, PortalTransforms...)
      - some i18n compatibility code
      48212534
  23. 20 Sep, 2011 1 commit
  24. 18 Apr, 2011 1 commit
  25. 03 Feb, 2011 1 commit
  26. 01 Feb, 2011 1 commit
  27. 31 Jan, 2011 1 commit
  28. 14 Jan, 2011 2 commits
  29. 13 Jan, 2011 1 commit
  30. 12 Jan, 2011 1 commit