decidim-feeds_ui 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE-AGPLv3.txt +661 -0
- data/README.md +37 -0
- data/Rakefile +9 -0
- data/app/controllers/decidim/feeds_ui/admin/application_controller.rb +23 -0
- data/app/controllers/decidim/feeds_ui/application_controller.rb +19 -0
- data/app/controllers/decidim/feeds_ui/users_controller.rb +47 -0
- data/app/helpers/decidim/feeds_ui/application_helper.rb +21 -0
- data/app/models/decidim/feeds_ui/application_record.rb +10 -0
- data/app/packs/entrypoints/decidim_feeds_ui.js +5 -0
- data/app/packs/images/decidim/feeds_ui/DigifondsGefoerdert.png +0 -0
- data/app/packs/images/decidim/feeds_ui/icon.svg +1 -0
- data/app/packs/images/decidim/feeds_ui/mitgestalten-logo.png +0 -0
- data/app/packs/src/decidim/feeds_ui/feeds_ui.js +41 -0
- data/app/packs/stylesheets/decidim/feeds_ui/feeds_ui.scss +230 -0
- data/app/permissions/decidim/feeds_ui/admin/permissions.rb +23 -0
- data/app/permissions/decidim/feeds_ui/permissions.rb +27 -0
- data/app/views/decidim/feeds_ui/users/_users_list.html.erb +26 -0
- data/app/views/decidim/feeds_ui/users/filter_users.js.erb +2 -0
- data/app/views/decidim/feeds_ui/users/index.html.erb +30 -0
- data/app/views/decidim/feeds_ui/users/user_profile.html.erb +24 -0
- data/app/views/layouts/decidim/_admin_links.html.erb +3 -0
- data/app/views/layouts/decidim/_logo.html.erb +10 -0
- data/app/views/layouts/decidim/footer/_main.html.erb +4 -0
- data/app/views/layouts/decidim/footer/_mini.html.erb +57 -0
- data/app/views/layouts/decidim/header/_links_mobile_top.html.erb +32 -0
- data/app/views/layouts/decidim/header/_main.html.erb +31 -0
- data/app/views/layouts/decidim/header/_main_links_desktop.html.erb +31 -0
- data/app/views/layouts/decidim/header/_main_links_dropdown.html.erb +39 -0
- data/app/views/layouts/decidim/header/_main_links_mobile.html.erb +57 -0
- data/app/views/layouts/decidim/header/_menu.html.erb +0 -0
- data/config/assets.rb +9 -0
- data/config/i18n-tasks.yml +10 -0
- data/config/locales/bs.yml +29 -0
- data/config/locales/de.yml +29 -0
- data/config/locales/en.yml +29 -0
- data/config/locales/hr.yml +29 -0
- data/config/locales/it.yml +29 -0
- data/config/locales/sr.yml +29 -0
- data/config/locales/tr.yml +29 -0
- data/lib/decidim/feeds_ui/admin.rb +8 -0
- data/lib/decidim/feeds_ui/admin_engine.rb +27 -0
- data/lib/decidim/feeds_ui/engine.rb +50 -0
- data/lib/decidim/feeds_ui/menu.rb +18 -0
- data/lib/decidim/feeds_ui/test/factories.rb +7 -0
- data/lib/decidim/feeds_ui/version.rb +11 -0
- data/lib/decidim/feeds_ui.rb +10 -0
- metadata +154 -0
metadata
ADDED
@@ -0,0 +1,154 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: decidim-feeds_ui
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alexander Rusa
|
8
|
+
- Piero Chiussi
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2024-10-26 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: decidim-core
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 0.28.0
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '0.29'
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 0.28.0
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.29'
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: decidim-feeds
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.0.0
|
41
|
+
- - "<"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '2'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 1.0.0
|
51
|
+
- - "<"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '2'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: decidim-posts
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 1.0.0
|
61
|
+
- - "<"
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '2'
|
64
|
+
type: :runtime
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 1.0.0
|
71
|
+
- - "<"
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '2'
|
74
|
+
description: A very Reduced UI specific for Decidim platforms focussed on social feeds
|
75
|
+
and posts.
|
76
|
+
email:
|
77
|
+
- alex@rusa.at
|
78
|
+
- info@webchroma.de
|
79
|
+
executables: []
|
80
|
+
extensions: []
|
81
|
+
extra_rdoc_files: []
|
82
|
+
files:
|
83
|
+
- LICENSE-AGPLv3.txt
|
84
|
+
- README.md
|
85
|
+
- Rakefile
|
86
|
+
- app/controllers/decidim/feeds_ui/admin/application_controller.rb
|
87
|
+
- app/controllers/decidim/feeds_ui/application_controller.rb
|
88
|
+
- app/controllers/decidim/feeds_ui/users_controller.rb
|
89
|
+
- app/helpers/decidim/feeds_ui/application_helper.rb
|
90
|
+
- app/models/decidim/feeds_ui/application_record.rb
|
91
|
+
- app/packs/entrypoints/decidim_feeds_ui.js
|
92
|
+
- app/packs/images/decidim/feeds_ui/DigifondsGefoerdert.png
|
93
|
+
- app/packs/images/decidim/feeds_ui/icon.svg
|
94
|
+
- app/packs/images/decidim/feeds_ui/mitgestalten-logo.png
|
95
|
+
- app/packs/src/decidim/feeds_ui/feeds_ui.js
|
96
|
+
- app/packs/stylesheets/decidim/feeds_ui/feeds_ui.scss
|
97
|
+
- app/permissions/decidim/feeds_ui/admin/permissions.rb
|
98
|
+
- app/permissions/decidim/feeds_ui/permissions.rb
|
99
|
+
- app/views/decidim/feeds_ui/users/_users_list.html.erb
|
100
|
+
- app/views/decidim/feeds_ui/users/filter_users.js.erb
|
101
|
+
- app/views/decidim/feeds_ui/users/index.html.erb
|
102
|
+
- app/views/decidim/feeds_ui/users/user_profile.html.erb
|
103
|
+
- app/views/layouts/decidim/_admin_links.html.erb
|
104
|
+
- app/views/layouts/decidim/_logo.html.erb
|
105
|
+
- app/views/layouts/decidim/footer/_main.html.erb
|
106
|
+
- app/views/layouts/decidim/footer/_mini.html.erb
|
107
|
+
- app/views/layouts/decidim/header/_links_mobile_top.html.erb
|
108
|
+
- app/views/layouts/decidim/header/_main.html.erb
|
109
|
+
- app/views/layouts/decidim/header/_main_links_desktop.html.erb
|
110
|
+
- app/views/layouts/decidim/header/_main_links_dropdown.html.erb
|
111
|
+
- app/views/layouts/decidim/header/_main_links_mobile.html.erb
|
112
|
+
- app/views/layouts/decidim/header/_menu.html.erb
|
113
|
+
- config/assets.rb
|
114
|
+
- config/i18n-tasks.yml
|
115
|
+
- config/locales/bs.yml
|
116
|
+
- config/locales/de.yml
|
117
|
+
- config/locales/en.yml
|
118
|
+
- config/locales/hr.yml
|
119
|
+
- config/locales/it.yml
|
120
|
+
- config/locales/sr.yml
|
121
|
+
- config/locales/tr.yml
|
122
|
+
- lib/decidim/feeds_ui.rb
|
123
|
+
- lib/decidim/feeds_ui/admin.rb
|
124
|
+
- lib/decidim/feeds_ui/admin_engine.rb
|
125
|
+
- lib/decidim/feeds_ui/engine.rb
|
126
|
+
- lib/decidim/feeds_ui/menu.rb
|
127
|
+
- lib/decidim/feeds_ui/test/factories.rb
|
128
|
+
- lib/decidim/feeds_ui/version.rb
|
129
|
+
homepage: https://github.com/DecidimAustria/decidim-module-feeds_ui/
|
130
|
+
licenses:
|
131
|
+
- AGPL-3.0
|
132
|
+
metadata:
|
133
|
+
bug_tracker_uri: https://github.com/DecidimAustria/decidim-module-feeds_ui/issues
|
134
|
+
source_code_uri: https://github.com/DecidimAustria/decidim-module-feeds_ui/
|
135
|
+
post_install_message:
|
136
|
+
rdoc_options: []
|
137
|
+
require_paths:
|
138
|
+
- lib
|
139
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "~>"
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '3.1'
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
requirements: []
|
150
|
+
rubygems_version: 3.3.27
|
151
|
+
signing_key:
|
152
|
+
specification_version: 4
|
153
|
+
summary: Reduced UI enhancing decidim-feeds
|
154
|
+
test_files: []
|