An error occurred fetching the project authors.
  1. 05 May, 2020 1 commit
  2. 17 Jul, 2019 1 commit
  3. 26 Oct, 2018 1 commit
    • Georgios Dagkakis's avatar
      SelectionTool/Listbox: Fix in calculating the start of last page in selection · 405ee70e
      Georgios Dagkakis authored
      as the comment (which is removed now) said:
      
      ```
              XXX: This method is broken, since "total_size" field is not
              present in the listbox rendering any longer. It should be
              removed.
      ```
      
      Also:
      - make sure that Listbox always knows how many lines are to be displayed.
      - add testPagerWithCustomListMethod in listbox_zuite of erp5_ui_test,
      which checks that listbox jumping to previous/next/first/last works correctly
      for a list method that returns only the elements that the listbox is to render.
      
      
      /reviewed-on nexedi/erp5!776
      405ee70e
  4. 27 Oct, 2017 1 commit
  5. 26 Sep, 2017 2 commits
  6. 25 Apr, 2017 1 commit
  7. 16 Jan, 2017 1 commit
  8. 23 Dec, 2016 1 commit
  9. 15 Nov, 2016 1 commit
  10. 04 Nov, 2016 1 commit
  11. 03 Nov, 2016 1 commit
    • Julien Muchembled's avatar
      listbox: sorting by CAST type (float) · de972081
      Julien Muchembled authored
      Only 'float' supported for the moment. This should cover the case of integers.
      
      Example of 'Sortable Columns' value in a ListBox:
      
        id | float
        title |
      
      Since there's a fallback to 'Searchable Columns' when 'Sortable Columns' is
      empty, the cast type can also be specified there, in order to avoid duplication.
      de972081
  12. 19 Oct, 2016 1 commit
    • Arnaud Fontaine's avatar
      ListBox: Navigation methods should not be created when rendering ListBox (#20161014-741678). · 6fd21826
      Arnaud Fontaine authored
      These methods were generated when rendering the ListBox and with the id
      of the ListBox in their name. However, a customer reported the following
      problem on Accounting Periods ListBox:
      
        1. Display Accounting Period ListBox on ZEO-1.
             => The ListBox will be rendered and 'listbox_period_list_*' methods will be generated on ZEO-1.
        2.  Click on 'Next Page' button and the user is redirect to ZEO-2 where the ListBox has never been generated.
             => The method does not exist yet and thus a 404 error is raised.
      
      Instead of having one method per ListBox ID, only one is now created (eg
      listbox_setPage() for SelectionTool.setPage()) at Zope startup and the
      ListBox ID previously defined in the method name is now defined in the
      value attributes of the buttons.
      6fd21826
  13. 12 Jan, 2016 2 commits
  14. 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
  15. 16 Oct, 2014 1 commit
  16. 04 Sep, 2014 1 commit
  17. 31 Jan, 2014 1 commit
  18. 30 Jan, 2014 1 commit
    • Kazuhiko Shiozaki's avatar
      rewrite anonymous support in selection. · bd67acb3
      Kazuhiko Shiozaki authored
      * now Selection for anonymous is stored per its content and its key is embedded in ListBox rendering.
      * we no longer provide cookie to each anonymous user.
      * thus same URL (i.e. same parameter) for any anonymous user should have the same result.
      * Selection storage for anonymous can be still different from the storage for the normal users.
      bd67acb3
  19. 14 Nov, 2013 1 commit
  20. 11 Nov, 2013 1 commit
  21. 10 Sep, 2013 1 commit
  22. 21 Jun, 2013 1 commit
  23. 05 Apr, 2013 1 commit
  24. 18 Jan, 2013 1 commit
  25. 17 Dec, 2012 1 commit
  26. 13 Dec, 2012 3 commits
  27. 12 Dec, 2012 1 commit
  28. 17 Oct, 2011 1 commit
    • 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
  29. 07 May, 2011 1 commit
  30. 28 Apr, 2011 1 commit
  31. 03 Jan, 2011 1 commit
  32. 19 Nov, 2010 1 commit
  33. 21 Oct, 2010 1 commit
  34. 14 Sep, 2010 1 commit
  35. 10 Sep, 2010 1 commit
  36. 09 Sep, 2010 1 commit