Commit graph

82 commits

Author SHA1 Message Date
Timo Tijhof 46509ebd2a Require Set#params to be non-empty and improve error
* An empty array for a Set is invalid and the implementation now
  enforces this.
* Add new error message for invalid value. When Sets contain a
  reference to a key that doesn't exist, it should say that that
  reference in the Set is invalid instead of saying that Params
  is invalid for not having it.
  > { params: {}, sets: [ { params: [ "quux" ] } ] }
  - Required property "params.quux" not found.
  + Invalid value for property "sets.0.params[1]".

Also:
* Abstracted handling of $case and the different assertions
  on it in a helper function so that we don't have to repeat
  it everywhere.
* Use the same hack as in other tests to display the status error
  message in the phpunit output (true === isGood ?: getHtml).
  Maybe use '' === getHtml instead, though that is also evil
  since Status fatals if you call getMessage/getHtml for a good
  Status object.

Change-Id: I06a6615f728cd287a4839e09eedc2d0eeb537949
2013-10-30 00:10:38 +00:00
Translation updater bot 2e75f125ba Localisation updates from http://translatewiki.net.
Change-Id: I7ee5e6a523cc7f1783bf42e6f8b4d3dbe03f0bf3
2013-10-25 18:59:36 +00:00
Translation updater bot 26dacfcc70 Localisation updates from http://translatewiki.net.
Change-Id: I5a74b2f691196739a5656060045d600278b61d87
2013-10-24 20:50:37 +00:00
Translation updater bot 4c848ea297 Localisation updates from http://translatewiki.net.
Change-Id: I35cc27931b8fbedad86bd920e903dfce5870c832
2013-10-22 19:21:35 +00:00
Translation updater bot c321aa7ee7 Localisation updates from http://translatewiki.net.
Change-Id: I61ff9acb427bf2cb14b0d294fdefe035cc35df63
2013-10-21 19:40:38 +00:00
Translation updater bot d45255b146 Localisation updates from http://translatewiki.net.
Change-Id: Ie69c1aa4569f74fda1c71e2c03f40f6e20e93c44
2013-10-20 21:47:57 +00:00
Translation updater bot bbae7751ec Localisation updates from http://translatewiki.net.
Change-Id: I6f8f1450c65c958a9676f2d4e11412ee61b05021
2013-10-17 19:34:34 +00:00
Translation updater bot d4e02e3e23 Localisation updates from http://translatewiki.net.
Change-Id: I9f3af8f0623f334e395dfefe9dd7fc9fd4b7e43a
2013-10-15 19:32:44 +00:00
Translation updater bot c94013fdb1 Localisation updates from http://translatewiki.net.
Change-Id: I333a92c12cad2eeb2954f81c7f29fa12b6a838b1
2013-10-13 19:30:43 +00:00
Translation updater bot 835dfb3719 Localisation updates from http://translatewiki.net.
Change-Id: I9587c211d4160392bc740820afe331f5d68d3f89
2013-10-11 19:13:12 +00:00
Translation updater bot 2a3f47f8cb Localisation updates from http://translatewiki.net.
Change-Id: I8f712b5b382c858d1cb6c501c7762faefaabad0e
2013-10-10 19:04:41 +00:00
Translation updater bot 0c59b67757 Localisation updates from http://translatewiki.net.
Change-Id: Ibc9a7f59ace70e4ca06be1182703ef3a76e5de37
2013-10-09 19:39:30 +00:00
Translation updater bot 18d93c1944 Localisation updates from http://translatewiki.net.
Change-Id: I9486e89626ae46e064d73d19d7154be510103054
2013-10-08 19:08:18 +00:00
Translation updater bot a554e87917 Localisation updates from http://translatewiki.net.
Change-Id: I0a9edbe97ec5785cdf45e38e83868a3f2b2cfc1c
2013-10-08 01:00:37 +00:00
jenkins-bot f115835eca Merge "Localize default "empty" value and status (deprecated, optional, required)" 2013-10-07 18:56:32 +00:00
Timo Tijhof ddd6b2761e Localize default "empty" value and status (deprecated, optional, required)
* Fixed 'should be not be'  in other 'qqq' messages.
* Fixed absence of ->text() in other wfMessage uses
  (defaulted to parse, which was wrong as these are Html::element
  uses that take text input, so it was being double escaped).

