| 636a5173 | 02-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
forgot to switch call after switching parameters |
| 577b462b | 02-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
support * as wildcard column selection #121 |
| 8c4ee9be | 02-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
iterate over tables not headers in aggregation |
| cdd09a96 | 01-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
do various checks before editing and saving
ACLs, CSRF, page locking |
| 4731b875 | 01-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
first rough working version of the inline editor
lots of FIXMEs to fix. |
| 92e2080c | 01-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added way to get a single column from SchemaData |
| aa151376 | 29-Jul-2016 |
Michael Große <mic.grosse@posteo.de> |
Upped version |
| d4b5a17c | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added data attributes needed for the inline editor |
| 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 |
| b92072dd | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
let DateTime handle rev column on its own
This fixes filtering for %lastupdate% |
| e45a1451 | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
adjust for changes in master |
| 017cf055 | 28-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Add test for $STRUCT...$ placeholder |
| aec9051b | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
a $STRUCT.*$ filter doesn't need reference the same schemas
A filter may reference all schemas of the page the aggregation is on which are not necessarily the same schemas that are queried. |
| 41d0641d | 28-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
make DateFormatConverter properly escape stuff
Added a minimal test. More cases would probably be helpful |
| 7df82d6a | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
add the default to overridden constructor |
| 64cf7cc6 | 27-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Initialize DateType with dformat configuration
We're not using strftime in our Date and DateTime types because we want to be able to represent dates outside the unix timestamp range.
To reuse the s
Initialize DateType with dformat configuration
We're not using strftime in our Date and DateTime types because we want to be able to represent dates outside the unix timestamp range.
To reuse the strftime format string we have in DokuWiki it needs to be converted to a date() compatible format. The class added for that could ultimately be moved to a third party project.
show more ...
|
| 79d22ad4 | 27-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Clean values in multiValueEditor, not in valueEditor
Since rawValue expects a single value it may not be able to handle multiple concatinated values.
This caused an error for the pagetype in a mult
Clean values in multiValueEditor, not in valueEditor
Since rawValue expects a single value it may not be able to handle multiple concatinated values.
This caused an error for the pagetype in a multi value field with usetitles enabled.
show more ...
|
| 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 |
| cadfc3cc | 26-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
implement a %lastupdated% column #122 |
| 4a2883e0 | 26-Jul-2016 |
Andreas Gohr <gohr@cosmocode.de> |
introduced DateTime Type
This is similar to Date but also accepts a time. Only uses a Date picker, no time picker as we currently have none available. |