| #
0549dcc5 |
| 13-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
PHP code sniffer autofixes
|
| #
d6d97f60 |
| 09-Apr-2020 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Automatic coding style fixes
|
| #
6822dd25 |
| 22-May-2018 |
Michael Große <grosse@cosmocode.de> |
fix: Export wiki field data in aggregation table CSV exports
Fixes #341
|
| #
b0002ceb |
| 02-Jan-2018 |
Randolf Rotta <rrotta@informatik.tu-cottbus.de> |
inherit Wiki type from LongText to reduce code duplication
|
| #
ef7146c1 |
| 26-Dec-2017 |
Randolf Rotta <rrotta@informatik.tu-cottbus.de> |
made size of textarea configurable
|
| #
3e7a5b3c |
| 13-Jun-2017 |
Michael Große <grosse@cosmocode.de> |
Refactor to use buildAttributes -> cleaner code
|
| #
ee983135 |
| 02-Jun-2017 |
Michael Große <grosse@cosmocode.de> |
Fix multiple inputs in one label: it's invalid
Multiple inputs within a single label in invalid HTML. This bug can not only occur in multi-fields but also in plugin-provided single fields which m
Fix multiple inputs in one label: it's invalid
Multiple inputs within a single label in invalid HTML. This bug can not only occur in multi-fields but also in plugin-provided single fields which may contain multiple input-fields which are then only combined by javascript.
Thus, we provide an id which every type can assign to the edit-field best suited. For multi-types this is usually the new-input-template.
Fixes #292
show more ...
|
| #
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.
|
| #
bf83580b |
| 22-Nov-2016 |
Michael Grosse <grosse@cosmocode.de> |
fix: keep leading whitespace in value of wiki-type
Fixes #223 and fixes SPR-712
|
| #
9d461ec6 |
| 24-Aug-2016 |
Andreas Gohr <andi@splitbrain.org> |
Merge pull request #166 from cosmocode/bug140
Always use raw values for editors
|
| #
c0230d2c |
| 24-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Always use raw values for editors
This is another attempt to fix #140. The valueEditor() and multiValueEditor() now always expect raw values to be passed. The Value class was adjusted accordingly. I
Always use raw values for editors
This is another attempt to fix #140. The valueEditor() and multiValueEditor() now always expect raw values to be passed. The Value class was adjusted accordingly. It now allows to set the raw value (which is what we get from POST). If done, the Value object is treated as a rawonly Value that will throw an exception when you try to access value or displayvalue.
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
|
| #
79d22ad4 |
| 27-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Clean values in multiValueEditor, not in valueEditor
Since rawValue expects a single value it may not be able to handle multiple concatinated values.
This caused an error for the pagetype in a mult
Clean values in multiValueEditor, not in valueEditor
Since rawValue expects a single value it may not be able to handle multiple concatinated values.
This caused an error for the pagetype in a multi value field with usetitles enabled.
show more ...
|
| #
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.
|
| #
f7b44d7d |
| 16-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added Wiki Type. implements #14
|