You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by jf...@apache.org on 2014/01/08 15:30:42 UTC

svn commit: r1556550 - in /incubator/aurora/site: Rakefile publish/community/index.html source/community.html.md

Author: jfarrell
Date: Wed Jan  8 14:30:42 2014
New Revision: 1556550

URL: http://svn.apache.org/r1556550
Log:
AURORA-22: adding reviewboard mailing list

Added:
    incubator/aurora/site/Rakefile
Modified:
    incubator/aurora/site/publish/community/index.html
    incubator/aurora/site/source/community.html.md

Added: incubator/aurora/site/Rakefile
URL: http://svn.apache.org/viewvc/incubator/aurora/site/Rakefile?rev=1556550&view=auto
==============================================================================
--- incubator/aurora/site/Rakefile (added)
+++ incubator/aurora/site/Rakefile Wed Jan  8 14:30:42 2014
@@ -0,0 +1,23 @@
+require 'rubygems'
+require 'rake/clean'
+
+task :default => [:build, :clean]
+ 
+CLEAN.include "**/.DS_Store"
+
+desc "Build the website from source"
+task :build do
+  puts "Building website from static source"
+  result = system("middleman build --clean")
+  if result 
+    puts "Successfully generated the site, please commit your changes"
+  else
+    puts "An error was encountered when generating the site"
+  end
+end
+
+desc "Run the site in development mode. Preview available at http://localhost:4567/"
+task :dev do
+  system("middleman server")
+end
+

Modified: incubator/aurora/site/publish/community/index.html
URL: http://svn.apache.org/viewvc/incubator/aurora/site/publish/community/index.html?rev=1556550&r1=1556549&r2=1556550&view=diff
==============================================================================
--- incubator/aurora/site/publish/community/index.html (original)
+++ incubator/aurora/site/publish/community/index.html Wed Jan  8 14:30:42 2014
@@ -79,6 +79,10 @@
 
         <p><a href="mailto:commits-subscribe@aurora.incubator.apache.org">Subscribe</a> | <a href="mailto:commits-unsubscribe@aurora.incubator.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-aurora-commits/">Archive</a></p>
 
+        <p><strong>Reviews</strong> - Reviewboard code reviews.</p>
+
+        <p><a href="mailto:reviews-subscribe@aurora.incubator.apache.org">Subscribe</a> | <a href="mailto:reviews-unsubscribe@aurora.incubator.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-aurora-reviews/">Archive</a></p>
+
     </div>
     <div class="span6">
         <h3>Contribute</h3>

Modified: incubator/aurora/site/source/community.html.md
URL: http://svn.apache.org/viewvc/incubator/aurora/site/source/community.html.md?rev=1556550&r1=1556549&r2=1556550&view=diff
==============================================================================
--- incubator/aurora/site/source/community.html.md (original)
+++ incubator/aurora/site/source/community.html.md Wed Jan  8 14:30:42 2014
@@ -10,6 +10,10 @@
 
 		<p><a href="mailto:commits-subscribe@aurora.incubator.apache.org">Subscribe</a> | <a href="mailto:commits-unsubscribe@aurora.incubator.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-aurora-commits/">Archive</a></p>
 
+        <p><strong>Reviews</strong> - Reviewboard code reviews.</p>
+
+        <p><a href="mailto:reviews-subscribe@aurora.incubator.apache.org">Subscribe</a> | <a href="mailto:reviews-unsubscribe@aurora.incubator.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-aurora-reviews/">Archive</a></p>
+
 	</div>
 	<div class="span6">
 		<h3>Contribute</h3>
@@ -29,4 +33,4 @@
 			
 	<h4 name="twitter">Follow us on Twitter</h4>
 	<p>Tweet at us, we're <a href="http://twitter.com/ApacheAurora">@ApacheAurora</a> on Twitter and use the hashtag <a href="https://twitter.com/search?q=%23aurora">#aurora</a>.</p>
-</div>
\ No newline at end of file
+</div>