Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Commits
d794810e
Commit
d794810e
authored
6 years ago
by
Carsten Rose
Browse files
Options
Downloads
Patches
Plain Diff
New Version: 18.04.0
parent
8f048e78
No related branches found
Branches containing commit
Tags
v18.12.3
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+45
-6
45 additions, 6 deletions
CHANGELOG.md
doc/NewVersion.md
+2
-2
2 additions, 2 deletions
doc/NewVersion.md
extension/Documentation/Release.rst
+39
-0
39 additions, 0 deletions
extension/Documentation/Release.rst
extension/RELEASE.txt
+45
-6
45 additions, 6 deletions
extension/RELEASE.txt
with
131 additions
and
14 deletions
CHANGELOG.md
+
45
−
6
View file @
d794810e
...
...
@@ -36,6 +36,45 @@ Features
Bug Fixes
^^^^^^^^^
Version 18.04.0
---------------
Date: 26.04.2018
Notes
^^^^^
*
QFQ marked as 'stable'
*
New version numbering: Year.Month.Index
*
Manual.rst:
*
AutoCron documentation enhanced.
*
Replace '{{form:S}}' against '{{form:SE}}'.
*
Check list for 'new installations'.
*
Description for config variables enhanced.
*
Details 'how record locking' is done.
*
Details: extraButtonInfo
*
Replace config.qfq.ini on most places with 'configuration'
*
Path of 'sql.log' / 'mail.log' are now relative to
<site
path
>
(not
<ext
path
>
as before).
Features
^^^^^^^^
*
formEditor.sql: update table cron.
*
AutoCron.php: allow https connections with invalid certificate (e.g. 'localhost' is not listed as a valid hostname).
*
ext_conf_template.txt: Extension manager configuration setup.
Bug Fixes
^^^^^^^^^
*
AutoCron:
*
Update form 'cron' to load/save records in DB_INDEX_QFQ
*
Fix problem with array in checkForOldJobs().
*
Implement check that re-trigger asynchronous cron jobs are handled correctly.
Version 0.25.15
---------------
...
...
@@ -334,8 +373,8 @@ Bug Fixes
*
#4865 / Pill Dynamic Updates Show / Hide
*
#5031 / Missing details in DbException: New definition of SYSTEM_SHOW_DEBUG_INFO: even after config.qfq.ini is parsed
and SIP Infos has been read - if there is no BE User logged in, the value stays on 'auto' (earlier it has been replaced
to 'no'). Staying on 'auto' keeps the information that replacing is still open and not replaced means 'no'-BE User logged in.
and SIP Infos has been read - if there is no BE User logged in, the value stays on 'auto' (earlier it has been replaced
to 'no'). Staying on 'auto' keeps the information that replacing is still open and not replaced means 'no'-BE User logged in.
*
#5016 / Loose checkbox value on save - Dirty workaround - better solution necessary.
*
#5017 / STORE_RECORD used in FormElement and via '#!report' - save & restore STORE_RECORD.
*
#5004 / FormElement with state 'ReadOnly' will be saved with empty value - existing values will be overwritten - fixed.
...
...
@@ -951,7 +990,7 @@ Features
*
New security option
`escapeTypeDefault`
: will be defined 1) sytem wide in config.qfq.ini, or 2) more specific per
Form or 3) individually per variable. The later has priority.
*
#3544 / Form: view current form - It's now possible to direct view a form, which is currently loaded/edited in the
FormEditor: Button 'eye' near left of button 'save'.
FormEditor: Button 'eye' near left of button 'save'.
*
#3552 / typeAheadLdapSearchPerToken - webpass kann nicht gleichzeitig nach Vornamen und Nachnamen suchen. Added option
typeAheadLdapSearchPerToken to split search value in token and OR-combine every search with the individual tokens.
*
Download latest QFQ builds and releases: https://w3.math.uzh.ch/qfq/.
...
...
@@ -1043,7 +1082,7 @@ Bug Fixes
*
TypeAhead.js: Handle
<ENTER>
key properly.
*
#3462 / FormElement.parameter: requiredList not ok for non numeric content. STORE_FORM had been called without 'sanatize class'.
Therefore, all non numeric values has been sanatized by default. New: SANATIZE_ALLOW_ALL.
Therefore, all non numeric values has been sanatized by default. New: SANATIZE_ALLOW_ALL.
*
Corrected error message to use 'itemList' instead of 'itemValues'. Renamed constant too.
*
#2542 / FormElement-Typ 'note' funktioniert nicht mit dynamic update. 'Label' and 'note' are fixed - 'value' is still not updated, open.
...
...
@@ -1084,8 +1123,8 @@ Bug Fixes
*
#3419 / typeAheadSql: Array with only one column or non standard columnnames are not handeld properbly.
Detection of missing LIMIT implemented.
*
#3425 / Form.parameter, FormElement.parameter: comment handling, trailing & leading spaces
Manual.rst: commented handling of 'comment character' and 'escaping of leading/trailing spaces'
Support.php: new funtion handleEscapeSpaceComment().
Manual.rst: commented handling of 'comment character' and 'escaping of leading/trailing spaces'
Support.php: new funtion handleEscapeSpaceComment().
*
Evaluate.php: parse all F|FE.parameter via handleEscapeSpaceComment(). A leading '#' or ' ' might be escaped by '
\'
.
*
Saving 'extra' FE in STORE_SIP has been done with inappropiate FE_NAME. Correct is the pure FE_NAME, without any
extension like recordId. Unessary and broken decoding removed.
...
...
This diff is collapsed.
Click to expand it.
doc/NewVersion.md
+
2
−
2
View file @
d794810e
...
...
@@ -47,8 +47,8 @@ Neue Versionsnummer
6)
**New Tag**
:
git tag v
0.25.15a
git push -u origin v
0.25.15a
git tag v
18.04.0
git push -u origin v
18.04.0
7) PhpStorm:
**Sync**
all files to VM qfq.
...
...
This diff is collapsed.
Click to expand it.
extension/Documentation/Release.rst
+
39
−
0
View file @
d794810e
...
...
@@ -36,6 +36,45 @@ Features
Bug Fixes
^^^^^^^^^
Version 18.04.0
---------------
Date: 26.04.2018
Notes
^^^^^
* QFQ marked as 'stable'
* New version numbering: Year.Month.Index
* Manual.rst:
* AutoCron documentation enhanced.
* Replace '{{form:S}}' against '{{form:SE}}'.
* Check list for 'new installations'.
* Description for config variables enhanced.
* Details 'how record locking' is done.
* Details: extraButtonInfo
* Replace config.qfq.ini on most places with 'configuration'
* Path of 'sql.log' / 'mail.log' are now relative to <site path> (not <ext path> as before).
Features
^^^^^^^^
* formEditor.sql: update table cron.
* AutoCron.php: allow https connections with invalid certificate (e.g. 'localhost' is not listed as a valid hostname).
* ext_conf_template.txt: Extension manager configuration setup.
Bug Fixes
^^^^^^^^^
* AutoCron:
* Update form 'cron' to load/save records in DB_INDEX_QFQ
* Fix problem with array in checkForOldJobs().
* Implement check that re-trigger asynchronous cron jobs are handled correctly.
Version 0.25.15
---------------
...
...
This diff is collapsed.
Click to expand it.
extension/RELEASE.txt
+
45
−
6
View file @
d794810e
...
...
@@ -36,6 +36,45 @@ Features
Bug Fixes
^^^^^^^^^
Version 18.04.0
---------------
Date: 26.04.2018
Notes
^^^^^
* QFQ marked as 'stable'
* New version numbering: Year.Month.Index
* Manual.rst:
* AutoCron documentation enhanced.
* Replace '{{form:S}}' against '{{form:SE}}'.
* Check list for 'new installations'.
* Description for config variables enhanced.
* Details 'how record locking' is done.
* Details: extraButtonInfo
* Replace config.qfq.ini on most places with 'configuration'
* Path of 'sql.log' / 'mail.log' are now relative to <site path> (not <ext path> as before).
Features
^^^^^^^^
* formEditor.sql: update table cron.
* AutoCron.php: allow https connections with invalid certificate (e.g. 'localhost' is not listed as a valid hostname).
* ext_conf_template.txt: Extension manager configuration setup.
Bug Fixes
^^^^^^^^^
* AutoCron:
* Update form 'cron' to load/save records in DB_INDEX_QFQ
* Fix problem with array in checkForOldJobs().
* Implement check that re-trigger asynchronous cron jobs are handled correctly.
Version 0.25.15
---------------
...
...
@@ -334,8 +373,8 @@ Bug Fixes
* #4865 / Pill Dynamic Updates Show / Hide
* #5031 / Missing details in DbException: New definition of SYSTEM_SHOW_DEBUG_INFO: even after config.qfq.ini is parsed
and SIP Infos has been read - if there is no BE User logged in, the value stays on 'auto' (earlier it has been replaced
to 'no'). Staying on 'auto' keeps the information that replacing is still open and not replaced means 'no'-BE User logged in.
and SIP Infos has been read - if there is no BE User logged in, the value stays on 'auto' (earlier it has been replaced
to 'no'). Staying on 'auto' keeps the information that replacing is still open and not replaced means 'no'-BE User logged in.
* #5016 / Loose checkbox value on save - Dirty workaround - better solution necessary.
* #5017 / STORE_RECORD used in FormElement and via '#!report' - save & restore STORE_RECORD.
* #5004 / FormElement with state 'ReadOnly' will be saved with empty value - existing values will be overwritten - fixed.
...
...
@@ -951,7 +990,7 @@ Features
* New security option `escapeTypeDefault`: will be defined 1) sytem wide in config.qfq.ini, or 2) more specific per
Form or 3) individually per variable. The later has priority.
* #3544 / Form: view current form - It's now possible to direct view a form, which is currently loaded/edited in the
FormEditor: Button 'eye' near left of button 'save'.
FormEditor: Button 'eye' near left of button 'save'.
* #3552 / typeAheadLdapSearchPerToken - webpass kann nicht gleichzeitig nach Vornamen und Nachnamen suchen. Added option
typeAheadLdapSearchPerToken to split search value in token and OR-combine every search with the individual tokens.
* Download latest QFQ builds and releases: https://w3.math.uzh.ch/qfq/.
...
...
@@ -1043,7 +1082,7 @@ Bug Fixes
* TypeAhead.js: Handle <ENTER> key properly.
* #3462 / FormElement.parameter: requiredList not ok for non numeric content. STORE_FORM had been called without 'sanatize class'.
Therefore, all non numeric values has been sanatized by default. New: SANATIZE_ALLOW_ALL.
Therefore, all non numeric values has been sanatized by default. New: SANATIZE_ALLOW_ALL.
* Corrected error message to use 'itemList' instead of 'itemValues'. Renamed constant too.
* #2542 / FormElement-Typ 'note' funktioniert nicht mit dynamic update. 'Label' and 'note' are fixed - 'value' is still not updated, open.
...
...
@@ -1084,8 +1123,8 @@ Bug Fixes
* #3419 / typeAheadSql: Array with only one column or non standard columnnames are not handeld properbly.
Detection of missing LIMIT implemented.
* #3425 / Form.parameter, FormElement.parameter: comment handling, trailing & leading spaces
Manual.rst: commented handling of 'comment character' and 'escaping of leading/trailing spaces'
Support.php: new funtion handleEscapeSpaceComment().
Manual.rst: commented handling of 'comment character' and 'escaping of leading/trailing spaces'
Support.php: new funtion handleEscapeSpaceComment().
* Evaluate.php: parse all F|FE.parameter via handleEscapeSpaceComment(). A leading '#' or ' ' might be escaped by '\'.
* Saving 'extra' FE in STORE_SIP has been done with inappropiate FE_NAME. Correct is the pure FE_NAME, without any
extension like recordId. Unessary and broken decoding removed.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment