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
Added resources menu item linking to Insoshi docs
Michael Hartl (author)
Wed Apr 23 12:15:54 -0700 2008
commit  63fe68807415ba26053845a61526b0cee0a25784
tree    3bde48971d8f002bb50d3a2e746c25a1c272cc52
parent  1b2e36bb4610601a743b11342472289daf565a4e
...
11
12
13
 
14
15
16
...
18
19
20
21
 
22
23
24
...
27
28
29
30
 
31
32
33
...
11
12
13
14
15
16
17
...
19
20
21
 
22
23
24
25
...
28
29
30
 
31
32
33
34
0
@@ -11,6 +11,7 @@ module ApplicationHelper
0
     else
0
       forum = menu_element("Forums", forums_path)
0
     end
0
+ resources = menu_element("Resources", "http://docs.insoshi.com/")
0
     if logged_in? and not admin_view?
0
       profile = menu_element("Profile", person_path(current_person))
0
       messages = menu_element("Messages", messages_path)
0
@@ -18,7 +19,7 @@ module ApplicationHelper
0
       photos = menu_element("Photos", photos_path)
0
       contacts = menu_element("Contacts",
0
                               person_connections_path(current_person))
0
- [home, profile, contacts, messages, blog, people, forum]
0
+ [home, profile, contacts, messages, blog, people, forum, resources]
0
     elsif logged_in? and admin_view?
0
       home = menu_element("Home", admin_home_path)
0
       people = menu_element("People", admin_people_path)
0
@@ -27,7 +28,7 @@ module ApplicationHelper
0
       preferences = menu_element("Preferences", admin_preferences_path)
0
       [home, people, forums, preferences]
0
     else
0
- [home, people, forum]
0
+ [home, people, forum, resources]
0
     end
0
   end
0
   
...
59
60
61
62
 
63
64
65
...
59
60
61
 
62
63
64
65
0
@@ -59,7 +59,7 @@ body {
0
   margin: 0 0 0 0;
0
   padding: 0;
0
   text-align: center;
0
- width: 80px;
0
+ width: 70px;
0
 }
0
 #nav li a {
0
   color: #fff;

Comments

    No one has commented yet.