b6c8d1e9 | 24-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed last tests, removed old validator |
93ca6f4f | 23-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
more Validator refactoring |
2316305e | 15-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
test translation feature |
d6177a87 | 15-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
implement rendering via sub type in Dropdown |
45313413 | 15-Aug-2016 |
Michael Grosse <grosse@cosmocode.de> |
Partly reverting 12fe9b2c - export user again
We need the user to see if there were local changes since the last sync |
3eadf179 | 15-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fix displayValue for looked up type, more tests |
f9365ee1 | 15-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed constructor signature |
6f023786 | 15-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
first test for new Dropdown features |
5bb566a5 | 15-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
adjusted tests for renamed aliases
see bab5234055a4636e3f8c65e63b104df62d08601a |
12fe9b2c | 15-Aug-2016 |
Michael Grosse <grosse@cosmocode.de> |
Do not export the user either |
04476c46 | 11-Aug-2016 |
Michael Grosse <grosse@cosmocode.de> |
Fix tests |
2dd6aed5 | 11-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added missing phpunit headers |
6047d2b8 | 11-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
allow multiple sorts on one line |
4e7c197c | 11-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fix config parsing of multiple schemas |
70d1dea6 | 10-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed references to old Integer type |
328db41b | 10-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
removed Integer type
Instead the more flexible Decimal type (with roundto:0) can be used. |
8a701f07 | 09-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added missing schema file |
694968d6 | 09-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
when Page uses titles, sorting should use title #146 |
8fd5dfa8 | 09-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Decimal type needs to type cast for order and compare #146 |
add73e0a | 09-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
make sure pages are assigned in tests |
daf34b99 | 09-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed tests |
e336703d | 08-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
renamed tests |
94c9aa4c | 08-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
renamed SchemaData and SchemaLookupData
This is to reflect that they no longer inherit from Schema |
ea9843dc | 08-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fix all the tests for the recent change regarding SchemaData
I'm not to happy with the SchemaDataNoDB class and its use SchemaDataSQL.test - it seems hacky, but works for now. |
f411d872 | 08-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
refactor SchemaData into AccessTable with factory
first part of the refactoring for the SchemaData and SchemaLookupData classes. Both now inherit from AccessTable which provides common methods and t
refactor SchemaData into AccessTable with factory
first part of the refactoring for the SchemaData and SchemaLookupData classes. Both now inherit from AccessTable which provides common methods and two factory methods to automatically create the correct class depending on the schema.
Both classes no longer inherit from Schema. Instead they contain a Schema as a member variable. This makes it possible to initialize them with an existing schema (which is required for the factory methods).
The flow is now like this:
1: init a schema (read info from the database) 2: look at the schema to figure out if it's a lookup or not 3: initialize the right Data object with the schema
show more ...
|