4bc2843f | 04-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
saving lookups works |
65661ad0 | 04-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed renamed class in tests |
016f9024 | 03-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
test wildcard adding in Search |
c75f25cf | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
MultiCol match: empty array means empty filter |
aaaaf63c | 28-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Add test for empty $STRUCT...$ placeholders
See issue #124 |
017cf055 | 28-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Add test for $STRUCT...$ placeholder |
41d0641d | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
make DateFormatConverter properly escape stuff
Added a minimal test. More cases would probably be helpful |
e0216289 | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
properly parse width settings in aggregation table
makes sure only valid CSS values are supplied |
9613b5e3 | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added multivalue test for Text Type |
53528ecf | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
allow multicolumn filters #124
when referencing a multi value column through the $STRUCT.<column>$ filter placeholder, all found values are used for the comparison using an OR sub group.
To make th
allow multicolumn filters #124
when referencing a multi value column through the $STRUCT.<column>$ filter placeholder, all found values are used for the comparison using an OR sub group.
To make this work some changes had to be introduced. You can only reference _one_ column in a filter, not multiple. Anything before or after the column placeholder will be applied to each value in the multicolumn.
Types overrifding the filter() method need to make sure they handle arrays in $value correctly.
show more ...
|
4978faf1 | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added DateTime tests |
64454728 | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
test Date type |
84a4b714 | 26-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Revert "Add $TITLE$ placeholder for aggregations and tests"
This reverts commit 7249dd99c6b513e7a0e270e0532734a1bf838ae4.
As discussed in #133 the $TITLE$ place holder is no longer needed since tit
Revert "Add $TITLE$ placeholder for aggregations and tests"
This reverts commit 7249dd99c6b513e7a0e270e0532734a1bf838ae4.
As discussed in #133 the $TITLE$ place holder is no longer needed since title columns match against the pid as well. Since gathering the title data for the filter is actually performance relevant, it makes sense to remove it again.
show more ...
|
31dc7cc4 | 26-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Fix test-filter for %pageid% haveing no effect |
0a4b3a41 | 26-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Add test for %title% column
Issue #132 |
0dd23cef | 21-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
changed SchemaData to have options for output control
instead of having a whole bunch of paramters to the output functions. Introduces rawValue cleaning as a new option. |
fab65495 | 21-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
search in pageid as well as in title. fixes #130 |
7249dd99 | 20-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Add $TITLE$ placeholder for aggregations and tests |
7b243b8d | 20-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed title select when title is unknown, adds test |
1815561d | 20-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
adjusted tests for the comparator change
filter() now gets SQL comparators passed, this saves some repeated code in different implementations. |
e21befe4 | 20-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
add PID to SchemaData select() queries |
40bdf4fd | 19-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
drop the compare() function in favor of filter() |
0bb4c291 | 19-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Create explicit columns with types now needed |
bd41b7a3 | 19-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
method signature adjustments in mock objects |
8fefbb59 | 18-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
register a JSON function in sqlite
This way types could select multiple columns into a single return value.
It probably makes sense to register a similar function as a AGGREGATE function as well. |