public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
Added periods to all feed messages
Michael Hartl (author)
Mon Apr 28 12:59:20 -0700 2008
commit  320b82467f798b0a990d8f30b4cb75a4a5913e6e
tree    6836283685bccd356fe492daf1c01b587e1d4cf2
parent  72a451c99696461e14b3dcb2927cb5cbfe5b69f9
...
9
10
11
12
 
13
14
15
...
22
23
24
25
 
26
27
28
...
36
37
38
39
 
40
41
42
...
50
51
52
53
 
54
55
56
57
...
63
64
65
66
 
67
68
69
 
70
71
72
...
81
82
83
84
 
85
86
87
...
9
10
11
 
12
13
14
15
...
22
23
24
 
25
26
27
28
...
36
37
38
 
39
40
41
42
...
50
51
52
 
53
54
55
56
57
...
63
64
65
 
66
67
68
 
69
70
71
72
...
81
82
83
 
84
85
86
87
0
@@ -9,7 +9,7 @@
0
       blog = post.blog
0
       view_blog = blog_link("View #{h person.name}'s blog", blog)
0
       %(#{person_link(person)} made a blog post titled
0
- #{post_link(blog, post)}.<br /> #{view_blog})
0
+ #{post_link(blog, post)}.<br /> #{view_blog}.)
0
     when "Comment"
0
       parent = activity.item.commentable
0
       parent_type = parent.class.to_s
0
@@ -22,7 +22,7 @@
0
            blog post #{post_link(blog, post)}.)
0
       when "Person"
0
         %(#{person_link(activity.item.commenter)} commented on
0
- #{wall(activity)})
0
+ #{wall(activity)}.)
0
       end
0
     when "Connection"
0
       %(#{person_link(activity.item.person)} and
0
@@ -36,7 +36,7 @@
0
       %(#{person_link(person)} created the new discussion topic
0
         #{topic_link(activity.item)}.)
0
     when "Photo"
0
- %(#{person_link(person)} changed their profile picture)
0
+ %(#{person_link(person)} changed their profile picture.)
0
     else
0
       # TODO: make this a more graceful falure (?).
0
       raise "Invalid activity type #{activity_type(activity).inspect}"
0
@@ -50,7 +50,7 @@
0
       post = activity.item
0
       blog = post.blog
0
       %(#{person_link(person)} made a
0
- #{post_link("new blog post", blog, post)})
0
+ #{post_link("new blog post", blog, post)}.)
0
     when "Comment"
0
       parent = activity.item.commentable
0
       parent_type = parent.class.to_s
0
0
@@ -63,10 +63,10 @@
0
            blog post #{post_link(blog, post)}.)
0
         %(#{person_link(person)} made a comment on
0
           #{someones(blog.person, person)}
0
- #{post_link("blog post", post.blog, post)})
0
+ #{post_link("blog post", post.blog, post)}.)
0
       when "Person"
0
         %(#{person_link(activity.item.commenter)} commented on
0
- #{wall(activity)})
0
+ #{wall(activity)}.)
0
       end
0
     when "Connection"
0
       %(#{person_link(person)} and #{person_link(activity.item.contact)}
0
@@ -81,7 +81,7 @@
0
       %(#{person_link(person)} created a
0
         #{topic_link("new discussion topic", activity.item)}.)
0
     when "Photo"
0
- %(#{person_link(person)} changed their profile picture)
0
+ %(#{person_link(person)} changed their profile picture.)
0
     else
0
       raise "Invalid activity type #{activity_type(activity).inspect}"
0
     end

Comments

    No one has commented yet.