History log of /plugin/struct/types/Decimal.php (Results 1 – 24 of 24)
Revision Date Author Comments
# ba662a60 07-Apr-2025 Andreas Gohr <andi@splitbrain.org>

some automatic rector fixes


# 5e29103a 11-Dec-2023 annda <annda@users.noreply.github.com>

�� Automatic code style fixes


# 7fe2cdf2 13-Sep-2023 Andreas Gohr <andi@splitbrain.org>

apply #670 and manually cleanup afterwards

fixes some failing tests
uses sexplode over array_pad
reformats multiline arrays


# 7234bfb1 13-Sep-2023 splitbrain <splitbrain@users.noreply.github.com>

�� Automatic code style fixes


# da776bcd 18-Apr-2023 Anna Dabrowska <dabrowska@cosmocode.de>

Fix type errors with empty 'roundto' setting in decimals


# 460e822f 06-Apr-2023 Andreas Gohr <andi@splitbrain.org>

code style fixes


# df2cde25 14-Sep-2022 PhilippCo <philipp.cochems@gmail.com>

remove tab


# df519224 13-Sep-2022 Philipp Cochems <philipp.cochems@gmail.com>

fix format


# 521d4beb 13-Sep-2022 Philipp Cochems <philipp.cochems@gmail.com>

catch numbers higher/lower than available prefixes


# 51dec368 13-Sep-2022 Philipp Cochems <philipp.cochems@gmail.com>

add eng notation


# 0549dcc5 13-Jan-2022 Andreas Gohr <andi@splitbrain.org>

PHP code sniffer autofixes


# 748e747f 09-Apr-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Manual coding style fixes

Method and variable visibility, camel case method names. Some exclusions due to inheritance


# d6d97f60 09-Apr-2020 Anna Dabrowska <dabrowska@cosmocode.de>

Automatic coding style fixes


# f9a2fce6 24-Jan-2017 Andreas Gohr <gohr@cosmocode.de>

Decimal: fix empty checks for mutliple given values


# 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 ...


# 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


# 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 ...


# 23169abe 23-Aug-2016 Andreas Gohr <gohr@cosmocode.de>

Validation should happen on raw value

This just renames the parameter to make this more clear


# 8fd5dfa8 09-Aug-2016 Andreas Gohr <gohr@cosmocode.de>

Decimal type needs to type cast for order and compare #146


# ba766201 28-Apr-2016 Andreas Gohr <gohr@cosmocode.de>

Use DokuWiki new autoloader for class files

No longer do we need to register our own autoloader. Namespace had to be
vendor prefixed.


# 524b102e 06-Apr-2016 Andreas Gohr <gohr@cosmocode.de>

added prefix and postfix to Decimal type

this is useful to add currency symbols


# 965c6ba8 06-Apr-2016 Andreas Gohr <gohr@cosmocode.de>

better format configuration for Decimal type


# 399c73d3 05-Apr-2016 Andreas Gohr <gohr@cosmocode.de>

added Type Decimal #84