Bug: 50370
Change-Id: Iba1a10f14e258a588435cd03017177acfb96d0f3
2013-10-07 18:54:56 +00:00
Translation updater bot 5fb125284c Localisation updates from http://translatewiki.net.
Change-Id: I3de92aed0cf72047bfa981da52fba3e59ca7b15f
2013-10-06 18:50:08 +00:00
Translation updater bot f5964289ba Localisation updates from http://translatewiki.net.
Change-Id: Ie64232e08663cfd0bf99182cb5c4146e5f22d9eb
2013-10-03 18:14:31 +00:00
Translation updater bot ced57d2f06 Localisation updates from http://translatewiki.net.
Change-Id: I0cc8f7f8d30e88de45eb86066319798c8c15dac3
2013-10-02 14:28:14 +00:00
Translation updater bot 5966ee9e4c Localisation updates from http://translatewiki.net.
Change-Id: Id8350bee1c7e1708987f3ba853dac2b4a43a7155
2013-10-01 19:24:16 +00:00
Translation updater bot c7a3c83ff5 Localisation updates from http://translatewiki.net.
Change-Id: I3ed4339d635c48157a85d62f20bbea1109fe233c
2013-09-29 20:17:05 +00:00
Timo Tijhof f8eb557a64 Account for absence of template description in #getHtml
The description property is optional and is explicitly set to
null by the parser in normalisation if there is none.

The HTML rendering of parameter descriptions (as oppposed to the
description of the template as a whole) already covered for this.
Used the same logic for the template parameter.

Also fixed:
* Localize the text "no description"
* Use !== null instead of isset() since the property is always
  set, we just need to know whether it is null or an object.

Bug: 54422
Change-Id: I86a40dbd1225feb54123e77a856b4ad6d525461b
2013-09-25 20:23:46 +00:00
Translation updater bot db3d942b69 Localisation updates from http://translatewiki.net.
Change-Id: I2e1ede7d148f8655cabde41365bb8a47da10b388
2013-09-09 19:29:34 +00:00
Translation updater bot a729731fb9 Localisation updates from http://translatewiki.net.
Change-Id: I024ca92f7b925d06d7ef221a7c07ec091843e87f
2013-09-01 19:27:43 +00:00
Translation updater bot dd13dfc6bd Localisation updates from http://translatewiki.net.
Change-Id: I30afbe36918e9d8cfab596899ef6559c66a37f2a
2013-08-30 19:25:23 +00:00
Translation updater bot 6e33d0bf86 Localisation updates from http://translatewiki.net.
Change-Id: I4a5b5fd6987e57c86a7f2bddc7e50038941b5479
2013-08-29 19:22:20 +00:00
Translation updater bot f3724eee4a Localisation updates from http://translatewiki.net.
Change-Id: Idf7e94dd685508f32b2b6c766a4f6f3b9ab8224f
2013-08-25 20:07:28 +00:00
Translation updater bot 139a33c720 Localisation updates from http://translatewiki.net.
Change-Id: Ia37feb0e391e4a8fc7b7c28ebe0e8cb03b91fbc0
2013-08-22 19:49:44 +00:00
Translation updater bot d1cac29a90 Localisation updates from http://translatewiki.net.
Change-Id: I4b77912822de049f6cb4ffdb615293a5bd47c0a4
2013-08-17 19:25:07 +00:00
Translation updater bot 06bb6da115 Localisation updates from http://translatewiki.net.
Change-Id: I4fbb3b4efef0938a8885c1afce4125d50e73dea0
2013-08-09 19:47:20 +00:00
Translation updater bot 3978bc3b67 Localisation updates from http://translatewiki.net.
Change-Id: Id64d7aa9bb7c179fa5cb8198b5a5b6aba3827ac5
2013-08-07 19:46:29 +00:00
Translation updater bot bfaa905839 Localisation updates from http://translatewiki.net.
Change-Id: If2a3356920072f92c3d1691cb236a00911f3db25
2013-08-06 19:30:04 +00:00
Translation updater bot f634ee9998 Localisation updates from http://translatewiki.net.
Change-Id: I35582d22cdc10cbbb8ace21f875b78e631f6b935
2013-08-05 19:39:12 +00:00
Translation updater bot f048ea613c Localisation updates from http://translatewiki.net.
Change-Id: I8f57e162e4bebf653e9e0768fea882f5e6bd03af
2013-08-04 18:56:09 +00:00
Translation updater bot b8d1fc39ef Localisation updates from http://translatewiki.net.
Change-Id: Iaee862f505135489fb6e8d48ca97f3afa4104460
2013-08-03 19:45:22 +00:00
Translation updater bot 877de81d51 Localisation updates from http://translatewiki.net.
Change-Id: Icaf07b52be9ce3d407c3565a265442757690e538
2013-08-02 21:38:41 +00:00
MatmaRex 6281fe626f Bail when JSON length exceeds database limits
This might not be necessary on non-MySQL databases, but I'm sure that
at least their limits aren't lower than MySQL's, so let's stay on the
safe side.

Bug: 51740
Change-Id: I9c7115a951f126844bc70755bff12e8cd5fc2be1
2013-08-01 23:39:47 +02:00
Translation updater bot 051aefe194 Localisation updates from http://translatewiki.net.
Change-Id: I22b3f6950eefa8b2e41244282611a642835ab482
2013-07-31 20:00:21 +00:00
Translation updater bot f4974ff1ed Localisation updates from http://translatewiki.net.
Change-Id: I3ad910ec679118f2ef5d91e8c63d6f8a9ffd6ed8
2013-07-24 19:56:48 +00:00
Translation updater bot f28c181499 Localisation updates from http://translatewiki.net.
Change-Id: If42359aa23a300d4be79cdceef3b233b5ffb2955
2013-07-23 18:43:53 +00:00
Translation updater bot 831c0401fd Localisation updates from http://translatewiki.net.
Change-Id: I7345723476ac5dec39156b81eb1ea2914713980e
2013-07-14 19:19:14 +00:00
Translation updater bot 06ec95de0f Localisation updates from http://translatewiki.net.
Change-Id: Ia053078cd97daf2069466b28ec7060ade6bf78ff
2013-07-07 19:45:47 +00:00
Translation updater bot 3a549c215a Localisation updates from http://translatewiki.net.
Change-Id: I25fc976c589b1c3cb7ea5c43f6ed3b8eb3af889e
2013-07-06 19:04:02 +00:00
Translation updater bot 913460f0e2 Localisation updates from http://translatewiki.net.
Change-Id: Idb0f3d62b8208585c8736bf1c605f164fd26ee81
2013-07-01 20:00:02 +00:00
Translation updater bot bee15b9939 Localisation updates from http://translatewiki.net.
Change-Id: I1118a1372ff4d08fcb17ef3e4239074cd9dce579
2013-06-28 13:58:00 +00:00
Translation updater bot 959034d021 Localisation updates from http://translatewiki.net.
Change-Id: I99eac12dc6f09deab0b37cce69470b11241f35a9
2013-06-27 19:55:56 +00:00
Translation updater bot 0c5eeafc1a Localisation updates from http://translatewiki.net.
Change-Id: Id929486fba172e419b6ad2ab6595115061fbb175
2013-06-25 19:58:17 +00:00
Translation updater bot 393f138434 Localisation updates from http://translatewiki.net.
Change-Id: Ia8adc7edd2128fbbe5316b27ec26f30d901f4974
2013-06-20 19:00:02 +00:00
Translation updater bot a66c67181f Localisation updates from http://translatewiki.net.
Change-Id: If50900abf7925388542a4910b487104d9b104feb
2013-06-12 19:58:44 +00:00
Translation updater bot faea734d18 Localisation updates from http://translatewiki.net.
Change-Id: Id54246273725bbc4fa323c9f469a41e18e2b057e
2013-06-11 20:56:29 +00:00