| 7fb68f9e | 05-Apr-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fix grave schema editing bug
Might be related to #82.
The SchemaBuilder expects input columns indexed by their colref number, but Schema->columns is indexed by sort. Thus each edit possibly juggled
fix grave schema editing bug
Might be related to #82.
The SchemaBuilder expects input columns indexed by their colref number, but Schema->columns is indexed by sort. Thus each edit possibly juggled field definitions around.
show more ...
|
| aee4116b | 05-Apr-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed summarize option. closes #83 |
| de07ec23 | 30-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed grouping in search |
| 9d580426 | 24-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
refacored tests to use StructTest as base class
this makes schema setup and data loading much easier and gets rid of a lot of duplicate code |
| f2e141a0 | 24-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
catch JSON error in importer |
| 7629557e | 24-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
the column array should start at 0 and be sorted correctly
For some reason we stored them in column ref order. This might break things that are not covered by tests but I hope not. |
| 59b668aa | 23-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
removed distinct feature from search
this was added for tag autocompletion but does not work as expected. should be implemented in tag type directly |
| b2d67e7d | 23-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
check for page existance in search. fixes #77
This requires an uptodate sqlite plugin |
| c73f0ee4 | 23-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fix error when an aggregation tries to select a nonexisting column |
| bd363da9 | 23-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
print stacktrace on allow debug |
| 16b7d914 | 22-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
adjust cachung if an aggregation depends on dynamic values #75 |
| d19ba4b1 | 22-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed struct filter vars and added tests #75 |
| 45560cc7 | 22-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
JSON_PRETTY_PRINT is not available in PHP 5.3 |
| 8ddf87af | 22-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added Schema Import #32
This also adds a nice interface for that to the schema editor |
| d486d6d7 | 21-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
allow exposting struct schemas as JSON #32 |
| 5625b985 | 21-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
support for dynamic filter place holders #75
tests for struct stuff still missing no cache handling, yet |
| 0215a637 | 21-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
avoid errors when no schema or column is given |
| 0173e75d | 21-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
handle page moves #72 |
| 2350b48e | 17-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added hidden functionality #15 |
| 9914e87e | 17-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
allow regexps for page assignments. #70 |
| 08e7b568 | 16-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
moved pseudo syntax generation to SchemaData |
| 9e7dc74c | 16-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
fixed SQL when only multi values are selected. related to #64 |
| 806eec82 | 16-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
allow validation to modify the value before saving |
| 32270510 | 15-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
correctly handle multi val columns. fixes #64
now group_concat is used |
| 29394e6c | 15-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
no special handling for multi vals on sorting. fixes #61
since we have a copy of the first value now, we can simply sort by the single value column. This will only work for data saved from now on. |