Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
bd9e62b0
Commit
bd9e62b0
authored
Nov 23, 2017
by
Carsten Rose
Browse files
New Version: 0.25.5
parent
8b892ef1
Changes
9
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
bd9e62b0
...
...
@@ -36,6 +36,17 @@ Features
Bug Fixes
^^^^^^^^^
Version 0.25.5
--------------
Date: 23.11.17
Bug Fixes
^^^^^^^^^
*
#4771: Workaround which switches off updates to SELECT lists, if they are part of a Multi-FE-Row.
Version 0.25.4
--------------
...
...
doc/NewVersion.md
View file @
bd9e62b0
...
...
@@ -48,8 +48,8 @@ Neue Versionsnummer
6)
**New Tag**
:
git tag v0.25.
4
git push -u origin v0.25.
4
git tag v0.25.
5
git push -u origin v0.25.
5
7) PhpStorm:
**Sync**
all files to VM qfq.
...
...
extension/Documentation/Release.rst
View file @
bd9e62b0
...
...
@@ -36,6 +36,17 @@ Features
Bug Fixes
^^^^^^^^^
Version 0.25.5
--------------
Date: 23.11.17
Bug Fixes
^^^^^^^^^
* #4771: Workaround which switches off updates to SELECT lists, if they are part of a Multi-FE-Row.
Version 0.25.4
--------------
...
...
extension/Documentation/Settings.cfg
View file @
bd9e62b0
...
...
@@ -3,7 +3,7 @@
project = QFQ - Quick Form Query
version = 0.25
release = 0.25.
4
release = 0.25.
5
t3author = Carsten Rose
copyright = since 2017 by the author
...
...
extension/Documentation/_make/conf.py
View file @
bd9e62b0
...
...
@@ -59,7 +59,7 @@ copyright = u'2017, Carsten Rose'
# The short X.Y version.
version
=
'0.25'
# The full version, including alpha/beta/rc tags.
release
=
'0.25.
4
'
release
=
'0.25.
5
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
extension/RELEASE.txt
View file @
bd9e62b0
...
...
@@ -36,6 +36,17 @@ Features
Bug Fixes
^^^^^^^^^
Version 0.25.5
--------------
Date: 23.11.17
Bug Fixes
^^^^^^^^^
* #4771: Workaround which switches off updates to SELECT lists, if they are part of a Multi-FE-Row.
Version 0.25.4
--------------
...
...
extension/ext_emconf.php
View file @
bd9e62b0
...
...
@@ -10,6 +10,6 @@ $EM_CONF[$_EXTKEY] = array(
'dependencies'
=>
'fluid,extbase'
,
'clearcacheonload'
=>
true
,
'state'
=>
'alpha'
,
'version'
=>
'0.25.
4
'
'version'
=>
'0.25.
5
'
);
extension/qfq/tests/phpunit/BuildFormPlainTest.php
View file @
bd9e62b0
...
...
@@ -77,6 +77,7 @@ class BuildFormPlainTest extends AbstractDatabaseTest {
$build
=
new
\
qfq\BuildFormPlain
(
$form
,
array
(),
[
$formElement
],
$this
->
dbArray
);
$label
[
'123-l'
][
API_ELEMENT_CONTENT
]
=
'<label for="name:1" class="control-label" >Name</label>'
;
$label
[
'123'
][
API_ELEMENT_ATTRIBUTE
]
=
[
'value'
=>
''
];
$label
[
'123-r'
][
API_ELEMENT_ATTRIBUTE
]
=
[
'class'
=>
''
];
$result
=
$build
->
buildInput
(
$formElement
,
'name:1'
,
''
,
$json
);
...
...
@@ -155,6 +156,7 @@ class BuildFormPlainTest extends AbstractDatabaseTest {
$formElement
[
'placeholder'
]
=
'Please type a name'
;
$result
=
$build
->
buildInput
(
$formElement
,
'name:1'
,
'Hello World'
,
$json
);
$this
->
assertEquals
(
'<input id="123" name="name:1" class="form-control" maxlength="255" type="input" size="40" value="Hello World" placeholder="Please type a name" title="Nice Tooltip" data-hidden="no" data-required="no" ><div class="help-block with-errors hidden"></div>'
,
$result
);
$label
[
'123'
][
API_ELEMENT_ATTRIBUTE
]
=
[
'value'
=>
'Hello World'
];
$this
->
assertEquals
([
'disabled'
=>
false
,
FE_MODE_REQUIRED
=>
''
,
'form-element'
=>
'name:1'
,
'value'
=>
'Hello World'
,
'disabled'
=>
false
,
API_ELEMENT_UPDATE
=>
$label
],
$json
);
// textarea
...
...
@@ -463,7 +465,7 @@ class BuildFormPlainTest extends AbstractDatabaseTest {
$formElement
=
[
'id'
=>
123
,
FE_ID
=>
1
,
FE_
FORM_
ID
=>
1
,
FE_ID_CONTAINER
=>
0
,
FE_DYNAMIC_UPDATE
=>
'no'
,
'enabled'
=>
'yes'
,
...
...
version
View file @
bd9e62b0
0.25.
4
0.25.
5
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment