decidim-dev 0.27.0.rc2 → 0.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/locales/cs.yml +2 -0
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/oc-FR.yml +1 -0
- data/lib/decidim/dev/assets/assemblies.json +11 -1
- data/lib/decidim/dev/assets/import_participatory_space_private_users_iso8859-1.csv +2 -0
- data/lib/decidim/dev/test/w3c_rspec_validators_overrides.rb +10 -3
- data/lib/decidim/dev/version.rb +1 -1
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad8be826f22f283e7503f3bb57dc7a3bfc07d1bf03d440248d4102d9559fcedf
|
|
4
|
+
data.tar.gz: 6c738c9a2bc0684910abbd8b813a9cf43373e6f1448d24632df1d973992a9bec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 396b51fedefeb53e174b3e0f2a8333bd9289c7e8a3ad1f2a3f7f7d6f948849d4baee083e4147b8f6f41d70b8b9279d0a7f6ca99f5f6c7964965cd0006bee6de9
|
|
7
|
+
data.tar.gz: b8201e9aa2a6158952624232bdfb090169be1aa38cc90f8ca0190afb98edba9fdf3d00532c59a63995e54e332a9fab084ef085353109d44360babb36424fd42e
|
data/config/locales/cs.yml
CHANGED
|
@@ -15,8 +15,10 @@ cs:
|
|
|
15
15
|
dummy:
|
|
16
16
|
settings:
|
|
17
17
|
global:
|
|
18
|
+
guided: Řízené zadávání
|
|
18
19
|
guided_help: Text nápovědy
|
|
19
20
|
guided_readonly: Zakázaný zápis
|
|
21
|
+
guided_rich: Řízené plnohodnotné zadávání
|
|
20
22
|
guided_rich_help_html: HTML textová <strong>nápověda</strong>
|
|
21
23
|
guided_rich_readonly_html: HTML <strong>nápověda</strong> text pro zakázaný zápis
|
|
22
24
|
readonly_attribute: Atribut pouze pro čtení
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gn:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lo:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
oc:
|
|
@@ -512,7 +512,17 @@
|
|
|
512
512
|
},
|
|
513
513
|
"weight": 0,
|
|
514
514
|
"permissions": null,
|
|
515
|
-
"published_at": "2020-01-22 07:55:04 UTC"
|
|
515
|
+
"published_at": "2020-01-22 07:55:04 UTC",
|
|
516
|
+
"specific_data": {
|
|
517
|
+
"body": {
|
|
518
|
+
"en": "English content",
|
|
519
|
+
"ca": "Catalan content",
|
|
520
|
+
"es": "Spanish content",
|
|
521
|
+
"machine_translations": {
|
|
522
|
+
"es": "Machine translation spanish content"
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
}
|
|
516
526
|
},
|
|
517
527
|
{
|
|
518
528
|
"manifest_name": "proposals",
|
|
@@ -3,8 +3,13 @@
|
|
|
3
3
|
# This is a temporary fix to ignore some HTML/CSS validation issues with the
|
|
4
4
|
# Decidim HTML validation process.
|
|
5
5
|
#
|
|
6
|
-
# See:
|
|
7
|
-
#
|
|
6
|
+
# See:
|
|
7
|
+
# - https://github.com/decidim/decidim/issues/8596
|
|
8
|
+
# - https://github.com/decidim/decidim/pull/10014
|
|
9
|
+
# Related:
|
|
10
|
+
# - https://github.com/w3c/css-validator/issues/355
|
|
11
|
+
# - https://github.com/rails/rails/issues/46405
|
|
12
|
+
# - https://github.com/foundation/foundation-sites/pull/12496
|
|
8
13
|
module W3CValidators
|
|
9
14
|
class NuValidator
|
|
10
15
|
protected
|
|
@@ -17,7 +22,9 @@ module W3CValidators
|
|
|
17
22
|
|
|
18
23
|
def ignore_errors
|
|
19
24
|
@ignore_errors ||= [
|
|
20
|
-
"CSS: “--content-height”: One operand must be a number."
|
|
25
|
+
"CSS: “--content-height”: One operand must be a number.",
|
|
26
|
+
"An “input” element with a “type” attribute whose value is “hidden” must not have an “autocomplete” attribute whose value is “on” or “off”.",
|
|
27
|
+
"An “input” element with a “type” attribute whose value is “hidden” must not have any “aria-*” attributes."
|
|
21
28
|
]
|
|
22
29
|
end
|
|
23
30
|
|
data/lib/decidim/dev/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-dev
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.27.
|
|
4
|
+
version: 0.27.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-11-15 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: capybara
|
|
@@ -32,14 +32,14 @@ dependencies:
|
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.27.
|
|
35
|
+
version: 0.27.1
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.27.
|
|
42
|
+
version: 0.27.1
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: factory_bot_rails
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -447,6 +447,7 @@ files:
|
|
|
447
447
|
- config/locales/fr.yml
|
|
448
448
|
- config/locales/ga-IE.yml
|
|
449
449
|
- config/locales/gl.yml
|
|
450
|
+
- config/locales/gn-PY.yml
|
|
450
451
|
- config/locales/hr-HR.yml
|
|
451
452
|
- config/locales/hr.yml
|
|
452
453
|
- config/locales/hu.yml
|
|
@@ -459,6 +460,7 @@ files:
|
|
|
459
460
|
- config/locales/ko.yml
|
|
460
461
|
- config/locales/lb-LU.yml
|
|
461
462
|
- config/locales/lb.yml
|
|
463
|
+
- config/locales/lo-LA.yml
|
|
462
464
|
- config/locales/lt-LT.yml
|
|
463
465
|
- config/locales/lt.yml
|
|
464
466
|
- config/locales/lv.yml
|
|
@@ -466,6 +468,7 @@ files:
|
|
|
466
468
|
- config/locales/mt.yml
|
|
467
469
|
- config/locales/nl.yml
|
|
468
470
|
- config/locales/no.yml
|
|
471
|
+
- config/locales/oc-FR.yml
|
|
469
472
|
- config/locales/om-ET.yml
|
|
470
473
|
- config/locales/pl.yml
|
|
471
474
|
- config/locales/pt-BR.yml
|
|
@@ -508,6 +511,7 @@ files:
|
|
|
508
511
|
- lib/decidim/dev/assets/icon.png
|
|
509
512
|
- lib/decidim/dev/assets/id.jpg
|
|
510
513
|
- lib/decidim/dev/assets/import_participatory_space_private_users.csv
|
|
514
|
+
- lib/decidim/dev/assets/import_participatory_space_private_users_iso8859-1.csv
|
|
511
515
|
- lib/decidim/dev/assets/import_participatory_space_private_users_nok.csv
|
|
512
516
|
- lib/decidim/dev/assets/import_participatory_space_private_users_with_bom.csv
|
|
513
517
|
- lib/decidim/dev/assets/import_proposals.csv
|
|
@@ -609,9 +613,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
609
613
|
version: '3.0'
|
|
610
614
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
611
615
|
requirements:
|
|
612
|
-
- - "
|
|
616
|
+
- - ">="
|
|
613
617
|
- !ruby/object:Gem::Version
|
|
614
|
-
version:
|
|
618
|
+
version: '0'
|
|
615
619
|
requirements: []
|
|
616
620
|
rubygems_version: 3.2.22
|
|
617
621
|
signing_key:
|