[macruby-changes] [883] MacRubyWebsite/trunk

source_changes at macosforge.org source_changes at macosforge.org
Wed Mar 11 18:07:54 PDT 2009


Revision: 883
          http://trac.macosforge.org/projects/ruby/changeset/883
Author:   rich at infoether.com
Date:     2009-03-11 18:07:53 -0700 (Wed, 11 Mar 2009)
Log Message:
-----------
sort by name and dont put in what folks work on

Modified Paths:
--------------
    MacRubyWebsite/trunk/content/css/master.css
    MacRubyWebsite/trunk/content/project.txt
    MacRubyWebsite/trunk/lib/team.rb

Modified: MacRubyWebsite/trunk/content/css/master.css
===================================================================
--- MacRubyWebsite/trunk/content/css/master.css	2009-03-12 00:47:18 UTC (rev 882)
+++ MacRubyWebsite/trunk/content/css/master.css	2009-03-12 01:07:53 UTC (rev 883)
@@ -260,7 +260,9 @@
 }
 
 div#project h3 {
+  margin-top: 10px;
   margin-bottom: 10px;
+  font-size: 20px;
 }
 
 div#project .affiliation {
@@ -268,6 +270,10 @@
   color: #666;
 }
 
+div#project p {
+  margin-bottom: 5px;
+}
+
 div#project .summary {
   
 }
\ No newline at end of file

Modified: MacRubyWebsite/trunk/content/project.txt
===================================================================
--- MacRubyWebsite/trunk/content/project.txt	2009-03-12 00:47:18 UTC (rev 882)
+++ MacRubyWebsite/trunk/content/project.txt	2009-03-12 01:07:53 UTC (rev 883)
@@ -13,7 +13,7 @@
 
 <h3>Project Members</h3>
 
-<% team_members.each do |member| -%>
+<% team_members.sort {|m1, m2| m1.name <=> m2.name}.each do |member| -%>
   <%= render_member(member) %>
 <% end -%>
 

Modified: MacRubyWebsite/trunk/lib/team.rb
===================================================================
--- MacRubyWebsite/trunk/lib/team.rb	2009-03-12 00:47:18 UTC (rev 882)
+++ MacRubyWebsite/trunk/lib/team.rb	2009-03-12 01:07:53 UTC (rev 883)
@@ -7,7 +7,6 @@
     html += (member.href ? "<a href='#{member.href}'>#{member.name}</a>" : member.name)
     html += "</strong>"
     html += "<span class='affiliation'>, #{member.affiliation}</span>" if member.affiliation
-    html += "<br><span class='summary'>#{member.summary}</span>"
     html += "</p>"
     html
   end
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090311/49391ef6/attachment.html>


More information about the macruby-changes mailing list