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
h2 -> h1
Michael Hartl (author)
Fri Apr 04 16:35:20 -0700 2008
commit  0e3d4e37623f4cd921f4354792ead51b520872b8
tree    a6f39e11def08acbd0a0611d4a6d7761671399fb
parent  fc4a30b4fe53f01a960dea86e3f52c99a8af83a4
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@ module DisplayHelper
0
     title = options[:title] || ""
0
     markaby do
0
       div.section do
0
- h2 { title } unless title.blank?
0
+ h1 { title } unless title.blank?
0
         table do
0
           list.collect_every(columns).each do |row|
0
             tr do
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@
0
                                     :image => :thumbnail) %>
0
   <%= will_paginate(@contacts) %>
0
 <% else %>
0
- <h2>No contacts (yet)</h2>
0
+ <h1>No contacts (yet)</h1>
0
 <% end -%>
0
 
0
 <%- end -%>
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,4 +1,4 @@
0
 <div class="section">
0
- <h2>Activity Feed</h2>
0
+ <h1>Activity Feed</h1>
0
   <%= render :partial => 'shared/activity', :collection => @feed %>
0
 </div>
0
\ No newline at end of file
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 <%- unless current_person.recent_messages.empty? -%>
0
   <div class="section">
0
- <h2>Messages</h2>
0
+ <h1>Messages</h1>
0
     <%= render :partial => 'message',
0
                :collection => current_person.recent_messages %>
0
   </div>
...
27
28
29
30
 
31
32
33
...
27
28
29
 
30
31
32
33
0
@@ -27,7 +27,7 @@
0
       <%- column_div :id => "logo", :order => "first last",
0
                      :width => FULL do -%>
0
         <h1><%= link_to "insoshi", '/' %></h1>
0
- <h2>instant social network</h2>
0
+ <h2>social software</h2>
0
       <%- end -%>
0
       <%- column_div :type => :full do -%>
0
         <div id="navcontainer">
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 <div class="activity clear">
0
   <%- unless @person.recent_activity.empty? -%>
0
- <h2>Recent Activity</h2>
0
+ <h1>Recent Activity</h1>
0
      <%= render :partial => 'shared/activity',
0
                 :collection => @person.recent_activity %>
0
   <%- end -%>
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 <div class="wall">
0
- <h2>Comment Wall</h2>
0
+ <h1>Comment Wall</h1>
0
 
0
   <% form_for :comment, :url => person_comments_path(@person) do |f| %>
0
     <div class="form_tag">
...
6
7
8
9
 
10
11
12
13
14
15
 
16
17
18
19
 
20
21
22
...
32
33
34
35
 
36
37
38
...
72
73
74
75
 
76
77
78
...
6
7
8
 
9
10
11
12
13
14
 
15
16
17
18
 
19
20
21
22
...
32
33
34
 
35
36
37
38
...
72
73
74
 
75
76
77
78
0
@@ -6,17 +6,17 @@
0
 
0
 <% form_for @person do |f| %>
0
 
0
- <h2>Name</h2>
0
+ <h1>Name</h1>
0
 
0
   <div class="form_row">
0
     <%= f.text_field :name, :maxlength => Person::MAX_NAME %>
0
   </div>
0
   
0
- <h2>Description</h2>
0
+ <h1>Description</h1>
0
 
0
   <div class="form_row"><%= f.text_area :description %></div>
0
   
0
- <h2>Email</h2>
0
+ <h1>Email</h1>
0
 
0
   <div class="form_row">
0
     <%= f.text_field :email, :maxlength => Person::MAX_EMAIL %>
0
@@ -32,7 +32,7 @@
0
 
0
 <br />
0
 
0
-<h2>Photos</h2>
0
+<h1>Photos</h1>
0
   
0
   <% if @person.photos.empty? %>
0
     <%= image_tag @person.thumbnail %>
0
@@ -72,7 +72,7 @@
0
 
0
   <%= @person.unencrypted_password %>
0
 
0
- <h2>Change Password</h2>
0
+ <h1>Change Password</h1>
0
 
0
   <div class="form_row">
0
     <label for="password">Current Password</label>
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@
0
     <ul>
0
     <%= will_paginate %>
0
   <% else %>
0
- <h2>No results to show.</h2>
0
+ <h1>No results to show.</h1>
0
   <% end -%>
0
 <%- end -%>
0
 
...
1
 
 
2
3
4
...
1
2
3
4
5
6
0
@@ -1,4 +1,6 @@
0
 <%- column_div :type => :primary do -%>
0
+
0
+ <h1>Blog</h1>
0
   <table>
0
     <tr><th>Blog posts</th></tr>
0
     <%- @posts.each do |post| -%>
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 <%- if logged_in? -%>
0
   <div class="section">
0
- <h2>Minifeed</h2>
0
+ <h1>Minifeed</h1>
0
   <%= render :partial => 'shared/minifeed_item',
0
              :collection => current_person.feed %>
0
   </div>

Comments

    No one has commented yet.