[macruby-changes] [917] MacRubyWebsite/trunk/content

source_changes at macosforge.org source_changes at macosforge.org
Fri Mar 13 21:28:44 PDT 2009


Revision: 917
          http://trac.macosforge.org/projects/ruby/changeset/917
Author:   rich at infoether.com
Date:     2009-03-13 21:28:43 -0700 (Fri, 13 Mar 2009)
Log Message:
-----------
add feed url based on existing macruby.org site

Modified Paths:
--------------
    MacRubyWebsite/trunk/content/blog/index.txt
    MacRubyWebsite/trunk/content/blog/title_index.txt

Added Paths:
-----------
    MacRubyWebsite/trunk/content/blog/2008/05/27/
    MacRubyWebsite/trunk/content/blog/2008/05/27/rubycocoa_projects_wild.txt
    MacRubyWebsite/trunk/content/feeds/
    MacRubyWebsite/trunk/content/feeds/posts/
    MacRubyWebsite/trunk/content/feeds/posts/macruby/
    MacRubyWebsite/trunk/content/feeds/posts/macruby/index.txt
    MacRubyWebsite/trunk/content/images/feed.png

Added: MacRubyWebsite/trunk/content/blog/2008/05/27/rubycocoa_projects_wild.txt
===================================================================
--- MacRubyWebsite/trunk/content/blog/2008/05/27/rubycocoa_projects_wild.txt	                        (rev 0)
+++ MacRubyWebsite/trunk/content/blog/2008/05/27/rubycocoa_projects_wild.txt	2009-03-14 04:28:43 UTC (rev 917)
@@ -0,0 +1,24 @@
+--- 
+title:      More RubyCocoa Projects in the Wild
+created_at: 2008-05-27 00:00:00 -04:00
+blog_post:  true
+layout:     blog_entry 
+author:     lrz
+filter:
+  - erb
+  - textile
+---
+<% @page[:excerpt] = capture_erb do %>
+Very recently some new projects using <a href="http://rubycocoa.sf.net/">RubyCocoa</a> were released to the public.
+<% end %>
+<%= RedCloth.new(@page.excerpt).to_html %>
+
+"TimeToTicket":http://www.pimsnel.com/timetoticket/Home.html, a tool to report your working hours in the RedMine project management system.
+
+"CocoaNav":http://inexdo.com/CocoaNav, an application to elegantly browse frameworks and classes. Very cool animations.
+
+"osx_trash":http://www.dribin.org/dave/blog/archives/2008/05/24/osx_trash, a command-line tool to easily manipulate the Mac OS X Finder's trash.
+
+And, it's hard to not mention "GitNub":http://github.com/Caged/gitnub/wikis, a desktop frontend to the git source control management system. This isn't really a new project, but it's starting to be popular in the development community.
+
+This really demonstrates that RubyCocoa is being adopted by more people, and more importantly, Ruby as a language to write Mac OS X applications. And "the future":/documentation/why-macruby.html is not that far now!
\ No newline at end of file

Modified: MacRubyWebsite/trunk/content/blog/index.txt
===================================================================
--- MacRubyWebsite/trunk/content/blog/index.txt	2009-03-14 04:00:45 UTC (rev 916)
+++ MacRubyWebsite/trunk/content/blog/index.txt	2009-03-14 04:28:43 UTC (rev 917)
@@ -5,7 +5,8 @@
 filter:
   - erb
 ---
-<a style="float:right" href="/blog/title_index.html">Blog Overview</a>
+<a style="float:right" href="/feeds/posts/macruby/index.xml"><img src="/images/feed.png"></a>
+<a style="float:right;margin-right:10px;" href="/blog/title_index.html">Blog Overview</a>
 <h1 class="title"> <%= h(@page.title) %> </h1>
 <%
   articles = @pages.find(:all, :in_directory => @page.dir, :recursive => true,

Modified: MacRubyWebsite/trunk/content/blog/title_index.txt
===================================================================
--- MacRubyWebsite/trunk/content/blog/title_index.txt	2009-03-14 04:00:45 UTC (rev 916)
+++ MacRubyWebsite/trunk/content/blog/title_index.txt	2009-03-14 04:28:43 UTC (rev 917)
@@ -5,7 +5,8 @@
 filter:
   - erb
 ---
-<a style="float:right" href="/blog/index.html">Full Blog</a>
+<a style="float:right" href="/feeds/posts/macruby/index.xml"><img src="/images/feed.png"></a>
+<a style="float:right;margin-right:10px;" href="/blog/index.html">Full Blog</a>
 <h1 class="title"> <%= h(@page.title) %> </h1>
 <%
   articles = @pages.find(:all, :in_directory => @page.dir, :recursive => true,

Added: MacRubyWebsite/trunk/content/feeds/posts/macruby/index.txt
===================================================================
--- MacRubyWebsite/trunk/content/feeds/posts/macruby/index.txt	                        (rev 0)
+++ MacRubyWebsite/trunk/content/feeds/posts/macruby/index.txt	2009-03-14 04:28:43 UTC (rev 917)
@@ -0,0 +1,47 @@
+---
+title:       MacRuby Posts
+description: News posts for the MacRuby project at Mac OS Forge.
+created_at:  2008-08-02 14:06:40.000000 -06:00
+link:        http://www.macruby.org
+extension:   xml
+layout:      nil
+dirty:       true
+filter:
+  - erb
+---
+<rss version="2.0">
+<channel>
+<title><%= @page.title %></title>
+<link><%= @page.link %></link>
+<description><%= @page.description %></description>
+<language>en-us</language>
+<lastBuildDate><%= Time.now.xmlschema %></lastBuildDate>
+<%
+  articles = @pages.find(:all, :in_directory => File.join("blog"), 
+  :recursive => true, :sort_by => "created_at", :reverse => true, :blog_post => true)
+  articles.each do |article|
+    next if article == @page
+-%>
+<item>
+<title><%= h(article.title) %></title>
+<link><%= "#{@page.link}#{article.url}" %></link>
+<description><%= h(render(article)) %></description>
+<pubDate><%= article.created_at.xmlschema %></pubDate>
+<guid><%= "#{@page.link}#{article.url}" %></guid>
+</item>
+<% end -%>
+</channel>
+</rss>
+
+
+
+
+
+
+
+
+
+
+
+
+

Added: MacRubyWebsite/trunk/content/images/feed.png
===================================================================
(Binary files differ)


Property changes on: MacRubyWebsite/trunk/content/images/feed.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090313/84756baa/attachment-0001.html>


More information about the macruby-changes mailing list