An error occurred fetching the project authors.
- 05 May, 2020 1 commit
-
-
Xiaowu Zhang authored
Consider that view is the default is wrong, we should invoke call on the object, this change fix listboxes used on frontpage of a website.
-
- 17 Jul, 2019 1 commit
-
-
Romain Courteaud authored
Store a new Selection everytime a Listbox content is calculated. This will allow actions checking the selection params to get expected results. Propagate selection_name in dialog if the dialog doesn't contain a listbox itself.
-
- 26 Oct, 2018 1 commit
-
-
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
-
- 27 Oct, 2017 1 commit
-
-
Vincent Pelletier authored
-
- 26 Sep, 2017 2 commits
-
-
Vincent Pelletier authored
To generate (and execute) SQL, use catalog tool.
-
Vincent Pelletier authored
-
- 25 Apr, 2017 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 16 Jan, 2017 1 commit
-
-
iv authored
-
- 23 Dec, 2016 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 15 Nov, 2016 1 commit
-
-
Julien Muchembled authored
Apart from some code cleanup, it can override catalog_index.
-
- 04 Nov, 2016 1 commit
-
-
Arnaud Fontaine authored
Before fixing this bug, 'listbox_previousPage:method' input button was submitted but with no value (''). However, this was not handled by the backward-compatibility code and thus next/previous page buttons would not work properly if erp5_xhtml_style is not updated.
-
- 03 Nov, 2016 1 commit
-
-
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.
-
- 19 Oct, 2016 1 commit
-
-
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.
-
- 12 Jan, 2016 2 commits
-
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
Also methods without a security declaration should not be added.
-
- 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
-
- 31 Jan, 2014 1 commit
-
-
Kazuhiko Shiozaki authored
so that we can call it from restricted environment.
-
- 30 Jan, 2014 1 commit
-
-
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.
-
- 14 Nov, 2013 1 commit
-
-
Kazuhiko Shiozaki authored
fixup! SelectionTool: Changing storage or memcached settings were not taken into effect until restart.
-
- 11 Nov, 2013 1 commit
-
-
Arnaud Fontaine authored
-
- 10 Sep, 2013 1 commit
-
-
Arnaud Fontaine authored
Selection: Do not set Selections if the new and store name differs instead of raising AssertionError.
-
- 21 Jun, 2013 1 commit
-
-
Yusei Tahara authored
-
- 05 Apr, 2013 1 commit
-
-
Julien Muchembled authored
-
- 18 Jan, 2013 1 commit
-
-
Jérome Perrin authored
-
- 17 Dec, 2012 1 commit
-
-
Vincent Pelletier authored
Allows getting current selection's MD5 even outside ListBox's renderer. Signed-off-by: Julien Muchembled <jm@nexedi.com>
-
- 13 Dec, 2012 3 commits
-
-
Vincent Pelletier authored
This reverts commit 1f630eaa. One bug left, which uncovered shortcommings in 4 tests: - 3 tests duplicate checksum computation code - 1 test relies on previous tests not leaving garbage
-
Vincent Pelletier authored
Allows getting current selection's MD5 even outside ListBox's renderer. try 2: Now without NameError
-
Sebastien Robin authored
This reverts commit 4d5df6e7. Revert done due to ERP5-MASTER : 3506 Tests, 174 Errors, 18 Failures
-
- 12 Dec, 2012 1 commit
-
-
Vincent Pelletier authored
Allows getting current selection's MD5 even outside ListBox's renderer.
-
- 17 Oct, 2011 1 commit
-
-
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
-
- 07 May, 2011 1 commit
-
-
Julien Muchembled authored
-
- 28 Apr, 2011 1 commit
-
-
Ivan Tyagov authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45718 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 03 Jan, 2011 1 commit
-
-
Julien Muchembled authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41940 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 19 Nov, 2010 1 commit
-
-
Kazuhiko Shiozaki authored
* omit '/view'. * omit ignore_layout:int=0. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40428 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 21 Oct, 2010 1 commit
-
-
Kazuhiko Shiozaki authored
git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39452 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 14 Sep, 2010 1 commit
-
-
Julien Muchembled authored
getTransactionalVariable has always been implemented to return a global cache object (1 per thread): old implementation used the given context only to have access to the portal. So we enforce this with a warning to make sure people don't expect retrieving 1 cache object per given context. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38366 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 10 Sep, 2010 1 commit
-
-
Kazuhiko Shiozaki authored
* specify path in setCookie() to avoid sending several duplicated cookies. * use the normal storage if anonymous storage is not specified. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38251 20353a03-c40f-0410-a6d1-a30d3c3de9de
-
- 09 Sep, 2010 1 commit
-
-
Kazuhiko Shiozaki authored
support unique selection for unique anonymous user using a different storage that should be volatile one like memcached. this feature is disabled by default. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38249 20353a03-c40f-0410-a6d1-a30d3c3de9de
-