social_stream-base 0.9.16 → 0.9.18
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.
- data/app/assets/images/tipsy.gif +0 -0
- data/app/assets/javascripts/activities.js.erb +23 -0
- data/app/assets/javascripts/invitations.js +7 -0
- data/app/assets/javascripts/profiles.js +4 -1
- data/app/assets/stylesheets/activities.css.scss +10 -5
- data/app/assets/stylesheets/base.css.scss +3 -2
- data/app/assets/stylesheets/frontpage.css.scss +2 -1
- data/app/assets/stylesheets/header.css.scss +5 -4
- data/app/controllers/groups_controller.rb +0 -6
- data/app/controllers/search_controller.rb +0 -4
- data/app/controllers/users_controller.rb +1 -6
- data/app/models/activity.rb +21 -7
- data/app/models/actor.rb +5 -3
- data/app/views/activities/_new.html.erb +13 -3
- data/app/views/activities/_options.html.erb +13 -4
- data/app/views/conversations/show.html.erb +1 -1
- data/app/views/conversations/show.js.erb +1 -1
- data/app/views/devise/registrations/edit.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +1 -1
- data/app/views/devise/shared/_links.erb +6 -6
- data/app/views/frontpage/index.html.erb +3 -3
- data/app/views/groups/_new.html.erb +1 -1
- data/app/views/groups/show.html.erb +0 -5
- data/app/views/invitations/_new.html.erb +0 -5
- data/app/views/layouts/_header.erb +5 -44
- data/app/views/layouts/_header_signed_in.erb +44 -0
- data/app/views/layouts/_header_signed_out.erb +36 -0
- data/app/views/layouts/frontpage.html.erb +1 -1
- data/app/views/messages/_form.html.erb +3 -3
- data/app/views/messages/new.html.erb +2 -2
- data/app/views/messages/new.js.erb +1 -1
- data/app/views/posts/create.js.erb +2 -0
- data/app/views/profiles/edit.html.erb +6 -4
- data/app/views/search/index.html.erb +0 -4
- data/app/views/users/show.html.erb +0 -5
- data/config/locales/en.yml +33 -4
- data/config/locales/es.yml +33 -4
- data/lib/generators/social_stream/base/templates/initializer.rb +3 -0
- data/lib/social_stream/base/version.rb +1 -1
- data/lib/social_stream/models/object.rb +2 -1
- data/lib/social_stream-base.rb +4 -1
- data/social_stream-base.gemspec +3 -3
- data/spec/dummy/config/initializers/social_stream.rb +3 -0
- data/vendor/assets/javascripts/jquery.tipsy.js +104 -0
- data/vendor/assets/stylesheets/tipsy.css +7 -0
- metadata +18 -25
- data/app/assets/images/frontpage/join.gif +0 -0
- data/app/assets/stylesheets/ad_next.png +0 -0
- data/app/assets/stylesheets/ad_prev.png +0 -0
- data/app/assets/stylesheets/ad_scroll_back.png +0 -0
- data/app/assets/stylesheets/ad_scroll_forward.png +0 -0
- data/app/assets/stylesheets/jquery.ad-gallery.css +0 -171
- data/app/assets/stylesheets/loader.gif +0 -0
- data/app/views/frontpage/_header.html.erb +0 -30
- data/app/views/frontpage/_social_networks.html.erb +0 -5
- data/app/views/groups/_show_frontpage.html.erb +0 -11
- data/app/views/search/_index_frontpage.html.erb +0 -13
- data/app/views/users/_show_frontpage.html.erb +0 -11
@@ -37,7 +37,7 @@ end %>
|
|
37
37
|
<% if !params[:section].present? or params[:section].eql?("tags") %>
|
38
38
|
<% content_for :javascript do %>
|
39
39
|
$(function() {
|
40
|
-
$(".new_group").validate();
|
40
|
+
$(".new_group").validate({errorClass: "validation_error"});
|
41
41
|
});
|
42
42
|
$("#profile_actor_attributes_tag_list").fcbkcomplete({
|
43
43
|
json_url: "<%= tags_path(:format => :json) %>",
|
@@ -95,7 +95,7 @@ end %>
|
|
95
95
|
<div class="form_label">
|
96
96
|
<%= f.label t('profile.' + current_subject.class.to_s.downcase + '.birthday')%>
|
97
97
|
</div>
|
98
|
-
<div class="form_field">
|
98
|
+
<div class="form_field" id="form_select">
|
99
99
|
<%= date_select "profile", "birthday", :order => [:day, :month, :year], :end_year=> Date.today.year,
|
100
100
|
:start_year=> (Date.today.year - 100), :prompt => { :day => 'Day', :month => 'Month', :year => 'Year' } %>
|
101
101
|
</div>
|
@@ -119,8 +119,10 @@ end %>
|
|
119
119
|
</div>
|
120
120
|
</div>
|
121
121
|
|
122
|
-
<div class="form_row
|
123
|
-
|
122
|
+
<div class="form_row">
|
123
|
+
<div class="form_label">
|
124
|
+
<%= f.label t('profile.' + current_subject.class.to_s.downcase + '.about') %>
|
125
|
+
</div>
|
124
126
|
</div>
|
125
127
|
<div class="form_row">
|
126
128
|
<%= f.text_area :description, :maxlength => 200, :rows => 10, :class => "form_tag_long" %>
|
data/config/locales/en.yml
CHANGED
@@ -15,16 +15,35 @@ en:
|
|
15
15
|
new: "New password"
|
16
16
|
retype: "Retype new password"
|
17
17
|
privacy: "Privacy"
|
18
|
+
activerecord:
|
19
|
+
attributes:
|
20
|
+
user:
|
21
|
+
email: "Email"
|
22
|
+
name: "Name"
|
23
|
+
password: "Password"
|
24
|
+
password_confirmation: "Confirm password"
|
25
|
+
remember_me: "Remember me"
|
18
26
|
activity:
|
19
27
|
audience:
|
20
|
-
|
21
|
-
|
28
|
+
hidden:
|
29
|
+
summary: "Restricted"
|
30
|
+
full: "Shared with contacts of %{audience}"
|
31
|
+
public:
|
32
|
+
summary: "Public"
|
33
|
+
full: "Shared with all the Internet"
|
34
|
+
visible:
|
35
|
+
summary: "Restricted"
|
36
|
+
full: "Shared with %{audience}"
|
22
37
|
confirm_delete: "Delete activity?"
|
23
38
|
delete: "Delete"
|
24
39
|
last: "Last Activities"
|
25
40
|
like: "I like"
|
26
41
|
one: "Activity"
|
27
42
|
other: "Activities"
|
43
|
+
privacy:
|
44
|
+
contacts:
|
45
|
+
user: "Contacts of %{receiver}"
|
46
|
+
group: "Members of %{receiver}"
|
28
47
|
sending: "Sending"
|
29
48
|
title: "Activities"
|
30
49
|
to_comment: "Comment"
|
@@ -60,8 +79,6 @@ en:
|
|
60
79
|
create: "Create"
|
61
80
|
save: "Save"
|
62
81
|
update: "Update"
|
63
|
-
cleditor:
|
64
|
-
controls: "bold italic underline strikethrough subscript superscript | size style | bullets | image link unlink"
|
65
82
|
comment:
|
66
83
|
input: "Write a comment..."
|
67
84
|
confirm_delete: "Delete comment?"
|
@@ -108,6 +125,13 @@ en:
|
|
108
125
|
delete:
|
109
126
|
confirm: Delete %{element}}?
|
110
127
|
devise:
|
128
|
+
links:
|
129
|
+
sign_in: "Sign in"
|
130
|
+
sign_up: "Sign up"
|
131
|
+
forgot_password: "Forgot you password?"
|
132
|
+
confirmation_instructions: "Didn't receive confirmation instructions?"
|
133
|
+
unlock_instructions: "Didn't receive unlock instructions?"
|
134
|
+
sign_in_with: "Sign in with %{provider}"
|
111
135
|
passwords:
|
112
136
|
confirm: "Confirm password"
|
113
137
|
forgot: "Forgot your password?"
|
@@ -137,6 +161,7 @@ en:
|
|
137
161
|
default: "Meet"
|
138
162
|
sentence1: "Meet interesting people and groups"
|
139
163
|
sentence2: "Find last activity of your contacts"
|
164
|
+
register: "Register now!"
|
140
165
|
share:
|
141
166
|
default: "Share"
|
142
167
|
sentence1: "Your proyects and activities"
|
@@ -192,6 +217,10 @@ en:
|
|
192
217
|
base: "You are here"
|
193
218
|
separator: " > "
|
194
219
|
mailboxer:
|
220
|
+
form:
|
221
|
+
body: "Body"
|
222
|
+
recipients: "Recipients"
|
223
|
+
subject: "Subject"
|
195
224
|
message_mailer:
|
196
225
|
subject_new: "%{subject}"
|
197
226
|
subject_reply: "%{subject}"
|
data/config/locales/es.yml
CHANGED
@@ -15,16 +15,35 @@ es:
|
|
15
15
|
new: "Nueva contraseña"
|
16
16
|
retype: "Repetir nueva contraseña"
|
17
17
|
privacy: "Privacidad"
|
18
|
+
activerecord:
|
19
|
+
attributes:
|
20
|
+
user:
|
21
|
+
email: "Correo"
|
22
|
+
name: "Nombre"
|
23
|
+
password: "Contraseña"
|
24
|
+
password_confirmation: "Confirmar contraseña"
|
25
|
+
remember_me: "Recuérdame"
|
18
26
|
activity:
|
19
27
|
audience:
|
20
|
-
|
21
|
-
|
28
|
+
hidden:
|
29
|
+
summary: "Restringido"
|
30
|
+
full: "Compartido con contactos de %{audience}"
|
31
|
+
public:
|
32
|
+
summary: "Público"
|
33
|
+
full: "Accesible por toda Internet"
|
34
|
+
visible:
|
35
|
+
summary: "Restringido"
|
36
|
+
full: "Compartido con %{audience}"
|
22
37
|
confirm_delete: "¿Borrar actividad?"
|
23
38
|
delete: "Borrar"
|
24
39
|
last: "Últimas actividades"
|
25
40
|
like: "Me gusta"
|
26
41
|
one: "Actividad"
|
27
42
|
other: "Actividades"
|
43
|
+
privacy:
|
44
|
+
contacts:
|
45
|
+
user: "Contactos de %{receiver}"
|
46
|
+
group: "Integrantes de %{receiver}"
|
28
47
|
sending: "Enviando"
|
29
48
|
title: "Actividades"
|
30
49
|
to_comment: "Comentar"
|
@@ -59,8 +78,6 @@ es:
|
|
59
78
|
cancel: "Cancelar"
|
60
79
|
save: "Guardar"
|
61
80
|
update: "Actualizar"
|
62
|
-
cleditor:
|
63
|
-
controls: "negrita cursiva subrayado tachado subíndice superíndice | tamaño estilo | lista | imagen enlazar desenlazar"
|
64
81
|
comment:
|
65
82
|
input: "Comentar..."
|
66
83
|
confirm_delete: "¿Borrar commentario?"
|
@@ -107,6 +124,13 @@ es:
|
|
107
124
|
delete:
|
108
125
|
confirm: "¿Borrar %{element}}?"
|
109
126
|
devise:
|
127
|
+
links:
|
128
|
+
sign_in: "Entrar"
|
129
|
+
sign_up: "Registrarse"
|
130
|
+
forgot_password: "¿Olvidaste tu contraseña?"
|
131
|
+
confirmation_instructions: "¿No recibiste instrucciones de confirmación?"
|
132
|
+
unlock_instructions: "¿No recibiste instrucciones de desbloqueo?"
|
133
|
+
sign_in_with: "Entrar con %{provider}"
|
110
134
|
passwords:
|
111
135
|
confirm: "Confirmar contraseña"
|
112
136
|
forgot: "¿Olvidaste tu contraseña?"
|
@@ -134,6 +158,7 @@ es:
|
|
134
158
|
default: "Encuentra"
|
135
159
|
sentence1: "Descubre grupos y gente interesante"
|
136
160
|
sentence2: "Encuentra la última actividad de tus contactos"
|
161
|
+
register: "¡Inscríbete ahora!"
|
137
162
|
share:
|
138
163
|
default: "Comparte"
|
139
164
|
sentence1: "Tus proyectos y actividades"
|
@@ -189,6 +214,10 @@ es:
|
|
189
214
|
base: "Estás aquí"
|
190
215
|
separator: " > "
|
191
216
|
mailboxer:
|
217
|
+
form:
|
218
|
+
body: "Mensaje"
|
219
|
+
recipients: "Para"
|
220
|
+
subject: "Asunto"
|
192
221
|
message_mailer:
|
193
222
|
subject_new: "%{subject}"
|
194
223
|
subject_reply: "%{subject}"
|
@@ -26,4 +26,7 @@ SocialStream.setup do |config|
|
|
26
26
|
#
|
27
27
|
# config.quick_search_models = [:user, :group]
|
28
28
|
# config.extended_search_models = [:user, :group]
|
29
|
+
|
30
|
+
# Cleditor controls. It is used in new message editor, for example
|
31
|
+
# config.cleditor_controls = "bold italic underline strikethrough subscript superscript | size style | bullets | image link unlink"
|
29
32
|
end
|
@@ -73,8 +73,9 @@ module SocialStream
|
|
73
73
|
if _contact_id.nil?
|
74
74
|
nil
|
75
75
|
else
|
76
|
+
# FIXME: repeated in Activity#fill_relations
|
76
77
|
if _contact.reflexive?
|
77
|
-
|
78
|
+
_contact.sender.relation_customs.map(&:id)
|
78
79
|
else
|
79
80
|
_contact.
|
80
81
|
receiver.
|
data/lib/social_stream-base.rb
CHANGED
@@ -84,7 +84,10 @@ module SocialStream
|
|
84
84
|
|
85
85
|
mattr_accessor :extended_search_models
|
86
86
|
@@extended_search_models = [ :user, :group, :post ]
|
87
|
-
|
87
|
+
|
88
|
+
mattr_accessor :cleditor_controls
|
89
|
+
@@cleditor_controls = "bold italic underline strikethrough subscript superscript | size style | bullets | image link unlink"
|
90
|
+
|
88
91
|
class << self
|
89
92
|
def setup
|
90
93
|
yield self
|
data/social_stream-base.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
# Slug generation
|
27
27
|
s.add_runtime_dependency('stringex', '~> 1.3.0')
|
28
28
|
# Avatar attachments
|
29
|
-
s.add_runtime_dependency('avatars_for_rails', '~> 0.1.
|
29
|
+
s.add_runtime_dependency('avatars_for_rails', '~> 0.1.4')
|
30
30
|
# jQuery
|
31
31
|
s.add_runtime_dependency('jquery-rails', '~> 1.0.9')
|
32
32
|
# Authorization
|
@@ -38,7 +38,7 @@ Gem::Specification.new do |s|
|
|
38
38
|
# OAuth provider
|
39
39
|
s.add_runtime_dependency('oauth-plugin','~> 0.4.0.pre1')
|
40
40
|
# Messages
|
41
|
-
s.add_runtime_dependency('mailboxer','~> 0.5.
|
41
|
+
s.add_runtime_dependency('mailboxer','~> 0.5.4')
|
42
42
|
# Tagging
|
43
43
|
s.add_runtime_dependency('acts-as-taggable-on','~> 2.0.6')
|
44
44
|
# HTML Forms
|
@@ -50,7 +50,7 @@ Gem::Specification.new do |s|
|
|
50
50
|
# Modernizr.js javascript library
|
51
51
|
s.add_runtime_dependency('modernizr-rails', '~> 2.0.6')
|
52
52
|
# Sphinx search engine
|
53
|
-
s.add_runtime_dependency('thinking-sphinx', '~> 2.0.
|
53
|
+
s.add_runtime_dependency('thinking-sphinx', '~> 2.0.8')
|
54
54
|
#Syntactically Awesome Stylesheets
|
55
55
|
s.add_runtime_dependency('sass-rails', '~> 3.1.0')
|
56
56
|
|
@@ -26,4 +26,7 @@ SocialStream.setup do |config|
|
|
26
26
|
#
|
27
27
|
# config.quick_search_models = [:user, :group]
|
28
28
|
# config.extended_search_models = [:user, :group]
|
29
|
+
|
30
|
+
# Cleditor controls. It is used in new message editor, for example
|
31
|
+
# config.cleditor_controls = "bold italic underline strikethrough subscript superscript | size style | bullets | image link unlink"
|
29
32
|
end
|
@@ -0,0 +1,104 @@
|
|
1
|
+
(function($) {
|
2
|
+
$.fn.tipsy = function(options) {
|
3
|
+
|
4
|
+
options = $.extend({}, $.fn.tipsy.defaults, options);
|
5
|
+
|
6
|
+
return this.each(function() {
|
7
|
+
|
8
|
+
var opts = $.fn.tipsy.elementOptions(this, options);
|
9
|
+
|
10
|
+
$(this).hover(function() {
|
11
|
+
|
12
|
+
$.data(this, 'cancel.tipsy', true);
|
13
|
+
|
14
|
+
var tip = $.data(this, 'active.tipsy');
|
15
|
+
if (!tip) {
|
16
|
+
tip = $('<div class="tipsy"><div class="tipsy-inner"/></div>');
|
17
|
+
tip.css({position: 'absolute', zIndex: 100000});
|
18
|
+
$.data(this, 'active.tipsy', tip);
|
19
|
+
}
|
20
|
+
|
21
|
+
if ($(this).attr('title') || typeof($(this).attr('original-title')) != 'string') {
|
22
|
+
$(this).attr('original-title', $(this).attr('title') || '').removeAttr('title');
|
23
|
+
}
|
24
|
+
|
25
|
+
var title;
|
26
|
+
if (typeof opts.title == 'string') {
|
27
|
+
title = $(this).attr(opts.title == 'title' ? 'original-title' : opts.title);
|
28
|
+
} else if (typeof opts.title == 'function') {
|
29
|
+
title = opts.title.call(this);
|
30
|
+
}
|
31
|
+
|
32
|
+
tip.find('.tipsy-inner')[opts.html ? 'html' : 'text'](title || opts.fallback);
|
33
|
+
|
34
|
+
var pos = $.extend({}, $(this).offset(), {width: this.offsetWidth, height: this.offsetHeight});
|
35
|
+
tip.get(0).className = 'tipsy'; // reset classname in case of dynamic gravity
|
36
|
+
tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body);
|
37
|
+
var actualWidth = tip[0].offsetWidth, actualHeight = tip[0].offsetHeight;
|
38
|
+
var gravity = (typeof opts.gravity == 'function') ? opts.gravity.call(this) : opts.gravity;
|
39
|
+
|
40
|
+
switch (gravity.charAt(0)) {
|
41
|
+
case 'n':
|
42
|
+
tip.css({top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-north');
|
43
|
+
break;
|
44
|
+
case 's':
|
45
|
+
tip.css({top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-south');
|
46
|
+
break;
|
47
|
+
case 'e':
|
48
|
+
tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}).addClass('tipsy-east');
|
49
|
+
break;
|
50
|
+
case 'w':
|
51
|
+
tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}).addClass('tipsy-west');
|
52
|
+
break;
|
53
|
+
}
|
54
|
+
|
55
|
+
if (opts.fade) {
|
56
|
+
tip.css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: 0.8});
|
57
|
+
} else {
|
58
|
+
tip.css({visibility: 'visible'});
|
59
|
+
}
|
60
|
+
|
61
|
+
}, function() {
|
62
|
+
$.data(this, 'cancel.tipsy', false);
|
63
|
+
var self = this;
|
64
|
+
setTimeout(function() {
|
65
|
+
if ($.data(this, 'cancel.tipsy')) return;
|
66
|
+
var tip = $.data(self, 'active.tipsy');
|
67
|
+
if (opts.fade) {
|
68
|
+
tip.stop().fadeOut(function() { $(this).remove(); });
|
69
|
+
} else {
|
70
|
+
tip.remove();
|
71
|
+
}
|
72
|
+
}, 100);
|
73
|
+
|
74
|
+
});
|
75
|
+
|
76
|
+
});
|
77
|
+
|
78
|
+
};
|
79
|
+
|
80
|
+
// Overwrite this method to provide options on a per-element basis.
|
81
|
+
// For example, you could store the gravity in a 'tipsy-gravity' attribute:
|
82
|
+
// return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
|
83
|
+
// (remember - do not modify 'options' in place!)
|
84
|
+
$.fn.tipsy.elementOptions = function(ele, options) {
|
85
|
+
return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
|
86
|
+
};
|
87
|
+
|
88
|
+
$.fn.tipsy.defaults = {
|
89
|
+
fade: false,
|
90
|
+
fallback: '',
|
91
|
+
gravity: 'n',
|
92
|
+
html: false,
|
93
|
+
title: 'title'
|
94
|
+
};
|
95
|
+
|
96
|
+
$.fn.tipsy.autoNS = function() {
|
97
|
+
return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
|
98
|
+
};
|
99
|
+
|
100
|
+
$.fn.tipsy.autoWE = function() {
|
101
|
+
return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
|
102
|
+
};
|
103
|
+
|
104
|
+
})(jQuery);
|
@@ -0,0 +1,7 @@
|
|
1
|
+
.tipsy { padding: 5px; font-size: 10px; opacity: 0.8; filter: alpha(opacity=80); background-repeat: no-repeat; background-image: url(../images/tipsy.gif); }
|
2
|
+
.tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; }
|
3
|
+
.tipsy-inner { -moz-border-radius:3px; -webkit-border-radius:3px; }
|
4
|
+
.tipsy-north { background-position: top center; }
|
5
|
+
.tipsy-south { background-position: bottom center; }
|
6
|
+
.tipsy-east { background-position: right center; }
|
7
|
+
.tipsy-west { background-position: left center; }
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_stream-base
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 0.9.
|
9
|
+
- 18
|
10
|
+
version: 0.9.18
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- GING - DIT - UPM
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-10-
|
19
|
+
date: 2011-10-11 00:00:00 +02:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -123,12 +123,12 @@ dependencies:
|
|
123
123
|
requirements:
|
124
124
|
- - ~>
|
125
125
|
- !ruby/object:Gem::Version
|
126
|
-
hash:
|
126
|
+
hash: 19
|
127
127
|
segments:
|
128
128
|
- 0
|
129
129
|
- 1
|
130
|
-
-
|
131
|
-
version: 0.1.
|
130
|
+
- 4
|
131
|
+
version: 0.1.4
|
132
132
|
type: :runtime
|
133
133
|
version_requirements: *id007
|
134
134
|
- !ruby/object:Gem::Dependency
|
@@ -221,12 +221,12 @@ dependencies:
|
|
221
221
|
requirements:
|
222
222
|
- - ~>
|
223
223
|
- !ruby/object:Gem::Version
|
224
|
-
hash:
|
224
|
+
hash: 3
|
225
225
|
segments:
|
226
226
|
- 0
|
227
227
|
- 5
|
228
|
-
-
|
229
|
-
version: 0.5.
|
228
|
+
- 4
|
229
|
+
version: 0.5.4
|
230
230
|
type: :runtime
|
231
231
|
version_requirements: *id013
|
232
232
|
- !ruby/object:Gem::Dependency
|
@@ -315,12 +315,12 @@ dependencies:
|
|
315
315
|
requirements:
|
316
316
|
- - ~>
|
317
317
|
- !ruby/object:Gem::Version
|
318
|
-
hash:
|
318
|
+
hash: 31
|
319
319
|
segments:
|
320
320
|
- 2
|
321
321
|
- 0
|
322
|
-
-
|
323
|
-
version: 2.0.
|
322
|
+
- 8
|
323
|
+
version: 2.0.8
|
324
324
|
type: :runtime
|
325
325
|
version_requirements: *id019
|
326
326
|
- !ruby/object:Gem::Dependency
|
@@ -592,7 +592,6 @@ files:
|
|
592
592
|
- app/assets/images/frontpage/collaborate.png
|
593
593
|
- app/assets/images/frontpage/comments.png
|
594
594
|
- app/assets/images/frontpage/green_sq.png
|
595
|
-
- app/assets/images/frontpage/join.gif
|
596
595
|
- app/assets/images/frontpage/meet.png
|
597
596
|
- app/assets/images/frontpage/people.png
|
598
597
|
- app/assets/images/frontpage/purple_sq.png
|
@@ -628,6 +627,7 @@ files:
|
|
628
627
|
- app/assets/images/logos/representation/user.png
|
629
628
|
- app/assets/images/mini-loading.gif
|
630
629
|
- app/assets/images/right.png
|
630
|
+
- app/assets/images/tipsy.gif
|
631
631
|
- app/assets/images/title_background.png
|
632
632
|
- app/assets/javascripts/activities.js.erb
|
633
633
|
- app/assets/javascripts/contacts.js
|
@@ -651,10 +651,6 @@ files:
|
|
651
651
|
- app/assets/stylesheets/0_devise_sign.css
|
652
652
|
- app/assets/stylesheets/_colors.scss
|
653
653
|
- app/assets/stylesheets/activities.css.scss
|
654
|
-
- app/assets/stylesheets/ad_next.png
|
655
|
-
- app/assets/stylesheets/ad_prev.png
|
656
|
-
- app/assets/stylesheets/ad_scroll_back.png
|
657
|
-
- app/assets/stylesheets/ad_scroll_forward.png
|
658
654
|
- app/assets/stylesheets/base.css.scss
|
659
655
|
- app/assets/stylesheets/contacts.css.scss
|
660
656
|
- app/assets/stylesheets/conversations.css
|
@@ -680,8 +676,6 @@ files:
|
|
680
676
|
- app/assets/stylesheets/images/ui-icons_888888_256x240.png
|
681
677
|
- app/assets/stylesheets/images/ui-icons_cd0a0a_256x240.png
|
682
678
|
- app/assets/stylesheets/invitations.css
|
683
|
-
- app/assets/stylesheets/jquery.ad-gallery.css
|
684
|
-
- app/assets/stylesheets/loader.gif
|
685
679
|
- app/assets/stylesheets/location.css.scss
|
686
680
|
- app/assets/stylesheets/menu.css.scss
|
687
681
|
- app/assets/stylesheets/messages.css.scss
|
@@ -804,8 +798,6 @@ files:
|
|
804
798
|
- app/views/devise/sessions/new.html.erb
|
805
799
|
- app/views/devise/shared/_links.erb
|
806
800
|
- app/views/frontpage/_caracteristics.html.erb
|
807
|
-
- app/views/frontpage/_header.html.erb
|
808
|
-
- app/views/frontpage/_social_networks.html.erb
|
809
801
|
- app/views/frontpage/_sponsor.html.erb
|
810
802
|
- app/views/frontpage/host_meta.xml.builder
|
811
803
|
- app/views/frontpage/index.html.erb
|
@@ -818,7 +810,6 @@ files:
|
|
818
810
|
- app/views/groups/_new_activity.html.erb
|
819
811
|
- app/views/groups/_new_activity_fields.html.erb
|
820
812
|
- app/views/groups/_show.html.erb
|
821
|
-
- app/views/groups/_show_frontpage.html.erb
|
822
813
|
- app/views/groups/_sidebar_index.html.erb
|
823
814
|
- app/views/groups/_sidebar_show.html.erb
|
824
815
|
- app/views/groups/index.html.erb
|
@@ -841,6 +832,8 @@ files:
|
|
841
832
|
- app/views/layouts/_header.erb
|
842
833
|
- app/views/layouts/_header_dropdown_menu.html.erb
|
843
834
|
- app/views/layouts/_header_dropdown_menu_sessions.html.erb
|
835
|
+
- app/views/layouts/_header_signed_in.erb
|
836
|
+
- app/views/layouts/_header_signed_out.erb
|
844
837
|
- app/views/layouts/_representation.html.erb
|
845
838
|
- app/views/layouts/_search.html.erb
|
846
839
|
- app/views/layouts/_settings.html.erb
|
@@ -907,7 +900,6 @@ files:
|
|
907
900
|
- app/views/search/_form.html.erb
|
908
901
|
- app/views/search/_header_search.html.erb
|
909
902
|
- app/views/search/_index.html.erb
|
910
|
-
- app/views/search/_index_frontpage.html.erb
|
911
903
|
- app/views/search/index.html.erb
|
912
904
|
- app/views/search/index.js.erb
|
913
905
|
- app/views/settings/_api_key.html.erb
|
@@ -929,7 +921,6 @@ files:
|
|
929
921
|
- app/views/users/_groups.html.erb
|
930
922
|
- app/views/users/_index.html.erb
|
931
923
|
- app/views/users/_show.html.erb
|
932
|
-
- app/views/users/_show_frontpage.html.erb
|
933
924
|
- app/views/users/_sidebar_index.html.erb
|
934
925
|
- app/views/users/_user.html.erb
|
935
926
|
- app/views/users/_user_focus_search.html.erb
|
@@ -1066,6 +1057,7 @@ files:
|
|
1066
1057
|
- vendor/assets/javascripts/jquery.fcbkcomplete.js
|
1067
1058
|
- vendor/assets/javascripts/jquery.livequery.js
|
1068
1059
|
- vendor/assets/javascripts/jquery.scrollTo.min.js
|
1060
|
+
- vendor/assets/javascripts/jquery.tipsy.js
|
1069
1061
|
- vendor/assets/javascripts/jquery.validate.js
|
1070
1062
|
- vendor/assets/javascripts/jquery.validate.old.js
|
1071
1063
|
- vendor/assets/javascripts/jquery.watermarkinput.js
|
@@ -1094,6 +1086,7 @@ files:
|
|
1094
1086
|
- vendor/assets/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png
|
1095
1087
|
- vendor/assets/stylesheets/smoothness/jquery-ui-1.7.3.custom.css
|
1096
1088
|
- vendor/assets/stylesheets/smoothness/jquery-ui-1.8.4.custom.css
|
1089
|
+
- vendor/assets/stylesheets/tipsy.css
|
1097
1090
|
has_rdoc: true
|
1098
1091
|
homepage: http://social-stream.dit.upm.es/
|
1099
1092
|
licenses: []
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|