social_stream-events 0.0.1 → 0.0.2
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/.gitignore +3 -0
- data/app/assets/stylesheets/social_stream-events.css +21 -6
- data/app/views/activities/_index.html.erb +10 -11
- data/social_stream-events.gemspec +3 -3
- metadata +82 -29
data/.gitignore
ADDED
@@ -2,11 +2,22 @@
|
|
2
2
|
*= require_tree .
|
3
3
|
*/
|
4
4
|
|
5
|
+
/*
|
6
|
+
* This is a manifest file that'll automatically include all the stylesheets available in this directory
|
7
|
+
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
|
8
|
+
* the top of the compiled file, but it's generally better to create a new file per style scope.
|
9
|
+
*= require_self
|
10
|
+
*= require social_stream-base
|
11
|
+
*= require social_stream-documents
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
5
14
|
#filter_div
|
6
15
|
{
|
7
|
-
|
8
|
-
|
9
|
-
|
16
|
+
float: right;
|
17
|
+
height: 10px;
|
18
|
+
padding-top: 5px;
|
19
|
+
width: 76px;
|
20
|
+
z-index: 2000;
|
10
21
|
}
|
11
22
|
#calendar{margin-top:-9px;}
|
12
23
|
#fc-btn-agenda{ padding-left: 1px;}
|
@@ -39,6 +50,7 @@ ul.sb_dropdown{
|
|
39
50
|
}
|
40
51
|
ul.sb_dropdown{
|
41
52
|
float:left;
|
53
|
+
margin-right:50px;
|
42
54
|
list-style:none;
|
43
55
|
width:295px;
|
44
56
|
padding:6px 5px;
|
@@ -177,13 +189,16 @@ ul.sb_dropdown{
|
|
177
189
|
outline:none;
|
178
190
|
padding:6px 5px 6px 20px;
|
179
191
|
text-shadow:1px 1px 1px #fff;
|
180
|
-
width:
|
181
|
-
|
192
|
+
width:100px;
|
193
|
+
float: right;
|
182
194
|
margin:3px 0px;
|
195
|
+
margin-right:0px;
|
196
|
+
z-index: 2000;
|
183
197
|
}s
|
184
198
|
ul.sb_dropdown{
|
185
|
-
float:
|
199
|
+
float:right;
|
186
200
|
list-style:none;
|
201
|
+
z-index:2000;
|
187
202
|
width:150px;
|
188
203
|
padding:6px 5px;
|
189
204
|
-moz-border-radius:0px 0px 10px 10px;
|
@@ -4,7 +4,7 @@
|
|
4
4
|
* the element
|
5
5
|
*/
|
6
6
|
var $ui = $('#form_filter');
|
7
|
-
|
7
|
+
var $ui_really = $('#ul_filter');
|
8
8
|
/**
|
9
9
|
* on focus and on click display the dropdown,
|
10
10
|
* and change the arrow image
|
@@ -18,23 +18,25 @@
|
|
18
18
|
.andSelf()
|
19
19
|
.find('.sb_dropdown')
|
20
20
|
.show();
|
21
|
-
|
22
|
-
.hide()
|
21
|
+
/*$ui.find('.sb_up')
|
22
|
+
.hide();*/
|
23
23
|
});
|
24
24
|
|
25
25
|
/**
|
26
26
|
* on mouse leave hide the dropdown,
|
27
27
|
* and change the arrow image
|
28
28
|
*/
|
29
|
-
|
29
|
+
|
30
|
+
$ui_really.bind('mouseleave',function(){
|
31
|
+
|
30
32
|
$ui.find('.sb_up')
|
31
33
|
.addClass('sb_down')
|
32
34
|
.removeClass('sb_up')
|
33
35
|
.andSelf()
|
34
36
|
.find('.sb_dropdown')
|
35
37
|
.hide();
|
36
|
-
|
37
|
-
.show()
|
38
|
+
/*$ui.find('.sb_down')
|
39
|
+
.show();*/
|
38
40
|
});
|
39
41
|
|
40
42
|
/**
|
@@ -57,11 +59,8 @@
|
|
57
59
|
<div id="filter_div">
|
58
60
|
<%= form_tag "/activities/documents", :method => :post ,:id=> 'form_filter', :class => "tie_form",:remote=> true do %>
|
59
61
|
<span class="sb_down">Filter</span>
|
60
|
-
<ul class="sb_dropdown" style="display:none;">
|
61
|
-
|
62
|
-
<%= check_box_tag 'types', 'all', false, :class => 'accept_tos',:onchange=>'$(\'#form_filter\').submit();'%>
|
63
|
-
<label for="all"><strong>All Categories</strong></label>
|
64
|
-
</li>
|
62
|
+
<ul class="sb_dropdown" style="display:none;" id="ul_filter">
|
63
|
+
|
65
64
|
<li>
|
66
65
|
<%= check_box_tag 'types', 'Documents', false, :class => 'accept_tos',:onchange=>'$(\'#form_filter\').submit();'%>
|
67
66
|
<label for="<%=t('activity.view.documents')%>"><%=t('activity.view.documents')%></label>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "social_stream-events"
|
3
|
-
s.version = "0.0.
|
4
|
-
s.authors = ["Diego Carrera", "GING - DIT - UPM"]
|
3
|
+
s.version = "0.0.2"
|
4
|
+
s.authors = ["Diego Carrera", "Antonio Tapiador", "GING - DIT - UPM"]
|
5
5
|
s.summary = "Events and Video conferences capabilities for Social Stream, the core for building social network websites"
|
6
6
|
s.description = "Social Stream is a Ruby on Rails engine providing your application with social networking features and activity streams.\n\nThis gem allow you to add events and videoconferences as new social stream activity."
|
7
7
|
s.email = "social-stream.dit.upm.es"
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.files = `git ls-files`.split("\n")
|
10
10
|
|
11
11
|
# Gem dependencies
|
12
|
-
s.add_runtime_dependency('social_stream-base','~> 0.
|
12
|
+
s.add_runtime_dependency('social_stream-base','~> 0.9.0')
|
13
13
|
# Development Gem dependencies
|
14
14
|
s.add_development_dependency('sqlite3-ruby')
|
15
15
|
if RUBY_VERSION < '1.9'
|
metadata
CHANGED
@@ -1,84 +1,135 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_stream-events
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
4
5
|
prerelease:
|
5
|
-
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
6
11
|
platform: ruby
|
7
12
|
authors:
|
8
13
|
- Diego Carrera
|
14
|
+
- Antonio Tapiador
|
9
15
|
- GING - DIT - UPM
|
10
16
|
autorequire:
|
11
17
|
bindir: bin
|
12
18
|
cert_chain: []
|
13
19
|
|
14
|
-
date: 2011-09-
|
20
|
+
date: 2011-09-13 00:00:00 +02:00
|
21
|
+
default_executable:
|
15
22
|
dependencies:
|
16
23
|
- !ruby/object:Gem::Dependency
|
17
|
-
|
18
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
19
25
|
none: false
|
20
26
|
requirements:
|
21
27
|
- - ~>
|
22
28
|
- !ruby/object:Gem::Version
|
23
|
-
|
24
|
-
|
29
|
+
hash: 59
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 9
|
33
|
+
- 0
|
34
|
+
version: 0.9.0
|
35
|
+
requirement: *id001
|
36
|
+
name: social_stream-base
|
25
37
|
prerelease: false
|
26
|
-
|
38
|
+
type: :runtime
|
27
39
|
- !ruby/object:Gem::Dependency
|
28
|
-
|
29
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
30
41
|
none: false
|
31
42
|
requirements:
|
32
43
|
- - ">="
|
33
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 3
|
46
|
+
segments:
|
47
|
+
- 0
|
34
48
|
version: "0"
|
49
|
+
requirement: *id002
|
50
|
+
name: sqlite3-ruby
|
51
|
+
prerelease: false
|
35
52
|
type: :development
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ~>
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
hash: 49
|
60
|
+
segments:
|
61
|
+
- 0
|
62
|
+
- 10
|
63
|
+
- 3
|
64
|
+
version: 0.10.3
|
65
|
+
requirement: *id003
|
66
|
+
name: ruby-debug
|
36
67
|
prerelease: false
|
37
|
-
|
68
|
+
type: :development
|
38
69
|
- !ruby/object:Gem::Dependency
|
39
|
-
|
40
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
70
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
41
71
|
none: false
|
42
72
|
requirements:
|
43
73
|
- - ~>
|
44
74
|
- !ruby/object:Gem::Version
|
75
|
+
hash: 23
|
76
|
+
segments:
|
77
|
+
- 2
|
78
|
+
- 6
|
79
|
+
- 0
|
45
80
|
version: 2.6.0
|
46
|
-
|
81
|
+
requirement: *id004
|
82
|
+
name: rspec-rails
|
47
83
|
prerelease: false
|
48
|
-
|
84
|
+
type: :development
|
49
85
|
- !ruby/object:Gem::Dependency
|
50
|
-
|
51
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
86
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
52
87
|
none: false
|
53
88
|
requirements:
|
54
89
|
- - ~>
|
55
90
|
- !ruby/object:Gem::Version
|
91
|
+
hash: 31
|
92
|
+
segments:
|
93
|
+
- 1
|
94
|
+
- 3
|
95
|
+
- 2
|
56
96
|
version: 1.3.2
|
57
|
-
|
97
|
+
requirement: *id005
|
98
|
+
name: factory_girl
|
58
99
|
prerelease: false
|
59
|
-
|
100
|
+
type: :development
|
60
101
|
- !ruby/object:Gem::Dependency
|
61
|
-
|
62
|
-
requirement: &id005 !ruby/object:Gem::Requirement
|
102
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
63
103
|
none: false
|
64
104
|
requirements:
|
65
105
|
- - ~>
|
66
106
|
- !ruby/object:Gem::Version
|
107
|
+
hash: 31
|
108
|
+
segments:
|
109
|
+
- 0
|
110
|
+
- 3
|
111
|
+
- 6
|
67
112
|
version: 0.3.6
|
68
|
-
|
113
|
+
requirement: *id006
|
114
|
+
name: forgery
|
69
115
|
prerelease: false
|
70
|
-
|
116
|
+
type: :development
|
71
117
|
- !ruby/object:Gem::Dependency
|
72
|
-
|
73
|
-
requirement: &id006 !ruby/object:Gem::Requirement
|
118
|
+
version_requirements: &id007 !ruby/object:Gem::Requirement
|
74
119
|
none: false
|
75
120
|
requirements:
|
76
121
|
- - ~>
|
77
122
|
- !ruby/object:Gem::Version
|
123
|
+
hash: 1
|
124
|
+
segments:
|
125
|
+
- 0
|
126
|
+
- 3
|
127
|
+
- 9
|
78
128
|
version: 0.3.9
|
79
|
-
|
129
|
+
requirement: *id007
|
130
|
+
name: capybara
|
80
131
|
prerelease: false
|
81
|
-
|
132
|
+
type: :development
|
82
133
|
description: |-
|
83
134
|
Social Stream is a Ruby on Rails engine providing your application with social networking features and activity streams.
|
84
135
|
|
@@ -91,6 +142,7 @@ extensions: []
|
|
91
142
|
extra_rdoc_files: []
|
92
143
|
|
93
144
|
files:
|
145
|
+
- .gitignore
|
94
146
|
- GPL Affero license
|
95
147
|
- Gemfile
|
96
148
|
- README.rdoc
|
@@ -235,6 +287,7 @@ files:
|
|
235
287
|
- social_stream-events.gemspec
|
236
288
|
- vendor/assets/javascripts/fullcalendar.js
|
237
289
|
- vendor/assets/javascripts/gcal.js
|
290
|
+
has_rdoc: true
|
238
291
|
homepage: http://github.com/ging/social_stream-events
|
239
292
|
licenses: []
|
240
293
|
|
@@ -248,7 +301,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
248
301
|
requirements:
|
249
302
|
- - ">="
|
250
303
|
- !ruby/object:Gem::Version
|
251
|
-
hash:
|
304
|
+
hash: 3
|
252
305
|
segments:
|
253
306
|
- 0
|
254
307
|
version: "0"
|
@@ -257,14 +310,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
257
310
|
requirements:
|
258
311
|
- - ">="
|
259
312
|
- !ruby/object:Gem::Version
|
260
|
-
hash:
|
313
|
+
hash: 3
|
261
314
|
segments:
|
262
315
|
- 0
|
263
316
|
version: "0"
|
264
317
|
requirements: []
|
265
318
|
|
266
319
|
rubyforge_project:
|
267
|
-
rubygems_version: 1.
|
320
|
+
rubygems_version: 1.6.2
|
268
321
|
signing_key:
|
269
322
|
specification_version: 3
|
270
323
|
summary: Events and Video conferences capabilities for Social Stream, the core for building social network websites
|