user_interface 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +39 -0
- data/app/assets/images/user_interface/ui/accept.png +0 -0
- data/app/assets/images/user_interface/ui/add-small.png +0 -0
- data/app/assets/images/user_interface/ui/add.png +0 -0
- data/app/assets/images/user_interface/ui/alert.png +0 -0
- data/app/assets/images/user_interface/ui/download.png +0 -0
- data/app/assets/images/user_interface/ui/edit-small.png +0 -0
- data/app/assets/images/user_interface/ui/edit.png +0 -0
- data/app/assets/images/user_interface/ui/en_flag.png +0 -0
- data/app/assets/images/user_interface/ui/en_uk_flag.png +0 -0
- data/app/assets/images/user_interface/ui/en_us_flag.png +0 -0
- data/app/assets/images/user_interface/ui/export.png +0 -0
- data/app/assets/images/user_interface/ui/fr_flag.png +0 -0
- data/app/assets/images/user_interface/ui/kml.png +0 -0
- data/app/assets/images/user_interface/ui/notice.png +0 -0
- data/app/assets/images/user_interface/ui/remove-small.png +0 -0
- data/app/assets/images/user_interface/ui/remove.png +0 -0
- data/app/assets/images/user_interface/ui/viewer.png +0 -0
- data/app/assets/images/user_interface/ui/warning.png +0 -0
- data/app/assets/stylesheets/user_interface.css +7 -0
- data/app/assets/stylesheets/user_interface/_layout.scss +330 -0
- data/app/assets/stylesheets/user_interface/_layout.scss~ +290 -0
- data/app/controllers/languages_controller.rb +23 -0
- data/app/helpers/flash_helper.rb +9 -0
- data/app/helpers/languages_helper.rb +16 -0
- data/app/helpers/tabs_helper.rb +9 -0
- data/app/views/devise/_links.erb +41 -0
- data/app/views/devise/confirmations/new.html.erb +13 -0
- data/app/views/devise/mailer/confirmation_instructions.fr.html.erb +6 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/invitation_instructions.fr.html.erb +8 -0
- data/app/views/devise/mailer/invitation_instructions.html.erb +9 -0
- data/app/views/devise/mailer/reset_password_instructions.fr.html.erb +9 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +17 -0
- data/app/views/devise/passwords/new.html.erb +13 -0
- data/app/views/devise/registrations/edit.html.erb +27 -0
- data/app/views/devise/registrations/new.html.erb +16 -0
- data/app/views/devise/sessions/new.html.erb +19 -0
- data/app/views/devise/shared/links.erb +32 -0
- data/app/views/devise/unlocks/new.html.erb +12 -0
- data/config/locales/devise.fr.yml +86 -0
- data/config/locales/devise.yml +79 -0
- data/config/routes.rb +3 -0
- data/lib/tasks/user_interface_tasks.rake +4 -0
- data/lib/user_interface.rb +4 -0
- data/lib/user_interface/engine.rb +18 -0
- data/lib/user_interface/language_support.rb +25 -0
- data/lib/user_interface/version.rb +3 -0
- metadata +179 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
<p>Bonjour <%= @resource.email %>!</p>
|
2
|
+
|
3
|
+
<p>Une demande de changement de mot de passe a été reçue, vous pouvez modifier votre mot de passe en suivant le lien ci-dessous.</p>
|
4
|
+
|
5
|
+
<p><%= link_to 'Modifier mon mot de passe', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
|
6
|
+
|
7
|
+
<p>Si vous ne souhaitez pas modifier votre mot de passe, ignorez ce message.</p>
|
8
|
+
<p>Votre mot de passe est conservé jusqu'à ce que vous suiviez le lien ci-dessus et que vous définissiez un nouveau mot de passe.</p>
|
9
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<p>Hello <%= @resource.email %>!</p>
|
2
|
+
|
3
|
+
<p>Someone has requested a link to change your password, and you can do this through the link below.</p>
|
4
|
+
|
5
|
+
<p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
|
6
|
+
|
7
|
+
<p>If you didn't request this, please ignore this email.</p>
|
8
|
+
<p>Your password won't change until you access the link above and create a new one.</p>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<p>Hello <%= @resource.email %>!</p>
|
2
|
+
|
3
|
+
<p>Your account has been locked due to an excessive amount of unsuccessful sign in attempts.</p>
|
4
|
+
|
5
|
+
<p>Click the link below to unlock your account:</p>
|
6
|
+
|
7
|
+
<p><%= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token) %></p>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%= title_tag t('.title') %>
|
2
|
+
|
3
|
+
<%= semantic_form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
|
4
|
+
|
5
|
+
<%= f.inputs do %>
|
6
|
+
<%= f.input :reset_password_token, :as => :hidden %>
|
7
|
+
<%= f.input :password, :as => :password %>
|
8
|
+
<%= f.input :password_confirmation, :as => :password %>
|
9
|
+
<% end %>
|
10
|
+
|
11
|
+
<%= f.actions do %>
|
12
|
+
<%= f.action :submit, :as => :button, :label => t('.commit') %>
|
13
|
+
<%= f.action :cancel, :as => :link %>
|
14
|
+
<% end %>
|
15
|
+
<% end %>
|
16
|
+
|
17
|
+
<%= render "links" %>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<%= title_tag t('.title') %>
|
2
|
+
|
3
|
+
<%= semantic_form_for(resource, :as => resource_name, :url => password_path(resource_name)) do |form| %>
|
4
|
+
<%= form.inputs :email %>
|
5
|
+
|
6
|
+
<%= form.actions do %>
|
7
|
+
<%= form.action :submit, :as => :button, :label => t('.commit') %>
|
8
|
+
<%= form.action :cancel, :as => :link %>
|
9
|
+
<% end %>
|
10
|
+
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<%= render "links" %>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<%= title_tag t('.title') %>
|
2
|
+
|
3
|
+
<%= semantic_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |form| %>
|
4
|
+
<%= form.inputs do %>
|
5
|
+
<% if resource.respond_to?( :name) %>
|
6
|
+
<%= form.input :name %>
|
7
|
+
<% end %>
|
8
|
+
<%= form.input :email %>
|
9
|
+
<%= form.input :password, :as => :password %>
|
10
|
+
<%= form.input :password_confirmation, :as => :password %>
|
11
|
+
|
12
|
+
<%= form.input :current_password, :as => :password %>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<%= form.actions do %>
|
16
|
+
<%= form.action :submit, :as => :button, :label => t('.commit') %>
|
17
|
+
<%= form.action :cancel, :as => :link %>
|
18
|
+
<% end %>
|
19
|
+
<% end %>
|
20
|
+
|
21
|
+
<% content_for :sidebar do %>
|
22
|
+
<ul class="actions">
|
23
|
+
<%= link_to t('.actions.destroy'), registration_path(resource_name), :confirm => t('.actions.destroy_confirm'), :method => :delete, :class => "remove" %>
|
24
|
+
</ul>
|
25
|
+
<% end %>
|
26
|
+
|
27
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<%= title_tag t('.title') %>
|
2
|
+
|
3
|
+
<%= semantic_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |form| %>
|
4
|
+
<%= form.inputs do %>
|
5
|
+
<%= form.input :email %>
|
6
|
+
<%= form.input :password, :as => :password %>
|
7
|
+
<%= form.input :password_confirmation, :as => :password %>
|
8
|
+
<% end %>
|
9
|
+
|
10
|
+
<%= form.actions do %>
|
11
|
+
<%= form.action :submit, :as => :button, :label => t('.commit') %>
|
12
|
+
<%= form.action :cancel, :as => :link %>
|
13
|
+
<% end %>
|
14
|
+
<% end %>
|
15
|
+
|
16
|
+
<%= render "links" %>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<%= title_tag t('.title') %>
|
2
|
+
|
3
|
+
<%= semantic_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |form| %>
|
4
|
+
<%= form.inputs do %>
|
5
|
+
<%= form.input :email %>
|
6
|
+
<%= form.input :password, :as => :password %>
|
7
|
+
|
8
|
+
<% if devise_mapping.rememberable? -%>
|
9
|
+
<%= form.input :remember_me, :as => :boolean %>
|
10
|
+
<% end %>
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
|
14
|
+
<%= form.actions do %>
|
15
|
+
<%= form.action :submit, :as => :button, :label => t('.commit') %>
|
16
|
+
<% end %>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
<%= render "links" %>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<% content_for :sidebar do %>
|
2
|
+
<ul class="actions">
|
3
|
+
|
4
|
+
<%- if controller_name != 'sessions' %>
|
5
|
+
<li>
|
6
|
+
<%= link_to t('devise.sessions.actions.new'), new_session_path(resource_name) %>
|
7
|
+
</li>
|
8
|
+
<% end -%>
|
9
|
+
|
10
|
+
<li>
|
11
|
+
<%= link_to t('subscriptions.actions.new'), new_subscription_path %>
|
12
|
+
</li>
|
13
|
+
|
14
|
+
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
|
15
|
+
<li>
|
16
|
+
<%= link_to t('devise.passwords.actions.new'), new_password_path(resource_name) %>
|
17
|
+
</li>
|
18
|
+
<% end -%>
|
19
|
+
|
20
|
+
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
21
|
+
<li>
|
22
|
+
<%= link_to t('devise.confirmations.actions.new'), new_confirmation_path(resource_name) %>
|
23
|
+
</li>
|
24
|
+
<% end -%>
|
25
|
+
|
26
|
+
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
27
|
+
<li>
|
28
|
+
<%= link_to t('devise.unlocks.actions.new'), new_unlock_path(resource_name) %>
|
29
|
+
</li>
|
30
|
+
<% end -%>
|
31
|
+
</ul>
|
32
|
+
<% end %>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h2>Resend unlock instructions</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<p><%= f.label :email %><br />
|
7
|
+
<%= f.text_field :email %></p>
|
8
|
+
|
9
|
+
<p><%= f.submit "Resend unlock instructions" %></p>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<%= render "links" %>
|
@@ -0,0 +1,86 @@
|
|
1
|
+
fr:
|
2
|
+
errors:
|
3
|
+
messages:
|
4
|
+
not_found: "n'a pas été trouvé(e)"
|
5
|
+
already_confirmed: "a déjà été validé(e)"
|
6
|
+
not_locked: "n'était pas verrouillé(e)"
|
7
|
+
not_saved:
|
8
|
+
one: "1 erreur a empêché ce(tte) %{resource} d'être sauvegardé(e) :"
|
9
|
+
other: "%{count} erreurs ont empêché ce(tte) %{resource} d'être sauvegardé(e) :"
|
10
|
+
devise:
|
11
|
+
shared:
|
12
|
+
sign_in: "Se connecter"
|
13
|
+
sign_up: "S'enregistrer"
|
14
|
+
forgot_password: "Mot de passe oublié ?"
|
15
|
+
didnt_receive_confirmation_instructions?: "Email de validation non reçu ?"
|
16
|
+
didnt_receive_unlock_instructions?: "Email de déverrouillage non reçu ?"
|
17
|
+
sign_in_with_omniauth: "Se connecter via %{provider}"
|
18
|
+
failure:
|
19
|
+
already_authenticated: "Vous êtes déjà connecté !"
|
20
|
+
unauthenticated: "Vous devez vous connecter ou vous inscrire pour continuer."
|
21
|
+
unconfirmed: "Vous devez valider votre compte pour continuer."
|
22
|
+
locked: "Votre compte est verrouillé."
|
23
|
+
invalid: "Email ou mot de passe incorrect."
|
24
|
+
invalid_token: "Jeton d'authentification incorrect."
|
25
|
+
timeout: "Votre session est expirée, veuillez vous reconnecter pour continuer."
|
26
|
+
inactive: "Votre compte n'est pas encore activé."
|
27
|
+
sessions:
|
28
|
+
signed_in: "Connecté."
|
29
|
+
signed_out: "Déconnecté."
|
30
|
+
passwords:
|
31
|
+
change_your_password: "Changez votre mot de passe"
|
32
|
+
new_password: "Nouveau mot de passe"
|
33
|
+
confirm_new_password: "Confirmer le nouveau mot de passe"
|
34
|
+
change_my_password: "Changer mon mot de passe"
|
35
|
+
send_reset_password_instructions: "Envoyez-moi les instructions de réinitialisation"
|
36
|
+
send_instructions: 'Vous allez recevoir les instructions de réinitialisation du mot de passe dans quelques instants'
|
37
|
+
updated: 'Votre mot de passe a été édité avec succès, vous êtes maintenant connecté'
|
38
|
+
confirmations:
|
39
|
+
resend_instructions: 'Ré-envoyer les instructions de confirmation'
|
40
|
+
send_instructions: 'Vous allez recevoir les instructions nécessaires à la confirmation de votre compte dans quelques minutes'
|
41
|
+
confirmed: 'Votre compte a été validé, vous êtes maintenant connecté'
|
42
|
+
registrations:
|
43
|
+
signed_up: 'Bienvenue, vous êtes connecté'
|
44
|
+
edit: "Editer %{resourcename}"
|
45
|
+
leave_blank: "laissez vide si vous ne désirez pas le changer"
|
46
|
+
current_password_label: "Nous avons besoin de votre mot de passe actuel pour confirmer les changements"
|
47
|
+
update: 'Modifier'
|
48
|
+
unhappy: "Mécontent"
|
49
|
+
cancel_my_account: "Supprimer mon compte"
|
50
|
+
confirm: "Êtes-vous sûr ?"
|
51
|
+
back: "Retour"
|
52
|
+
signed_up_but_REASON: "Votre compte a été trouvé. Cependant, nous n'avons pas pu vous connecter car votre compte est %{reason}."
|
53
|
+
updated: 'Votre compte a été modifié avec succès.'
|
54
|
+
destroyed: 'Votre compte a été supprimé avec succès. Nous espérons vous revoir bientôt.'
|
55
|
+
unlocks:
|
56
|
+
resend_instructions: "Ré-envoyer les instructions de déblocage"
|
57
|
+
send_instructions: 'Vous allez recevoir les instructions nécessaires au déblocage de votre compte dans quelques instants'
|
58
|
+
unlocked: 'Votre compte a été débloqué avec succès, vous êtes maintenant connecté.'
|
59
|
+
omniauth_callbacks:
|
60
|
+
success: 'Authentifié avec succès via %{kind}.'
|
61
|
+
failure: "Nous n'avons pas pu vous authentifier via %{kind} : '%{reason}'."
|
62
|
+
mailer:
|
63
|
+
hello: "Bienvenu %{email} !"
|
64
|
+
welcome: "Bienvenu %{email} !"
|
65
|
+
confirm: "Valider mon compte"
|
66
|
+
change: 'Changer mon mot de passe'
|
67
|
+
someone_requested: "Un changement de mot de passe a été demandé. Vous pouvez le faire en cliquant sur le lien ci-dessous."
|
68
|
+
please_ignore: "Si vous n'avez pas fait cette demande, veuillez ignorer cet email."
|
69
|
+
password_wont_change: "Votre mot de passe ne sera pas changé tant que vous n'aurez pas accédé au lien ci-dessus pour en créer un nouveau."
|
70
|
+
locked: "Votre compte a été bloqué à cause d'un nombre excessif de tentatives de connexion."
|
71
|
+
click_to_unlock: "Cliquez sur le lien ci-dessous pour déverrouiller votre compte"
|
72
|
+
unlock: "Déverrouiller mon compte"
|
73
|
+
confirmation_instructions:
|
74
|
+
subject: "Instructions de confirmation"
|
75
|
+
reset_password_instructions:
|
76
|
+
subject: "Instructions pour changer le mot de passe"
|
77
|
+
unlock_instructions:
|
78
|
+
subject: "Instructions pour déverrouiller le compte"
|
79
|
+
invitations:
|
80
|
+
send_instructions: 'Une invitation a été envoyée par mail à %{email}.'
|
81
|
+
invitation_token_invalid: "Le token de l'invitation n'est pas vaide!"
|
82
|
+
updated: 'Mot de passe mis à jour avec succès. Vous êtes maintenant connecté.'
|
83
|
+
no_invitations_remaining: "Aucune invitation restante"
|
84
|
+
edit:
|
85
|
+
submit_button: 'Valider'
|
86
|
+
header: 'Mise à jour du mot de passe'
|
@@ -0,0 +1,79 @@
|
|
1
|
+
en:
|
2
|
+
devise:
|
3
|
+
sessions:
|
4
|
+
new:
|
5
|
+
title: Sign in
|
6
|
+
commit: Sign in
|
7
|
+
confirmations:
|
8
|
+
new:
|
9
|
+
title: Resend confirmation instructions
|
10
|
+
registrations:
|
11
|
+
new:
|
12
|
+
title: Sign up
|
13
|
+
commit: Sign up
|
14
|
+
edit:
|
15
|
+
title: "Your profile"
|
16
|
+
commit: Update
|
17
|
+
actions:
|
18
|
+
destroy: Delete your profile
|
19
|
+
destroy_confirm: Do you confirm to delete your profile ?
|
20
|
+
passwords:
|
21
|
+
new:
|
22
|
+
title: Update password
|
23
|
+
commit: Receive an email with instructions about how to reset your password
|
24
|
+
edit:
|
25
|
+
title: Change your password
|
26
|
+
new_password: New password
|
27
|
+
new_password_confirmation: New password confirmation
|
28
|
+
commit: Update password
|
29
|
+
links:
|
30
|
+
sign_in: "Sign in"
|
31
|
+
sign_up: "Sign up"
|
32
|
+
new_password: Forget your password ?
|
33
|
+
new_confirmation: "Didn't receive confirmation instructions?"
|
34
|
+
fr:
|
35
|
+
activerecord:
|
36
|
+
attributes:
|
37
|
+
user:
|
38
|
+
password: Mot de passe
|
39
|
+
devise:
|
40
|
+
sessions:
|
41
|
+
new:
|
42
|
+
title: Se connecter
|
43
|
+
commit: Se connecter
|
44
|
+
confirmations:
|
45
|
+
new:
|
46
|
+
title: Renvoyer le mail de confirmation
|
47
|
+
registrations:
|
48
|
+
new:
|
49
|
+
title: "S'inscrire"
|
50
|
+
commit: Créer un compte
|
51
|
+
edit:
|
52
|
+
title: "Votre Profil"
|
53
|
+
commit: Modifier
|
54
|
+
actions:
|
55
|
+
destroy: Supprimer votre profil
|
56
|
+
destroy_confirm: Etes vous sûr de vouloir supprimer *définitivement* votre profil ?
|
57
|
+
passwords:
|
58
|
+
new:
|
59
|
+
title: Mot de passe oublié
|
60
|
+
commit: Envoyer les instructions pour un nouveau mot de passe
|
61
|
+
edit:
|
62
|
+
title: Changer de mot de passe
|
63
|
+
new_password: Nouveau mot de passe
|
64
|
+
new_password_confirmation: Confirmation du nouveau mot de passe
|
65
|
+
commit: Changer de mot de passe
|
66
|
+
links:
|
67
|
+
sign_in: "Se connecter"
|
68
|
+
sign_up: "S'inscrire"
|
69
|
+
new_password: Mot de passe oublié
|
70
|
+
new_confirmation: "Vous n'avez pas reçu les instructions de confirmation ?"
|
71
|
+
helpers:
|
72
|
+
label:
|
73
|
+
user:
|
74
|
+
name: Nom complet
|
75
|
+
password: Mot de passe
|
76
|
+
password_confirmation: Confirmation du mot de passe
|
77
|
+
current_password: Mot de passe actuel
|
78
|
+
remember_me: Se souvenir de moi
|
79
|
+
|
data/config/routes.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
module UserInterface
|
2
|
+
class Engine < Rails::Engine
|
3
|
+
|
4
|
+
initializer 'user_interface.app_controller' do |app|
|
5
|
+
ActiveSupport.on_load(:action_controller) do
|
6
|
+
require 'user_interface/language_support'
|
7
|
+
include UserInterface::LanguageSupport
|
8
|
+
end
|
9
|
+
|
10
|
+
config.to_prepare do
|
11
|
+
# To use our devise views instead of original ones
|
12
|
+
ApplicationController.prepend_view_path File.expand_path("../../../app/views", __FILE__)
|
13
|
+
ActionMailer::Base.prepend_view_path File.expand_path("../../../app/views", __FILE__)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module UserInterface::LanguageSupport
|
2
|
+
|
3
|
+
def self.included(base)
|
4
|
+
base.class_eval do
|
5
|
+
if respond_to?(:helper_method)
|
6
|
+
protected :current_language, :current_language?
|
7
|
+
helper_method :current_language, :current_language?
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def current_language
|
13
|
+
(session[:language] or :fr)
|
14
|
+
end
|
15
|
+
|
16
|
+
def current_language=(language)
|
17
|
+
I18n.locale = language.to_sym
|
18
|
+
session[:language] = language.to_sym unless language.blank?
|
19
|
+
end
|
20
|
+
|
21
|
+
def current_language?(language)
|
22
|
+
not language.blank? and self.current_language == language.to_sym
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: user_interface
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Marc Florisson
|
14
|
+
- Luc Donnet
|
15
|
+
- Alban Peignier
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2013-02-22 00:00:00 Z
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: rails
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">"
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 3
|
33
|
+
- 1
|
34
|
+
- 0
|
35
|
+
version: 3.1.0
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: sqlite3
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 3
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
version: "0"
|
50
|
+
type: :development
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: rspec-rails
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 3
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
version: "0"
|
64
|
+
type: :development
|
65
|
+
version_requirements: *id003
|
66
|
+
- !ruby/object:Gem::Dependency
|
67
|
+
name: capybara
|
68
|
+
prerelease: false
|
69
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
78
|
+
type: :development
|
79
|
+
version_requirements: *id004
|
80
|
+
description: User Interface for all our web site.
|
81
|
+
email:
|
82
|
+
- mflorisson@cityway.fr
|
83
|
+
- ldonnet@cityway.fr
|
84
|
+
- alban@tryphon.eu
|
85
|
+
executables: []
|
86
|
+
|
87
|
+
extensions: []
|
88
|
+
|
89
|
+
extra_rdoc_files: []
|
90
|
+
|
91
|
+
files:
|
92
|
+
- app/controllers/languages_controller.rb
|
93
|
+
- app/helpers/languages_helper.rb
|
94
|
+
- app/helpers/flash_helper.rb
|
95
|
+
- app/helpers/tabs_helper.rb
|
96
|
+
- app/assets/images/user_interface/ui/download.png
|
97
|
+
- app/assets/images/user_interface/ui/remove.png
|
98
|
+
- app/assets/images/user_interface/ui/export.png
|
99
|
+
- app/assets/images/user_interface/ui/viewer.png
|
100
|
+
- app/assets/images/user_interface/ui/accept.png
|
101
|
+
- app/assets/images/user_interface/ui/en_us_flag.png
|
102
|
+
- app/assets/images/user_interface/ui/remove-small.png
|
103
|
+
- app/assets/images/user_interface/ui/add-small.png
|
104
|
+
- app/assets/images/user_interface/ui/edit-small.png
|
105
|
+
- app/assets/images/user_interface/ui/fr_flag.png
|
106
|
+
- app/assets/images/user_interface/ui/alert.png
|
107
|
+
- app/assets/images/user_interface/ui/edit.png
|
108
|
+
- app/assets/images/user_interface/ui/kml.png
|
109
|
+
- app/assets/images/user_interface/ui/add.png
|
110
|
+
- app/assets/images/user_interface/ui/warning.png
|
111
|
+
- app/assets/images/user_interface/ui/en_flag.png
|
112
|
+
- app/assets/images/user_interface/ui/en_uk_flag.png
|
113
|
+
- app/assets/images/user_interface/ui/notice.png
|
114
|
+
- app/assets/stylesheets/user_interface.css
|
115
|
+
- app/assets/stylesheets/user_interface/_layout.scss
|
116
|
+
- app/assets/stylesheets/user_interface/_layout.scss~
|
117
|
+
- app/views/devise/unlocks/new.html.erb
|
118
|
+
- app/views/devise/confirmations/new.html.erb
|
119
|
+
- app/views/devise/shared/links.erb
|
120
|
+
- app/views/devise/sessions/new.html.erb
|
121
|
+
- app/views/devise/_links.erb
|
122
|
+
- app/views/devise/passwords/edit.html.erb
|
123
|
+
- app/views/devise/passwords/new.html.erb
|
124
|
+
- app/views/devise/mailer/reset_password_instructions.fr.html.erb
|
125
|
+
- app/views/devise/mailer/reset_password_instructions.html.erb
|
126
|
+
- app/views/devise/mailer/confirmation_instructions.fr.html.erb
|
127
|
+
- app/views/devise/mailer/unlock_instructions.html.erb
|
128
|
+
- app/views/devise/mailer/invitation_instructions.fr.html.erb
|
129
|
+
- app/views/devise/mailer/confirmation_instructions.html.erb
|
130
|
+
- app/views/devise/mailer/invitation_instructions.html.erb
|
131
|
+
- app/views/devise/registrations/edit.html.erb
|
132
|
+
- app/views/devise/registrations/new.html.erb
|
133
|
+
- config/routes.rb
|
134
|
+
- config/locales/devise.fr.yml
|
135
|
+
- config/locales/devise.yml
|
136
|
+
- lib/tasks/user_interface_tasks.rake
|
137
|
+
- lib/user_interface/version.rb
|
138
|
+
- lib/user_interface/language_support.rb
|
139
|
+
- lib/user_interface/engine.rb
|
140
|
+
- lib/user_interface.rb
|
141
|
+
- MIT-LICENSE
|
142
|
+
- Rakefile
|
143
|
+
- README.rdoc
|
144
|
+
homepage: https://github.com/dryade/user-interface.git
|
145
|
+
licenses: []
|
146
|
+
|
147
|
+
post_install_message:
|
148
|
+
rdoc_options: []
|
149
|
+
|
150
|
+
require_paths:
|
151
|
+
- lib
|
152
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
hash: 3
|
158
|
+
segments:
|
159
|
+
- 0
|
160
|
+
version: "0"
|
161
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
|
+
none: false
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
hash: 3
|
167
|
+
segments:
|
168
|
+
- 0
|
169
|
+
version: "0"
|
170
|
+
requirements: []
|
171
|
+
|
172
|
+
rubyforge_project:
|
173
|
+
rubygems_version: 1.8.24
|
174
|
+
signing_key:
|
175
|
+
specification_version: 3
|
176
|
+
summary: User Interface for all our web site.
|
177
|
+
test_files: []
|
178
|
+
|
179
|
+
has_rdoc:
|