mumuki-laboratory 7.10.2 → 7.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/stylesheets/mumuki_laboratory/application/_errors.scss +15 -8
- data/app/views/errors/forbidden.html.erb +4 -3
- data/app/views/errors/gone.html.erb +3 -5
- data/app/views/errors/internal_server_error.html.erb +4 -9
- data/app/views/errors/not_found.html.erb +3 -8
- data/app/views/errors/unauthorized.html.erb +1 -4
- data/lib/mumuki/laboratory/locales/en.yml +9 -4
- data/lib/mumuki/laboratory/locales/es-CL.yml +11 -6
- data/lib/mumuki/laboratory/locales/es.yml +11 -6
- data/lib/mumuki/laboratory/locales/pt.yml +11 -6
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/features/home_private_flow_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbad2f51a31216e426cce2ee48a7588c5eeea4df4873030f8c1df14aba21cc1f
|
4
|
+
data.tar.gz: 4be9b7426c73cc44f2993fff346054d0022918b0d49c86456047556b62238f1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c7d92aabcdcfb6c188bc2ac57219ef53beeda954df0dc70b4702ed61feaa13a3c8d3558b7910aa5b602b510db42a10e22803e9f0560b3a1f27284120ad95b99
|
7
|
+
data.tar.gz: 9a3401a323fd4e792d65d6a3c937dd56813bd39db61f48f1fc8f3c7b8813b4346cda3e8977348200de5e525333ad6a0f127219756cfb6c2d20649c889539f98c
|
data/README.md
CHANGED
@@ -172,7 +172,7 @@ Likewise, you will sometimes require a guide that is not locally available. Run
|
|
172
172
|
require 'mumuki/domain/seed'
|
173
173
|
|
174
174
|
# import a new guide
|
175
|
-
Mumuki::Domain::Seed.contents_syncer.locate_and_import!
|
175
|
+
Mumuki::Domain::Seed.contents_syncer.locate_and_import! Guide, slug
|
176
176
|
|
177
177
|
# update an existing guide object
|
178
178
|
Mumuki::Domain::Seed.contents_syncer.import! Mumukit::Sync.key(Guide, slug), guide
|
@@ -14,10 +14,11 @@
|
|
14
14
|
max-height: 350px;
|
15
15
|
&.error-code-img {
|
16
16
|
margin-top: -80px;
|
17
|
-
margin-left:
|
17
|
+
margin-left: 0;
|
18
|
+
margin-bottom: 0;
|
18
19
|
min-height: 310px;
|
19
20
|
max-height: 500px;
|
20
|
-
width: calc(100%
|
21
|
+
width: calc(100%);
|
21
22
|
object-position: 50% 50%;
|
22
23
|
overflow: hidden;
|
23
24
|
@media (max-width: $screen-lg) {
|
@@ -27,20 +28,26 @@
|
|
27
28
|
}
|
28
29
|
}
|
29
30
|
.body {
|
30
|
-
|
31
|
+
width: 60%;
|
31
32
|
margin: auto;
|
33
|
+
h2 {
|
34
|
+
font-size: 42px;
|
35
|
+
}
|
32
36
|
p {
|
33
|
-
|
34
|
-
font-size: 89%;
|
37
|
+
font-size: 25px;
|
35
38
|
padding: 0;
|
36
39
|
margin: 0;
|
37
|
-
.error-link {
|
38
|
-
text-transform: uppercase;
|
39
|
-
}
|
40
40
|
a.btn {
|
41
41
|
margin-top: 30px;
|
42
42
|
}
|
43
43
|
}
|
44
|
+
.mu-maybe {
|
45
|
+
color: darken($mu-color-disabled, 5%);
|
46
|
+
font-size: 18px;
|
47
|
+
}
|
48
|
+
.mu-error-status-line {
|
49
|
+
display: none;
|
50
|
+
}
|
44
51
|
}
|
45
52
|
}
|
46
53
|
|
@@ -3,13 +3,14 @@
|
|
3
3
|
<img class="error-code-img" src="/error/403.svg">
|
4
4
|
</div>
|
5
5
|
<div class="body">
|
6
|
-
<
|
6
|
+
<h2><%= t('error.title.forbidden') %></h2>
|
7
|
+
<p class="mu-error-status-line">
|
7
8
|
<%= t(:error_description, error: link_to_status_codes(403)).html_safe %>
|
8
9
|
</p>
|
9
|
-
<p>
|
10
|
+
<p class="mu-error-explanation-line">
|
10
11
|
<%= Organization.current.explain_error(403, explanation).html_safe %>
|
11
12
|
</p>
|
12
|
-
<p>
|
13
|
+
<p class="mu-error-contact-line mu-maybe">
|
13
14
|
<%= t(:contact_administrator, link: mail_to_administrator).html_safe %>
|
14
15
|
</p>
|
15
16
|
</div>
|
@@ -3,15 +3,13 @@
|
|
3
3
|
<img class="error-code-img" src="/error/410.svg">
|
4
4
|
</div>
|
5
5
|
<div class="body">
|
6
|
-
<
|
6
|
+
<h2><%= t('error.title.gone') %></h2>
|
7
|
+
<p class="mu-error-status-line">
|
7
8
|
<%= t(:error_description, error: link_to_status_codes(410)).html_safe %>
|
8
9
|
</p>
|
9
|
-
<p>
|
10
|
+
<p class="mu-error-explanation-line">
|
10
11
|
<%= Organization.current.explain_error(410, explanation).html_safe %>
|
11
12
|
</p>
|
12
|
-
<p>
|
13
|
-
<a class="btn btn-success" href="/"> <%= t(:back_to_mumuki) %> </a>
|
14
|
-
</p>
|
15
13
|
</div>
|
16
14
|
<% end %>
|
17
15
|
|
@@ -3,17 +3,12 @@
|
|
3
3
|
<img class="error-code-img" src="/error/500.svg">
|
4
4
|
</div>
|
5
5
|
<div class="body">
|
6
|
-
<
|
6
|
+
<h2><%= t('error.title.internal_server_error') %></h2>
|
7
|
+
<p class="mu-error-status-line">
|
7
8
|
<%= t(:error_description, error: link_to_status_codes(500)).html_safe %>
|
8
9
|
</p>
|
9
|
-
<p>
|
10
|
-
<%=
|
11
|
-
</p>
|
12
|
-
<p>
|
13
|
-
<%= t(:tell_us_if_our_error, issues: link_to_issues(:let_us_know)).html_safe %>
|
14
|
-
</p>
|
15
|
-
<p>
|
16
|
-
<a class="btn btn-success" href="/"> <%= t(:back_to_mumuki) %> </a>
|
10
|
+
<p class="mu-error-contact-line">
|
11
|
+
<%= link_to_issues(:let_us_know).html_safe %>
|
17
12
|
</p>
|
18
13
|
</div>
|
19
14
|
<% end %>
|
@@ -3,17 +3,12 @@
|
|
3
3
|
<img class="error-code-img" src="/error/404.svg">
|
4
4
|
</div>
|
5
5
|
<div class="body">
|
6
|
-
<
|
6
|
+
<h2><%= t('error.title.not_found') %></h2>
|
7
|
+
<p class="mu-error-status-line">
|
7
8
|
<%= t(:error_description, error: link_to_error_404).html_safe %>
|
8
9
|
</p>
|
9
|
-
<p>
|
10
|
+
<p class="mu-error-explanation-line">
|
10
11
|
<%= Organization.current.explain_error(404, :not_found_explanation).html_safe %>
|
11
12
|
</p>
|
12
|
-
<p>
|
13
|
-
<%= t(:tell_us_if_our_error, issues: link_to_issues(:let_us_know)).html_safe %>
|
14
|
-
</p>
|
15
|
-
<p>
|
16
|
-
<a class="btn btn-success" href="/"> <%= t(:back_to_mumuki) %> </a>
|
17
|
-
</p>
|
18
13
|
</div>
|
19
14
|
<% end %>
|
@@ -3,12 +3,9 @@
|
|
3
3
|
<img src="/astor.png">
|
4
4
|
</div>
|
5
5
|
<div class="body">
|
6
|
-
<p>
|
6
|
+
<p class="mu-error-status-line">
|
7
7
|
<%= t(:unauthorized_explanation, error: link_to_status_codes(401)).html_safe %>
|
8
8
|
</p>
|
9
|
-
<p>
|
10
|
-
<a class="btn btn-success" href="/"> <%= t(:back_to_mumuki) %> </a>
|
11
|
-
</p>
|
12
9
|
</div>
|
13
10
|
<% end %>
|
14
11
|
|
@@ -28,7 +28,7 @@ en:
|
|
28
28
|
back_to_mumuki: Back to Mumuki!
|
29
29
|
bibliotheca_ui: Bibliotheca
|
30
30
|
birthdate: Birthdate
|
31
|
-
blocked_forum_explanation:
|
31
|
+
blocked_forum_explanation: Are you in the middle of an exam right now?
|
32
32
|
cancel: Cancel
|
33
33
|
cancel_subscription: Cancel your subscription.
|
34
34
|
chapter: Chapter
|
@@ -47,7 +47,7 @@ en:
|
|
47
47
|
confirm_reset: You are about to restart your exercise. Do you want to proceed?
|
48
48
|
confirm_restart: You are about to delete your progress for this guide. Do you want to proceed?
|
49
49
|
console: Console
|
50
|
-
contact_administrator: 'If you think this is not supposed to happen, please contact
|
50
|
+
contact_administrator: 'If you think this is not supposed to happen, please contact %{link}'
|
51
51
|
content: Content
|
52
52
|
continue_exercise: "Continue"
|
53
53
|
continue_lesson: Continue this lesson!
|
@@ -78,6 +78,12 @@ en:
|
|
78
78
|
error_410: 410 error
|
79
79
|
error_500: 500 error
|
80
80
|
errored: Oops, your solution didn't work
|
81
|
+
error:
|
82
|
+
title:
|
83
|
+
forbidden: You are not allowed to see this content
|
84
|
+
gone: Oops! Content has expired
|
85
|
+
internal_server_error: Oops! Something went wrong
|
86
|
+
not_found: Oops! Page was not found
|
81
87
|
exam_number: 'Exam %{number}:'
|
82
88
|
exams: Exams
|
83
89
|
exercise: Exercise
|
@@ -95,7 +101,7 @@ en:
|
|
95
101
|
female: Female
|
96
102
|
finish: Finish
|
97
103
|
first_name: First Name
|
98
|
-
forbidden_explanation:
|
104
|
+
forbidden_explanation: Please verify you have logged in with the right account
|
99
105
|
format: Format
|
100
106
|
fullscreen: "Fullscreen"
|
101
107
|
gender: Gender
|
@@ -222,7 +228,6 @@ en:
|
|
222
228
|
solve_your_doubts: Solve your doubts
|
223
229
|
solve_your_doubts_teaser: Do you have any doubts?
|
224
230
|
something_went_wrong: Something went wrong!
|
225
|
-
something_went_wrong_explanation: Something is broken in Mumuki.
|
226
231
|
sort: Sort
|
227
232
|
sources: Sources
|
228
233
|
start_lesson: Start this lesson!
|
@@ -27,7 +27,7 @@ es-CL:
|
|
27
27
|
back_to_mumuki: ¡Vuelve a Mumuki!
|
28
28
|
bibliotheca_ui: Biblioteca
|
29
29
|
birthdate: Fecha de nacimiento
|
30
|
-
blocked_forum_explanation:
|
30
|
+
blocked_forum_explanation: ¿Puede que estés en medio de un examen?
|
31
31
|
cancel_subscription: Cancela tu subscripción.
|
32
32
|
chapter: Capítulo
|
33
33
|
chapters: Capítulos
|
@@ -46,7 +46,7 @@ es-CL:
|
|
46
46
|
confirm_reset: Estás por reiniciar tu ejercicio. ¿Quieres continuar?
|
47
47
|
confirm_restart: Estás por borrar tu progreso en esta guía. ¿Quieres continuar?
|
48
48
|
console: Consola
|
49
|
-
contact_administrator: 'Si piensas que es un error, comunícate con
|
49
|
+
contact_administrator: 'Si piensas que es un error, comunícate con %{link}'
|
50
50
|
content: Contenido
|
51
51
|
continue_exercise: "Continuar"
|
52
52
|
continue_lesson: ¡Continúa esta lección!
|
@@ -72,13 +72,19 @@ es-CL:
|
|
72
72
|
edit: Editar
|
73
73
|
editor_placeholder: "...escribe tu solución acá..."
|
74
74
|
email: Email
|
75
|
-
error_description:
|
75
|
+
error_description: Esto es lo que se conoce como <span class="error-link">%{error}</span>.
|
76
76
|
error_401: error 401
|
77
77
|
error_403: error 403
|
78
78
|
error_404: error 404
|
79
79
|
error_410: error 410
|
80
80
|
error_500: error 500
|
81
81
|
errored: ¡Ups! Tu solución no se puede ejecutar
|
82
|
+
error:
|
83
|
+
title:
|
84
|
+
forbidden: No tienes autorización para ver este contenido
|
85
|
+
gone: ¡Ups! El contenido expiró
|
86
|
+
internal_server_error: ¡Ups! Algo no anduvo bien
|
87
|
+
not_found: ¡Ups! La página no existe
|
82
88
|
exam_number: 'Examen %{number}:'
|
83
89
|
exams: Exámenes
|
84
90
|
exercise: Ejercicio
|
@@ -95,7 +101,7 @@ es-CL:
|
|
95
101
|
female: Mujer
|
96
102
|
finish: Terminar
|
97
103
|
first_name: Nombre
|
98
|
-
forbidden_explanation:
|
104
|
+
forbidden_explanation: ¿Puede que hayas ingresado con una cuenta incorrecta?
|
99
105
|
format: Dar formato
|
100
106
|
fullscreen: "Pantalla completa"
|
101
107
|
gender: Género
|
@@ -171,7 +177,7 @@ es-CL:
|
|
171
177
|
no_submissions: ¡Parece que aún no intentaste resolver este ejercicio!
|
172
178
|
no_useful_result: ¿No encontraste lo que estabas buscando?
|
173
179
|
not_found: ¡La página que buscaste no existe!
|
174
|
-
not_found_explanation: Fíjate si escribiste bien la dirección.
|
180
|
+
not_found_explanation: Fíjate si escribiste bien la dirección.
|
175
181
|
not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
|
176
182
|
notify_problem_with_exercise: Reporta un bug
|
177
183
|
office: Secretaría
|
@@ -233,7 +239,6 @@ es-CL:
|
|
233
239
|
solve_your_doubts: Consulta tus dudas
|
234
240
|
solve_your_doubts_teaser: ¿Tienes alguna consulta?
|
235
241
|
something_went_wrong: ¡Ups!, algo no anduvo bien...
|
236
|
-
something_went_wrong_explanation: Algo no anduvo como se esperaba.
|
237
242
|
sort: Ordenar
|
238
243
|
sources: Bibliografía
|
239
244
|
start_lesson: ¡Comienza esta lección!
|
@@ -29,7 +29,7 @@ es:
|
|
29
29
|
back_to_mumuki: ¡Volvé a Mumuki!
|
30
30
|
bibliotheca_ui: Biblioteca
|
31
31
|
birthdate: Fecha de nacimiento
|
32
|
-
blocked_forum_explanation:
|
32
|
+
blocked_forum_explanation: ¿Puede que estés en medio de un examen?
|
33
33
|
cancel: Cancelar
|
34
34
|
cancel_subscription: Cancelá tu subscripción.
|
35
35
|
chapter: Capítulo
|
@@ -50,7 +50,7 @@ es:
|
|
50
50
|
confirm_reset: Estás por reiniciar tu ejercicio. ¿Querés continuar?
|
51
51
|
confirm_restart: Estás por borrar tu progreso en esta guía. ¿Querés continuar?
|
52
52
|
console: Consola
|
53
|
-
contact_administrator: 'Si pensás que es un error, comunicate con
|
53
|
+
contact_administrator: 'Si pensás que es un error, comunicate con %{link}'
|
54
54
|
content: Contenido
|
55
55
|
continue_exercise: "Continuar"
|
56
56
|
continue_lesson: ¡Continuá esta lección!
|
@@ -78,13 +78,19 @@ es:
|
|
78
78
|
edit_profile: Editar perfil
|
79
79
|
editor_placeholder: "...escribí tu solución acá..."
|
80
80
|
email: Email
|
81
|
-
error_description:
|
81
|
+
error_description: Esto es lo que se conoce como <span class="error-link">%{error}</span>.
|
82
82
|
error_401: error 401
|
83
83
|
error_403: error 403
|
84
84
|
error_404: error 404
|
85
85
|
error_410: error 410
|
86
86
|
error_500: error 500
|
87
87
|
errored: ¡Ups! Tu solución no se puede ejecutar
|
88
|
+
error:
|
89
|
+
title:
|
90
|
+
forbidden: No tenés autorización para ver este contenido
|
91
|
+
gone: ¡Ups! El contenido expiró
|
92
|
+
internal_server_error: ¡Ups! Algo no anduvo bien
|
93
|
+
not_found: ¡Ups! La página no existe
|
88
94
|
exam_number: 'Examen %{number}:'
|
89
95
|
exams: Exámenes
|
90
96
|
exercise: Ejercicio
|
@@ -101,7 +107,7 @@ es:
|
|
101
107
|
female: Mujer
|
102
108
|
finish: Terminar
|
103
109
|
first_name: Nombre
|
104
|
-
forbidden_explanation:
|
110
|
+
forbidden_explanation: ¿Puede que hayas ingresado con una cuenta incorrecta?
|
105
111
|
format: Dar formato
|
106
112
|
fullscreen: "Pantalla completa"
|
107
113
|
gender: Género
|
@@ -178,7 +184,7 @@ es:
|
|
178
184
|
no_submissions: ¡Parece que aún no intentaste resolver este ejercicio aún!
|
179
185
|
no_useful_result: ¿No encontraste lo que estabas buscando?
|
180
186
|
not_found: ¡La página que buscaste no existe!
|
181
|
-
not_found_explanation: Fijate si escribiste bien la dirección.
|
187
|
+
not_found_explanation: Fijate si escribiste bien la dirección.
|
182
188
|
not_in_any_organizations: ¡Parece que no estás en ninguna organización todavía!
|
183
189
|
notify_problem_with_exercise: Reportá un bug
|
184
190
|
office: Secretaría
|
@@ -244,7 +250,6 @@ es:
|
|
244
250
|
solve_your_doubts: Consultá tus dudas
|
245
251
|
solve_your_doubts_teaser: ¿Tenés alguna consulta?
|
246
252
|
something_went_wrong: ¡Ups!, algo no anduvo bien...
|
247
|
-
something_went_wrong_explanation: Algo no anduvo como se esperaba.
|
248
253
|
sort: Ordenar
|
249
254
|
sources: Bibliografía
|
250
255
|
start_lesson: ¡Comenzá esta lección!
|
@@ -29,7 +29,7 @@ pt:
|
|
29
29
|
back_to_mumuki: Voltei para Mumuki!
|
30
30
|
bibliotheca_ui: Biblioteca
|
31
31
|
birthdate: Fecha de nacimiento
|
32
|
-
blocked_forum_explanation: Você
|
32
|
+
blocked_forum_explanation: Você está no meio de um exame agora?
|
33
33
|
cancel: Cancelar
|
34
34
|
chapter: Capítulo
|
35
35
|
chapters: Capítulos
|
@@ -45,7 +45,7 @@ pt:
|
|
45
45
|
confirm_reset: Você está prestes a reiniciar seu exercício. Você quer continuar?
|
46
46
|
confirm_restart: Você está prestes a apagar o seu progresso neste guia. Você quer continuar?
|
47
47
|
console: Consola
|
48
|
-
contact_administrator: Se você acha que é um erro, entre em contato com
|
48
|
+
contact_administrator: Se você acha que é um erro, entre em contato com %{link}
|
49
49
|
content: Conteúdo
|
50
50
|
continue_exercise: Continuar
|
51
51
|
continue_lesson: Continue esta lição!
|
@@ -74,13 +74,19 @@ pt:
|
|
74
74
|
edit_profile: Editar perfil
|
75
75
|
editor_placeholder: ... Escreva sua solução aqui ...
|
76
76
|
email: E-mail
|
77
|
-
error_description:
|
77
|
+
error_description: Isto é o que é conhecido como <span class = "error-link"> %{error} </ span>.
|
78
78
|
error_401: erro 401
|
79
79
|
error_403: erro 403
|
80
80
|
error_404: erro 404
|
81
81
|
error_410: erro 410
|
82
82
|
error_500: erro 500
|
83
83
|
errored: Opa! Sua solução não pode ser executada
|
84
|
+
error:
|
85
|
+
title:
|
86
|
+
forbidden: Você não tem autorização para ver esse conteúdo
|
87
|
+
gone: Opa! O conteúdo expirou
|
88
|
+
internal_server_error: Opa! Algo não estava certo
|
89
|
+
not_found: Opa! A página que você pesquisou não existe
|
84
90
|
exam_number: 'Revise %{number}:'
|
85
91
|
exams: Examesca
|
86
92
|
exercise: Exercício
|
@@ -97,7 +103,7 @@ pt:
|
|
97
103
|
female: Feminino
|
98
104
|
finish: Terminar
|
99
105
|
first_name: Nome
|
100
|
-
forbidden_explanation:
|
106
|
+
forbidden_explanation: Você poderia ter entrado com uma conta incorreta?
|
101
107
|
format: Formato
|
102
108
|
fullscreen: Tela completa
|
103
109
|
gender: Gênero
|
@@ -171,7 +177,7 @@ pt:
|
|
171
177
|
no_submissions: Parece que você ainda não tentou resolver este exercício!
|
172
178
|
no_useful_result: Não encontrou o que estava buscando?
|
173
179
|
not_found: A página que você pesquisou não existe!
|
174
|
-
not_found_explanation: Olhe se você escreveu o endereço corretamente.
|
180
|
+
not_found_explanation: Olhe se você escreveu o endereço corretamente.
|
175
181
|
not_in_any_organizations: Parece que você ainda não está em nenhuma organização!
|
176
182
|
notify_problem_with_exercise: Relatar um erro
|
177
183
|
office: Secretariado
|
@@ -231,7 +237,6 @@ pt:
|
|
231
237
|
solve_your_doubts: Consulte suas dúvidas
|
232
238
|
solve_your_doubts_teaser: Você tem alguma dúvida?
|
233
239
|
something_went_wrong: Oops!, Algo não estava certo ...
|
234
|
-
something_went_wrong_explanation: Algo não foi como esperado.
|
235
240
|
sort: Ordenar
|
236
241
|
sources: Bibliografia
|
237
242
|
start_lesson: Comece esta lição!
|
@@ -49,7 +49,7 @@ feature 'private org' do
|
|
49
49
|
set_current_user! visitor
|
50
50
|
|
51
51
|
visit '/'
|
52
|
-
expect(page).to have_text('You are not allowed to see this content
|
52
|
+
expect(page).to have_text('You are not allowed to see this content')
|
53
53
|
expect(visitor.reload.last_organization).to be nil
|
54
54
|
end
|
55
55
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mumuki-laboratory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.10.
|
4
|
+
version: 7.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franco Bulgarelli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-10-
|
11
|
+
date: 2020-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|