William Desportes
37abda64f7
Add a composer command to update baselines
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 11:59:45 +02:00
William Desportes
81a0fab9b3
Fix coding standard on setup/styles.css
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 11:49:39 +02:00
William Desportes
a1395a628c
Merge branch 'QA_5_0'
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 11:48:29 +02:00
William Desportes
78c6d38173
Translated using Weblate (Persian)
...
Currently translated at 24.8% (828 of 3334 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fa/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 11:27:50 +02:00
William Desportes
c0ae422e23
Translated using Weblate (Persian)
...
Currently translated at 23.6% (793 of 3355 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fa/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 11:02:44 +02:00
William Desportes
381f8ba406
Translated using Weblate (Persian)
...
Currently translated at 24.8% (827 of 3334 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/fa/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 11:02:43 +02:00
William Desportes
d93efc2eda
Fix Missing vendor-prefixed CSS gradients for Old Webkit (Safari 4+, Chrome).
...
Why is this an issue?
CSS gradients in a cross-browser way requires using many different vendor-prefixed versions. There are currently five different vendor-prefixed versions of CSS gradient:
-ms-linear-gradient and -ms-radial-gradient for Internet Explorer 10+
-moz-linear-gradient and -moz-radial-gradient for Firefox 3.6+
-o-linear-gradient and -o-radial-gradient for Opera 11.10+
-webkit-linear-gradient and -webkit-radial-gradient for Safari 5+ and Chrome
-webkit-gradient for Safari 4+ and Chrome (aka "Old WebKit")
Meaning a simple two-color gradient that works across all browsers must look like this:
background: -moz-linear-gradient(...); /* FF3.6+ */
background: -webkit-gradient(...); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(...); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(...); /* Opera 11.10+ */
background: -ms-linear-gradient(...); /* IE10+ */
It's easy to forget one or more gradient definitions with all of the various vendor prefix gradients available.
[By Codacy]
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 10:54:57 +02:00
William Desportes
dcacba0039
Merge #16124 - Fix #15101 - Fix margin before checkbox on local settings import
...
Pull-request: #16124
Fixes : #15101
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 10:49:18 +02:00
Petr Duda
47c3ba544d
Fix #15101 - Margin before checkbox
...
Signed-off-by: Petr Duda <petrduda@seznam.cz>
2020-05-16 10:20:58 +02:00
Maurício Meneghini Fauth
e050f0096c
Merge branch 'QA_5_0'
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-05-16 01:54:05 -03:00
Maurício Meneghini Fauth
ad1ff14cc6
Fix typo in a condition in the Sql class
...
Related to 503df0a6a7
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-05-16 01:50:42 -03:00
Maurício Meneghini Fauth
8dd310fb6a
Remove assignments in if conditions
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-05-16 01:35:19 -03:00
Petr Duda
2866ee7bd1
Translated using Weblate (Czech)
...
Currently translated at 95.4% (3203 of 3355 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/cs/
Signed-off-by: Petr Duda <petrduda@seznam.cz>
2020-05-16 01:51:04 +02:00
Petr Duda
6363109f19
Translated using Weblate (Czech)
...
Currently translated at 97.3% (3247 of 3334 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/cs/
Signed-off-by: Petr Duda <petrduda@seznam.cz>
2020-05-16 01:51:02 +02:00
William Desportes
e9a3657a93
Move some code of handleExecuteRoutine into getQueriesFromRoutineForm
...
Ref: 178f6db302
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:45:35 +02:00
William Desportes
770c6c877a
Fix a typo on a getter and rename it
...
Uses: none found
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:31:12 +02:00
William Desportes
f2ac6644b0
Fix ResultsTest::testGetTableNavigationButton
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:29:54 +02:00
William Desportes
d57de68ae4
Camel case some variables
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:24:08 +02:00
William Desportes
54127bd425
Run stylelint on print CSS styles
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:23:37 +02:00
William Desportes
952d05090d
Change final upload step after #16120
...
Ref: 401bcec8a6
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:16:49 +02:00
William Desportes
178f6db302
Split Database/Routines::handleExecute code into a function
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-16 00:04:50 +02:00
William Desportes
947f9ad04f
Remove some unused code detected by codacy
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 23:57:22 +02:00
William Desportes
076a84d259
Run stylelint on setup CSS styles
...
Some errors are unfixed:
setup/styles.css
459:5 ✖ Unexpected duplicate "background" declaration-block-no-duplicate-properties
459:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
459:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
460:5 ✖ Unexpected duplicate "background" declaration-block-no-duplicate-properties
460:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
460:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
461:5 ✖ Unexpected duplicate "background" declaration-block-no-duplicate-properties
461:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
461:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
462:5 ✖ Unexpected duplicate "background" declaration-block-no-duplicate-properties
462:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
462:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
473:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
473:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
474:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
474:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
475:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
475:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
476:5 ✖ Unexpected shorthand "background" after "background-image" declaration-block-no-shorthand-property-overrides
476:5 ✖ Unexpected shorthand "background" after "background-size" declaration-block-no-shorthand-property-overrides
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 23:47:48 +02:00
William Desportes
cc981860a7
Coding standard fixes and baselines updates
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 23:20:14 +02:00
William Desportes
795d708c65
Use a plausible phpdoc typehint
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 23:19:14 +02:00
William Desportes
824a5b277e
Merge #16123 - Fix #16110 - Incorrect mouseover highlighting
...
Pull-request: #16123
Fixes : #16110
[ci skip]
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 23:14:42 +02:00
Hosted Weblate
eb238ff7c1
Merge branch 'origin/master' into Weblate.
...
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/
2020-05-15 22:51:29 +02:00
Domen
6075e66954
Translated using Weblate (Slovenian)
...
Currently translated at 100.0% (3356 of 3356 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/sl/
Signed-off-by: Domen <mitenem@outlook.com>
2020-05-15 22:51:28 +02:00
Burak Yavuz
00120a57b2
Translated using Weblate (Turkish)
...
Currently translated at 100.0% (3356 of 3356 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/tr/
Signed-off-by: Burak Yavuz <hitowerdigit@hotmail.com>
2020-05-15 22:51:28 +02:00
William Desportes
25fbf9973c
Update po files
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 22:49:10 +02:00
William Desportes
e22f83218f
Merge #16122 - Remove mysql extension checks as it was removed in php 7.0
...
Pull-request: #16122
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 22:48:28 +02:00
William Desportes
9bc55b2bc9
Remove some unused variable assignements
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 22:44:50 +02:00
Petr Duda
2fa2c858ac
Fix #16110 - Incorrect mouseover highlighting
...
Signed-off-by: Petr Duda <petrduda@seznam.cz>
2020-05-15 22:28:17 +02:00
William Desportes
f7db653d4f
Improve some typehints
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 22:25:55 +02:00
William Desportes
fcd41f6c85
Remove some mysql extension assertions
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 22:17:58 +02:00
William Desportes
3463257b05
Add a space between attributes as suggested by w3c validator
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 22:15:07 +02:00
Maurício Meneghini Fauth
064ba71ed4
Replace or operator in DatabaseInterface::query method
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-05-15 16:42:59 -03:00
Maurício Meneghini Fauth
75fc2ed74f
Remove dbi global from DatabaseInterface::load method
...
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-05-15 16:24:14 -03:00
William Desportes
2c90e4477e
Translated using Weblate (English (United Kingdom))
...
Currently translated at 99.7% (3327 of 3334 strings)
[CI skip]
Translation: phpMyAdmin/5.0
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/5-0/en_GB/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-15 14:41:35 +02:00
William Desportes
9089ffdbb0
Translated using Weblate (French)
...
Currently translated at 100.0% (3356 of 3356 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/fr/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 14:53:10 +02:00
William Desportes
39ad5045b8
Translated using Weblate (English (United Kingdom))
...
Currently translated at 100.0% (3356 of 3356 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/en_GB/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 14:25:20 +02:00
William Desportes
9ef06e8a9d
Translated using Weblate (Ukrainian)
...
Currently translated at 97.3% (3266 of 3355 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/uk/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 14:25:19 +02:00
William Desportes
df5804eeac
Translated using Weblate (English (United Kingdom))
...
Currently translated at 99.1% (3329 of 3356 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/en_GB/
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 14:17:46 +02:00
William Desportes
0e7f218cfd
Update po files
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 13:59:10 +02:00
William Desportes
a29dc02d35
Add a ChangeLog entry for #15136
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 13:57:22 +02:00
William Desportes
136dad083a
Merge branch 'QA_5_0'
...
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 13:55:39 +02:00
William Desportes
291eb002af
Merge #15779 - Fix #15136 - Hex converter giving invalid results
...
Fix : #15136
Pull-request: #15779
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-05-14 13:54:11 +02:00
Manthan Surkar
10116e9824
Informing the user about the HEX conversion scheme of Integers
...
Signed-off-by: Manthan Surkar <manthan.surkar@gmail.com>
2020-05-14 13:52:23 +02:00
Hosted Weblate
208994002b
Merge branch 'origin/master' into Weblate.
...
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/
2020-05-14 13:32:22 +02:00
ssantos
3bf35dde1a
Translated using Weblate (Portuguese)
...
Currently translated at 100.0% (3355 of 3355 strings)
[CI skip]
Translation: phpMyAdmin/Development
Translate-URL: https://hosted.weblate.org/projects/phpmyadmin/master/pt/
Signed-off-by: ssantos <ssantos@web.de>
2020-05-14 13:32:21 +02:00