Referring to the Symfony 1.2 documentation, chapter 14 on admin generation, configuration in generator.yml, specification of filters:
The term "filter" appears both in plural form as well as in singular form, i.e. sometimes "filters" & "filter" at the same place in generator.yml.
-> (1) which is the right term to use, plural of singular? Taken from the doc:
Listing 14-5 - Default Generator Configuration:
config:
actions: ~
list: ~
filter: ~
form: ~
edit: ~
new: ~
or
Listing 14-23:
filters:
display: [article_id, author, created_at]
-> (2) or, at wich place is which form to be used? (I have remarked that filter configurations in generator.yml can occur on general level (its own section) as well within the "list" section?)
Listing 14-24 - Using a Partial Filter:
config:
list:
filters: [date, _state]
With my first 1.2b1 admin gen trials I couldn't figure out which form is correct (I'm not not yet a pro on SF, to come...). This means that there may be other problems with admin filters as well, however in any case there is this inconsistency in the documentation.