| 3837cce7 | 24-Jan-2017 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| ee7c189a | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
fixed tests for recent change to Text type |
| 9ebd2ed6 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
use prefix/postfix for wiki type. fixes #254
The filter mechanism is the same for text and wiki, but inheritance didn't make sense, so this was moved to a trait instead. |
| f9a2fce6 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
Decimal: fix empty checks for mutliple given values |
| dc7d8d08 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
do not match in pre/postfix of empty fields
Empty fields where pre and postfixed just as any other field. When searching for a string that matched a pre/postfix all empty fields where returned becau
do not match in pre/postfix of empty fields
Empty fields where pre and postfixed just as any other field. When searching for a string that matched a pre/postfix all empty fields where returned because the pre/postfix matched.
show more ...
|
| db9b8745 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
uses exact matches for Decimals
A LIKE operation makes no sense for numbers. This makes it possible for the type to define how a dynamic filter is to be interpreted. Decimals to an exact comparison
uses exact matches for Decimals
A LIKE operation makes no sense for numbers. This makes it possible for the type to define how a dynamic filter is to be interpreted. Decimals to an exact comparison now.
show more ...
|
| 9113d04a | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
fix width handling. closes #255 |
| f3d858ab | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
do not treat empty Decimal as 0. fixes #264 |
| 874a34e3 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
fixed min/max validation on Decimal. fixes #265 |
| a9fd81f9 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
use table header body and footer correctly |
| 8925ba29 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
allow summarize in lookups. fixes #262
Since the sums are not updated on saving, a successfull inline save now removes the sums until the page was reloaded. |
| 95eef580 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
simplified alignment handling |
| 9cda5805 | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
added alignment support for aggregation table. fixes #258 |
| b8cff1df | 24-Jan-2017 |
Andreas Gohr <gohr@cosmocode.de> |
add catch block that does nothing. fixes #260
PHP < 7.0 requires a catch block with a try. |
| 4508525a | 22-Jan-2017 |
Digitalin <digikatya@yahoo.fr> |
translation update |
| 95c419be | 03-Jan-2017 |
Michael Grosse <grosse@cosmocode.de> |
docs: add missing doc for new $QB parameter |
| af993d55 | 03-Jan-2017 |
Michael Grosse <grosse@cosmocode.de> |
fix: stop OR filters causing problems
The filters coming from syntax should be grouped together in a subgroup to that OR-filters cannot undo the filters on latest=1 etc.
Since we cannot know in the
fix: stop OR filters causing problems
The filters coming from syntax should be grouped together in a subgroup to that OR-filters cannot undo the filters on latest=1 etc.
Since we cannot know in the filter function whether there is already a subgroup for us to use or which to use, the solution was to give the correct subgroup to the filter function directly.
Instead of adding another parameter to the already long list of parameters for that function, I have chosen to give the QueryBuilderWhere a reference back to the original QueryBuilder.
show more ...
|
| 5d17398f | 03-Jan-2017 |
Michael Grosse <grosse@cosmocode.de> |
fix: fix broken cloud tags of multi-lookup columns
Since we group in the SQL query by tag, cloud tags are always single values. However if the column we are creating the cloud from, is actually a mu
fix: fix broken cloud tags of multi-lookup columns
Since we group in the SQL query by tag, cloud tags are always single values. However if the column we are creating the cloud from, is actually a multi-column then that single value is still in an array. But since that array can never contain more than 1 value we can simply take the first one.
The alternative of changing the type was considered but found not to be practical, because changing the type of a value/column is not intended. Recreating a new column and type for that value has been found to be impractical as well.
show more ...
|
| 5f5d3423 | 15-Dec-2016 |
Hideaki SAWADA <chuno@live.jp> |
translation update |
| a28d6152 | 08-Dec-2016 |
Andreas Gohr <gohr@cosmocode.de> |
correctly handle old revisions pre-schema creation. fixes #241
When looking at a page's old revsion (or diff) a now assigned schema may not have existed at the the time of the given revision. This c
correctly handle old revisions pre-schema creation. fixes #241
When looking at a page's old revsion (or diff) a now assigned schema may not have existed at the the time of the given revision. This caused a fatal error. Now such exceptions are ignored.
show more ...
|
| fbd1e8f8 | 08-Dec-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: make input fields wider again
This was introduced in 956594215d863a5a696a39f1928b7c5aef7a11d3 |
| e6ecc932 | 08-Dec-2016 |
Andreas Gohr <andi@splitbrain.org> |
Version upped |
| 54ced46b | 08-Dec-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Adjust test for fix in faa6f42c74c78a1384dced2b46950b2894cdb060
Display value of Pages is now no longer empty even when the title was missing. |
| 68b45d6f | 08-Dec-2016 |
Andreas Gohr <andi@splitbrain.org> |
fix for method comment |
| 57eed3ee | 07-Dec-2016 |
Michael Grosse <grosse@cosmocode.de> |
test: Add test for pseudo-diff-syntax |