social_stream 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/base/app/assets/javascripts/social_stream-base.js +1 -1
- data/base/app/assets/stylesheets/social_stream/base/profile/_profile.css.sass +6 -2
- data/base/app/assets/stylesheets/social_stream/base/responsive/_responsive-768px-979px.css.sass +0 -6
- data/base/app/assets/stylesheets/social_stream/base/sidebar/responsive/_responsive-1200px-min.css.sass +2 -0
- data/base/app/assets/stylesheets/social_stream/fonts/fonts.css +3 -3
- data/base/config/locales/en.yml +1 -2
- data/base/lib/social_stream/base/ability.rb +1 -1
- data/base/lib/social_stream/base/dependencies.rb +2 -0
- data/base/lib/social_stream/base/engine.rb +4 -0
- data/base/lib/social_stream/base/version.rb +1 -1
- data/base/social_stream-base.gemspec +5 -3
- data/documents/app/assets/javascripts/social_stream/documents.wall.js +26 -11
- data/documents/lib/social_stream/documents/engine.rb +5 -1
- data/documents/lib/social_stream/documents/version.rb +1 -1
- data/documents/social_stream-documents.gemspec +1 -1
- data/lib/social_stream/version.rb +1 -1
- data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/applications/layout/_applications-oauth2server.css.sass +3 -3
- data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/create/layout/_create-oauth2server.css.sass +4 -0
- data/oauth2_server/lib/social_stream/oauth2_server/version.rb +1 -1
- data/oauth2_server/social_stream-oauth2_server.gemspec +1 -1
- data/places/app/assets/stylesheets/social_stream/places/explore/_explore-places.css.sass +9 -0
- data/places/app/assets/stylesheets/social_stream/places/explore/layout/_explore-places.css.sass +17 -0
- data/places/app/assets/stylesheets/social_stream/places/search/_header.css.sass +22 -0
- data/places/app/assets/stylesheets/social_stream/places/search/layout/_header.css.sass +30 -0
- data/places/app/assets/stylesheets/social_stream-places.css.sass +9 -1
- data/places/app/models/place.rb +4 -0
- data/places/app/views/places/_place.html.erb +6 -6
- data/places/app/views/places/_quick_search_result.html.erb +17 -0
- data/places/app/views/places/_search_result.html.erb +1 -0
- data/places/app/views/places/_timeline.html.erb +11 -0
- data/places/config/locales/en.yml +2 -0
- data/places/config/locales/es.yml +2 -0
- data/places/lib/social_stream-places.rb +4 -1
- data/social_stream.gemspec +3 -3
- metadata +15 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c1cc6d62a122d099dba6c5743271633208a5e07
|
4
|
+
data.tar.gz: b2acfe7e532951befbccc464524e07427cdf0702
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00e5e5daf756380879d06155fa693fa4eefac5419e83500d7b465bc3dd66e7c5c14211a0a614523be82f44188bc368aafe9e39a5ae01dbd42d16badf5a6f19ae
|
7
|
+
data.tar.gz: fd69a6a5d90fef0ab82d36a5c52b22d4abf5d15a1eea124da2f62791bbd251a451d803a19f61a5a3e99f31e8fc4fe78f1178da72232638cdf12f292962deb88f
|
@@ -33,6 +33,11 @@
|
|
33
33
|
input
|
34
34
|
&[type="submit"]
|
35
35
|
@include btn-secundary
|
36
|
+
.personal
|
37
|
+
form.edit_profile
|
38
|
+
h6
|
39
|
+
label
|
40
|
+
display: inline
|
36
41
|
.avatar
|
37
42
|
form.edit_actor
|
38
43
|
background-color: $white
|
@@ -46,5 +51,4 @@
|
|
46
51
|
h5
|
47
52
|
color: $grayLighter
|
48
53
|
font-size: 17px
|
49
|
-
font-weight: bold
|
50
|
-
|
54
|
+
font-weight: bold
|
@@ -21,12 +21,12 @@
|
|
21
21
|
font-family: "Josefin OSP";
|
22
22
|
font-weight: normal;
|
23
23
|
font-style: normal;
|
24
|
-
src: url(social_stream/fonts/
|
24
|
+
src: url(social_stream/fonts/josefinSlab/JosefinSlabRegular.ttf);
|
25
25
|
}
|
26
26
|
|
27
27
|
@font-face{
|
28
28
|
font-family: 'Josefin Overlay';
|
29
29
|
font-weight: normal;
|
30
30
|
font-style: normal;
|
31
|
-
src: url(social_stream/fonts/
|
32
|
-
}
|
31
|
+
src: url(social_stream/fonts/josefinSlab/JosefinSlabOverlay.ttf);
|
32
|
+
}
|
data/base/config/locales/en.yml
CHANGED
@@ -224,8 +224,7 @@ en:
|
|
224
224
|
passwords:
|
225
225
|
confirm: Confirm password
|
226
226
|
forgot: Forgot your password?
|
227
|
-
instructions: '
|
228
|
-
you instructions to change it:'
|
227
|
+
instructions: 'Enter your email address and we will send you instructions to change it:'
|
229
228
|
update: Change your password
|
230
229
|
dropdown:
|
231
230
|
notifications: Notifications
|
@@ -90,7 +90,7 @@ module SocialStream
|
|
90
90
|
end
|
91
91
|
|
92
92
|
# Privacy
|
93
|
-
can [:create, :read, :update, :destroy], Relation::Custom, :actor_id => subject.try(:actor_id)
|
93
|
+
can [:create, :read, :update, :destroy], ::Relation::Custom, :actor_id => subject.try(:actor_id)
|
94
94
|
end
|
95
95
|
end
|
96
96
|
end
|
@@ -58,6 +58,10 @@ module SocialStream
|
|
58
58
|
|
59
59
|
config.to_prepare do
|
60
60
|
ApplicationController.rescue_handlers += [["CanCan::AccessDenied", :rescue_from_access_denied]]
|
61
|
+
|
62
|
+
# Load Relation::Public, so it is registered as descendant of Relation::Single
|
63
|
+
# and used in ActivityObject#allowed_relations
|
64
|
+
Relation::Public
|
61
65
|
end
|
62
66
|
end
|
63
67
|
end
|
@@ -31,9 +31,11 @@ Gem::Specification.new do |s|
|
|
31
31
|
# Slug generation
|
32
32
|
s.add_runtime_dependency('stringex', '~> 1.5.1')
|
33
33
|
# Avatar attachments
|
34
|
-
s.add_runtime_dependency('avatars_for_rails', '~> 1.0
|
34
|
+
s.add_runtime_dependency('avatars_for_rails', '~> 1.1.0')
|
35
35
|
# jQuery
|
36
|
-
s.add_runtime_dependency('jquery-rails', '>=
|
36
|
+
s.add_runtime_dependency('jquery-rails', '>= 3.0.0')
|
37
|
+
# jQuery UI
|
38
|
+
s.add_runtime_dependency('jquery-ui-rails', '>= 4.0.3')
|
37
39
|
# Select2 javascript library
|
38
40
|
s.add_runtime_dependency('select2-rails', '~> 3.3.0')
|
39
41
|
# Authorization
|
@@ -65,7 +67,7 @@ Gem::Specification.new do |s|
|
|
65
67
|
# I18n-js
|
66
68
|
s.add_runtime_dependency('i18n-js','~>2.1.2')
|
67
69
|
# Strong Parameters
|
68
|
-
s.add_runtime_dependency('strong_parameters','~> 0.1
|
70
|
+
s.add_runtime_dependency('strong_parameters','~> 0.2.1')
|
69
71
|
# Flash messages
|
70
72
|
s.add_runtime_dependency('flashy','~> 0.0.1')
|
71
73
|
|
@@ -28,22 +28,37 @@ SocialStream.Documents.Wall = (function(SS, $, undefined) {
|
|
28
28
|
$('.wall_input button.new_document').click(function(event){
|
29
29
|
event.preventDefault();
|
30
30
|
|
31
|
-
$('
|
31
|
+
$('.wall_input input[type=file]').trigger('click');
|
32
|
+
});
|
32
33
|
|
33
|
-
|
34
|
-
|
35
|
-
|
34
|
+
$('.wall_input input[type=file]').change(function(){
|
35
|
+
if ($(this).val()) {
|
36
|
+
$('label[for="new_document_title"]').show();
|
36
37
|
|
37
|
-
|
38
|
+
$('#post_text').
|
39
|
+
attr('name', 'document[title]').
|
40
|
+
attr('placeholder', I18n.t('document.title.input'));
|
38
41
|
|
39
|
-
|
40
|
-
SocialStream.Wall.changeParams('document');
|
42
|
+
$('#new_document_description').show().val($('#post_text').val());
|
41
43
|
|
42
|
-
|
43
|
-
|
44
|
+
SocialStream.Wall.changeAction($(this).closest('form').find('button.new_document').attr('data-path'));
|
45
|
+
SocialStream.Wall.changeParams('document');
|
44
46
|
|
45
|
-
|
46
|
-
|
47
|
+
$("#post_text").val($(this).val().replace(/C:\\fakepath\\/i, ''));
|
48
|
+
} else {
|
49
|
+
$('label[for="new_document_title"]').hide();
|
50
|
+
|
51
|
+
$('#post_text').
|
52
|
+
attr('name', 'post[text]').
|
53
|
+
attr('placeholder', I18n.t('post.input'));
|
54
|
+
|
55
|
+
$('#new_document_description').hide();
|
56
|
+
|
57
|
+
SocialStream.Wall.changeAction();
|
58
|
+
SocialStream.Wall.changeParams();
|
59
|
+
|
60
|
+
$("#post_text").val($('#new_document_description').val());
|
61
|
+
}
|
47
62
|
});
|
48
63
|
};
|
49
64
|
|
@@ -36,7 +36,11 @@ module SocialStream
|
|
36
36
|
Mime::Type.register "image/png", :png, [ "image/x-png" ]
|
37
37
|
end
|
38
38
|
unless defined? Mime::BMP
|
39
|
-
Mime::Type.register "image/bmp", :bmp
|
39
|
+
Mime::Type.register "image/bmp", :bmp, [ "image/x-ms-bmp" ]
|
40
|
+
else
|
41
|
+
# Manually register synonym
|
42
|
+
Mime::BMP.instance_variable_get("@synonyms") << "image/x-ms-bmp"
|
43
|
+
Mime::LOOKUP["image/x-ms-bmp"] = Mime::BMP
|
40
44
|
end
|
41
45
|
|
42
46
|
# Audio
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.files = `git ls-files`.split("\n")
|
13
13
|
|
14
14
|
# Gem dependencies
|
15
|
-
s.add_runtime_dependency('social_stream-base', '~> 2.0.
|
15
|
+
s.add_runtime_dependency('social_stream-base', '~> 2.0.3')
|
16
16
|
|
17
17
|
s.add_runtime_dependency('paperclip','~> 3.3.0')
|
18
18
|
s.add_runtime_dependency('paperclip-ffmpeg', '~> 0.9.0')
|
@@ -1,9 +1,9 @@
|
|
1
1
|
#site_clients
|
2
2
|
@include grid-core-span(12, $fluidGridColumnWidth, $fluidGridGutterWidth)
|
3
|
-
#toolbar
|
4
|
-
display: none !important
|
5
3
|
.site_clients
|
6
|
-
@include grid-core-span(
|
4
|
+
@include grid-core-span(10, $fluidGridColumnWidth, $fluidGridGutterWidth)
|
5
|
+
float: left
|
6
|
+
margin-left: 2.5%
|
7
7
|
header
|
8
8
|
a
|
9
9
|
float: right
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.files = `git ls-files`.split("\n")
|
13
13
|
|
14
14
|
# Gem dependencies
|
15
|
-
s.add_runtime_dependency('social_stream-base', '~> 2.0.
|
15
|
+
s.add_runtime_dependency('social_stream-base', '~> 2.0.3')
|
16
16
|
s.add_runtime_dependency('rack-oauth2', '~> 1.0.0')
|
17
17
|
|
18
18
|
s.add_development_dependency('rspec-rails', '~> 2.8.0')
|
data/places/app/assets/stylesheets/social_stream/places/explore/layout/_explore-places.css.sass
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#search-results,
|
2
|
+
.repository-list-net,
|
3
|
+
.repository-list
|
4
|
+
.place
|
5
|
+
display: inline
|
6
|
+
@include makeColumn(3, 0)
|
7
|
+
margin-left: 19px
|
8
|
+
margin-bottom: 14px
|
9
|
+
.thumb
|
10
|
+
@include makeColumnoMargin(1, 0)
|
11
|
+
display: inline
|
12
|
+
margin-top: 14px
|
13
|
+
.brifing
|
14
|
+
@include makeColumnoMargin(2, 0)
|
15
|
+
display: inline-block
|
16
|
+
.author
|
17
|
+
margin-top: -10px
|
@@ -0,0 +1,22 @@
|
|
1
|
+
header
|
2
|
+
.search-nav
|
3
|
+
.mat
|
4
|
+
.results
|
5
|
+
ul
|
6
|
+
li
|
7
|
+
background-color: #f9f9f9
|
8
|
+
&:hover
|
9
|
+
background-color: #fff
|
10
|
+
.place
|
11
|
+
&:hover
|
12
|
+
.thumb,
|
13
|
+
.brifing
|
14
|
+
@include opacity(100)
|
15
|
+
.thumb
|
16
|
+
@include opacity(70)
|
17
|
+
.brifing
|
18
|
+
@include opacity(70)
|
19
|
+
.author
|
20
|
+
@include ellipsis
|
21
|
+
.counters
|
22
|
+
font-size: 9px
|
@@ -0,0 +1,30 @@
|
|
1
|
+
header
|
2
|
+
.search-nav
|
3
|
+
.mat
|
4
|
+
.results
|
5
|
+
ul
|
6
|
+
li
|
7
|
+
.place
|
8
|
+
min-height: 80px
|
9
|
+
.thumb
|
10
|
+
@include opacity(70)
|
11
|
+
width: 38%
|
12
|
+
float: left
|
13
|
+
margin-top: 6px
|
14
|
+
.icon_file_50-default
|
15
|
+
background-size: 315px
|
16
|
+
.brifing
|
17
|
+
@include opacity(70)
|
18
|
+
width: 62%
|
19
|
+
float: left
|
20
|
+
h5
|
21
|
+
@include ellipsis
|
22
|
+
margin: 4px 0 0 0
|
23
|
+
font-size: 13px
|
24
|
+
.author
|
25
|
+
@include ellipsis
|
26
|
+
font-size: 11px
|
27
|
+
.counters
|
28
|
+
font-size: 9px
|
29
|
+
.counter
|
30
|
+
color: $blue
|
@@ -1,4 +1,12 @@
|
|
1
1
|
@import "social_stream/places/icons/places_icon"
|
2
2
|
@import "social_stream/places/maps"
|
3
3
|
@import "social_stream/places/carousel"
|
4
|
-
@import "social_stream/places/places"
|
4
|
+
@import "social_stream/places/places"
|
5
|
+
|
6
|
+
@import "social_stream/places/search/header"
|
7
|
+
|
8
|
+
@import "social_stream/places/search/layout/header"
|
9
|
+
|
10
|
+
@import "social_stream/places/explore/explore-places"
|
11
|
+
|
12
|
+
@import "social_stream/places/explore/layout/explore-places"
|
data/places/app/models/place.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
<%= div_for place do %>
|
2
|
-
|
3
2
|
<div class="thumb">
|
4
3
|
<%= link_to(raw("<i class='icon_place_70-default'></i> "), place)%>
|
5
4
|
</div>
|
6
5
|
|
7
|
-
<div class="
|
8
|
-
<
|
9
|
-
<%= link_to place.title, place %>
|
10
|
-
</
|
6
|
+
<div class="brifing">
|
7
|
+
<h5>
|
8
|
+
<%= link_to truncate(place.title, :length => 15), place %>
|
9
|
+
</h5>
|
10
|
+
|
11
|
+
<%= render partial: 'objects/counters', locals: { object: place } %>
|
11
12
|
|
12
13
|
</div>
|
13
|
-
|
14
14
|
<% end %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%= div_for place do %>
|
2
|
+
<div class="thumb">
|
3
|
+
<%#= link_to icon(document, 40), document, :title => document.file_file_name %>
|
4
|
+
<%= link_to raw("<i class='icon_place_70-default'></i> "), place, :title => place.title %>
|
5
|
+
<%#= link_to(raw("<i class='icon_place_70-default'></i> "), place)%>
|
6
|
+
</div>
|
7
|
+
<div class="brifing">
|
8
|
+
<h5>
|
9
|
+
<%= link_to truncate(place.title, :length => 15), place %>
|
10
|
+
</h5>
|
11
|
+
|
12
|
+
<%= render partial: 'objects/counters', locals: { object: place } %>
|
13
|
+
|
14
|
+
</div>
|
15
|
+
<% end %>
|
16
|
+
|
17
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= render place %>
|
@@ -26,6 +26,7 @@ es:
|
|
26
26
|
mine: Mis lugares
|
27
27
|
name: lugar
|
28
28
|
name_title: Nombre del lugar
|
29
|
+
one:
|
29
30
|
phone_title: Teléfono
|
30
31
|
photo:
|
31
32
|
button: Subir
|
@@ -39,6 +40,7 @@ es:
|
|
39
40
|
country: País
|
40
41
|
not_mine: Lugares
|
41
42
|
one: un lugar
|
43
|
+
other: lugares
|
42
44
|
simple_all: Todos
|
43
45
|
title: Lugares
|
44
46
|
like:
|
@@ -9,7 +9,10 @@ module SocialStream
|
|
9
9
|
autoload :ActivityObject, 'social_stream/places/models/activity_object'
|
10
10
|
end
|
11
11
|
|
12
|
-
|
12
|
+
%w( objects quick_search_models extended_search_models repository_models ).each do |m|
|
13
|
+
SocialStream.__send__(m).push(:place) unless SocialStream.__send__(m).include?(:place)
|
14
|
+
end
|
15
|
+
|
13
16
|
end
|
14
17
|
end
|
15
18
|
|
data/social_stream.gemspec
CHANGED
@@ -10,13 +10,13 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.files = `git ls-files`.split("\n")
|
11
11
|
|
12
12
|
# Gem dependencies
|
13
|
-
s.add_runtime_dependency('social_stream-base', '~> 2.0.
|
14
|
-
s.add_runtime_dependency('social_stream-documents', '~> 2.0.
|
13
|
+
s.add_runtime_dependency('social_stream-base', '~> 2.0.3')
|
14
|
+
s.add_runtime_dependency('social_stream-documents', '~> 2.0.3')
|
15
15
|
s.add_runtime_dependency('social_stream-events', '~> 2.0.1')
|
16
16
|
s.add_runtime_dependency('social_stream-linkser', '~> 2.0.0')
|
17
17
|
s.add_runtime_dependency('social_stream-presence', '~> 2.0.1')
|
18
18
|
s.add_runtime_dependency('social_stream-ostatus', '~> 2.0.0')
|
19
|
-
s.add_runtime_dependency('social_stream-oauth2_server', '~> 2.0.
|
19
|
+
s.add_runtime_dependency('social_stream-oauth2_server', '~> 2.0.2')
|
20
20
|
|
21
21
|
# Development Gem dependencies
|
22
22
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_stream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GING - DIT - UPM
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: social_stream-base
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.0.
|
19
|
+
version: 2.0.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.0.
|
26
|
+
version: 2.0.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: social_stream-documents
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 2.0.
|
33
|
+
version: 2.0.3
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 2.0.
|
40
|
+
version: 2.0.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: social_stream-events
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - ~>
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 2.0.
|
103
|
+
version: 2.0.2
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - ~>
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 2.0.
|
110
|
+
version: 2.0.2
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: capybara
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1405,7 +1405,11 @@ files:
|
|
1405
1405
|
- places/app/assets/stylesheets/social_stream/places/_carousel.css.sass
|
1406
1406
|
- places/app/assets/stylesheets/social_stream/places/_maps.css.sass
|
1407
1407
|
- places/app/assets/stylesheets/social_stream/places/_places.css.sass
|
1408
|
+
- places/app/assets/stylesheets/social_stream/places/explore/_explore-places.css.sass
|
1409
|
+
- places/app/assets/stylesheets/social_stream/places/explore/layout/_explore-places.css.sass
|
1408
1410
|
- places/app/assets/stylesheets/social_stream/places/icons/places_icon.css.css
|
1411
|
+
- places/app/assets/stylesheets/social_stream/places/search/_header.css.sass
|
1412
|
+
- places/app/assets/stylesheets/social_stream/places/search/layout/_header.css.sass
|
1409
1413
|
- places/app/controllers/places_controller.rb
|
1410
1414
|
- places/app/decorators/social_stream/base/activity_object_decorator.rb
|
1411
1415
|
- places/app/helpers/places_helper.rb
|
@@ -1420,6 +1424,9 @@ files:
|
|
1420
1424
|
- places/app/views/places/_map_form.html.erb
|
1421
1425
|
- places/app/views/places/_place.html.erb
|
1422
1426
|
- places/app/views/places/_place_info.html.erb
|
1427
|
+
- places/app/views/places/_quick_search_result.html.erb
|
1428
|
+
- places/app/views/places/_search_result.html.erb
|
1429
|
+
- places/app/views/places/_timeline.html.erb
|
1423
1430
|
- places/app/views/places/index.html.erb
|
1424
1431
|
- places/app/views/places/new.html.erb
|
1425
1432
|
- places/app/views/places/show.html.erb
|