| 797f0dfe | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
types now use mode and renderer to output values
current types are completely renderer agnostic by reusing default renderer methods |
| 54bbce88 | 15-Feb-2016 |
Michael Große <grosse@cosmocode.de> |
Adjust function name to align with the others |
| dbaaf815 | 15-Feb-2016 |
Michael Große <grosse@cosmocode.de> |
Display multivalues as concat. single values |
| 0234787d | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added Page type and use it for the %pageid% special column |
| 2249c4d2 | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added some default implementations into AbstractBasetype
good to have some very simple default when creating a new type |
| d930c197 | 15-Feb-2016 |
Michael Große <grosse@cosmocode.de> |
Correctly initialize $this->config |
| d3f94fb7 | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
use %pageid% instead of %pid%
to be closer to the old data plugin |
| 7f9cb794 | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
implemented limit/offset with full result set count
We always sleect the full result set, then skip and fetch only what we need, counting the full set. This gives us all the data we need for proper
implemented limit/offset with full result set count
We always sleect the full result set, then skip and fetch only what we need, counting the full set. This gives us all the data we need for proper paging (with jump to end or page numbers) and is the recommended way to do it in SQLite: http://sqlite.1065341.n5.nabble.com/SQL-CALC-FOUND-ROWS-td5169.html
show more ...
|
| 98c6f673 | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
more work on the search tests |
| 5b2d2a8c | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed getColName to contain the data_ prefix
Added a few more guarding exceptions. We want things to break early instead of having debugging headaches later |
| 9945e4d7 | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
do some actual testing for search
simple test for now |
| ab700c1e | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed type case in test |
| d1b04e89 | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
streamlined PageColumn handling
introduced a method that returns the full column name. It can always be called - on Column and PageColumn |
| 0561158f | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added support for selecting the PageID |
| b2ed727a | 15-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added execute() method to search |
| b04b8eef | 11-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
reset database in search tests, hopefully fixes flaky tests |
| e4579419 | 11-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
fixed saving/loading when only one value was stored in multival
Needs test adjustment |
| bd92cd68 | 11-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
use now as the timestamp to save new data |
| 0fe33e72 | 11-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
use one multivalue table per schema |
| 74461852 | 10-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
no array constants in older PHP versions |
| 5511bd5b | 10-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
began work on the syntax component to aggregate data
This copies over a lot of configuration functionality from the data plugin, but is still missing the functionality itself. |
| 7059e7e1 | 10-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
have a latest column on the data table
This makes it easier to query the most recent data without having to know the exact revision time stamp it was saved (it might be different across different ta
have a latest column on the data table
This makes it easier to query the most recent data without having to know the exact revision time stamp it was saved (it might be different across different tables)
show more ...
|
| e8e4f25a | 10-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
expected value comes first |
| b8fe6730 | 10-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
old php can't use list syntax in foreach |
| 838bda5a | 10-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
test in all php versions |