[incubator-myriad] Git Push Summary

2016-02-24 Thread kensipe
Repository: incubator-myriad
Updated Branches:
  refs/heads/myriadha [deleted] f90a0407c


[incubator-myriad] Git Push Summary

2016-02-24 Thread kensipe
Repository: incubator-myriad
Updated Branches:
  refs/heads/multi-project [deleted] 82ebfdb06


[1/2] incubator-myriad git commit: MYRIAD-181 Build failure due to dependency on zookeeper test jar

2016-02-24 Thread kensipe
Repository: incubator-myriad
Updated Branches:
  refs/heads/master bcf277843 -> 9c03f6a0b


MYRIAD-181 Build failure due to dependency on zookeeper test jar


Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/25849b2b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/25849b2b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/25849b2b

Branch: refs/heads/master
Commit: 25849b2b96c23c52376139782fc623d24c74179a
Parents: 44d73d0
Author: Zachary Jaffee 
Authored: Thu Feb 18 22:09:50 2016 -0800
Committer: Zachary Jaffee 
Committed: Thu Feb 18 22:16:04 2016 -0800

--
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/25849b2b/build.gradle
--
diff --git a/build.gradle b/build.gradle
index 807d117..7e57403 100644
--- a/build.gradle
+++ b/build.gradle
@@ -67,8 +67,8 @@ subprojects {
 }
 
 repositories {
-mavenLocal()
 mavenCentral()
+mavenLocal()
 }
 
 dependencies {
@@ -78,7 +78,7 @@ subprojects {
 compile "org.apache.mesos:mesos:${mesosVer}"
 compile 'com.google.code.gson:gson:2.3.1'// marshalling 
between the scheduler and executor
 
-
+testCompile 'org.apache.zookeeper:zookeeper:3.4.6' // to resolve 
temporary mavenlocal issue
 testCompile 'junit:junit:4.12'
 testCompile 'commons-collections:commons-collections:3.2.1'
 }



[3/3] incubator-myriad git commit: This closes: #53 Review: https://github.com/apache/incubator-myriad/pull/53

2016-02-24 Thread kensipe
This closes: #53
Review: https://github.com/apache/incubator-myriad/pull/53


Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/bcf27784
Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/bcf27784
Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/bcf27784

Branch: refs/heads/master
Commit: bcf277843bdc81d1e8d9f194282c93c51762d937
Parents: 3daab13 c2ff1e6
Author: Ken Sipe 
Authored: Wed Feb 24 12:13:54 2016 -0600
Committer: Ken Sipe 
Committed: Wed Feb 24 12:13:54 2016 -0600

--
 support/apache-release/prepare_rc.sh | 103 +
 support/apache-release/release.sh| 105 ++
 2 files changed, 208 insertions(+)
--




[2/3] incubator-myriad git commit: added import and changed logger to not be static

2016-02-24 Thread kensipe
added import and changed logger to not be static


Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/e28e1cfe
Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/e28e1cfe
Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/e28e1cfe

Branch: refs/heads/master
Commit: e28e1cfee9a7677be7cd2f6c0b3ca58d6a3c9594
Parents: 6f3d349
Author: Ken Sipe 
Authored: Wed Feb 24 12:10:40 2016 -0600
Committer: Ken Sipe 
Committed: Wed Feb 24 12:10:40 2016 -0600

--
 .../java/org/apache/myriad/api/ControllerResource.java | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/e28e1cfe/myriad-scheduler/src/main/java/org/apache/myriad/api/ControllerResource.java
--
diff --git 
a/myriad-scheduler/src/main/java/org/apache/myriad/api/ControllerResource.java 
b/myriad-scheduler/src/main/java/org/apache/myriad/api/ControllerResource.java
index e1d136e..1c2be91 100644
--- 
a/myriad-scheduler/src/main/java/org/apache/myriad/api/ControllerResource.java
+++ 
b/myriad-scheduler/src/main/java/org/apache/myriad/api/ControllerResource.java
@@ -19,22 +19,23 @@
 package org.apache.myriad.api;
 
 import com.codahale.metrics.annotation.Timed;
+import org.apache.myriad.scheduler.MyriadOperations;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
 import javax.inject.Inject;
-import javax.ws.rs.GET;
+import javax.ws.rs.POST;
 import javax.ws.rs.Path;
 import javax.ws.rs.Produces;
 import javax.ws.rs.core.MediaType;
 import javax.ws.rs.core.Response;
-import org.apache.myriad.scheduler.MyriadOperations;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 /**
  * RESTful API to resource manager
  */
 @Path("/framework")
 public class ControllerResource {
-  private static final Logger LOGGER = 
LoggerFactory.getLogger(ControllerResource.class);
+  private final Logger logger = LoggerFactory.getLogger(getClass());
 
   private MyriadOperations myriadOperations;
 
@@ -53,7 +54,7 @@ public class ControllerResource {
   @Path("/shutdown/framework")
   @Produces(MediaType.APPLICATION_JSON)
   public Response shutdownFramework() {
-LOGGER.info("shutdownterminating framework... ");
+logger.info("shutdownterminating framework... ");
 
 myriadOperations.shutdownFramework();
 



[3/3] incubator-myriad git commit: This closes: #58 Review: https://github.com/apache/incubator-myriad/pull/58

2016-02-24 Thread kensipe
This closes: #58
Review: https://github.com/apache/incubator-myriad/pull/58


Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/3daab13e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/3daab13e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/3daab13e

Branch: refs/heads/master
Commit: 3daab13e5257c384f58c496c501b64278711d361
Parents: 8cad533 e28e1cf
Author: Ken Sipe 
Authored: Wed Feb 24 12:10:57 2016 -0600
Committer: Ken Sipe 
Committed: Wed Feb 24 12:10:57 2016 -0600

--
 .../org/apache/myriad/api/ControllerResource.java| 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)
--




[1/3] incubator-myriad git commit: Added 0.1.0 release info to news and downloads

2016-02-24 Thread kensipe
Repository: incubator-myriad
Updated Branches:
  refs/heads/master 44d73d080 -> 8cad53316


Added 0.1.0 release info to news and downloads


Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/397c2013
Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/397c2013
Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/397c2013

Branch: refs/heads/master
Commit: 397c20136829b64cc83ce733fe5ceaa83a15d691
Parents: 06f6ca4
Author: smarella 
Authored: Fri Dec 11 20:14:42 2015 -0800
Committer: smarella 
Committed: Sat Dec 12 01:57:12 2015 -0800

--
 .../2015-12-09-myriad-0.1.0-incubating-released.md | 13 +
 website/downloads/index.md | 12 +---
 2 files changed, 22 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/397c2013/website/_posts/2015-12-09-myriad-0.1.0-incubating-released.md
--
diff --git a/website/_posts/2015-12-09-myriad-0.1.0-incubating-released.md 
b/website/_posts/2015-12-09-myriad-0.1.0-incubating-released.md
new file mode 100644
index 000..f393a71
--- /dev/null
+++ b/website/_posts/2015-12-09-myriad-0.1.0-incubating-released.md
@@ -0,0 +1,13 @@
+---
+layout: big_card_for_md
+title:  "Apache Myriad 0.1.0 (Incubating) Released"
+date:   2015-12-10 00:00:00
+categories: news
+blurb: "Apache Myriad community releases the first version of Myriad."
+---
+The Apache Myriad community is excited to make the first Apache release of the 
project. Thanks to a diverse community of developers, mentors, Apache members 
and users! 
+
+[Announcement](https://github.com/apache/incubator-myriad)
+
+[Download](/downloads/#latest)
+

http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/397c2013/website/downloads/index.md
--
diff --git a/website/downloads/index.md b/website/downloads/index.md
index 97800c0..9de36cf 100644
--- a/website/downloads/index.md
+++ b/website/downloads/index.md
@@ -3,13 +3,19 @@ layout: big_card_for_md
 title: Downloads
 permalink: /downloads/
 ---
-# Under Incubation
+# Download Myriad
+Download the most recent stable release: 
[myriad-0.1.0-incubating](http://www.apache.org/dist/incubator/myriad/myriad-0.1.0-incubating/)
 ([Release 
Notes](https://cwiki.apache.org/confluence/display/MYRIAD/Release+Notes#ReleaseNotes-myriad-0.1.0-incubating))
 
-Apache Myriad is currently under 
[incubation](http://incubator.apache.org/projects/myriad.html) and we have yet 
to produce an official release.
+Once you have downloaded Myriad, follow the [installation and 
configuration](https://cwiki.apache.org/confluence/display/MYRIAD/Installation+and+Configuration)
 instructions, and take a look at the rest of the 
[documentation](https://cwiki.apache.org/confluence/display/MYRIAD).
 
-You can download the [source 
code](https://git-wip-us.apache.org/repos/asf?p=incubator-myriad.git) and [help 
us!]({{ site.baseurl }}/community)
+# Getting the latest code via source control
+The latest codebase can also be downloaded from the Apache git repository at:
+[https://git-wip-us.apache.org/repos/asf/incubator-myriad.git](https://git-wip-us.apache.org/repos/asf/incubator-myriad.git)
 
+A read-only git repository is also mirrored on Github at: 
[https://github.com/apache/incubator-myriad](https://github.com/apache/incubator-myriad)
 
+# Previous releases
+[myriad-0.1.0-incubating](http://www.apache.org/dist/incubator/myriad/myriad-0.1.0-incubating/)
 ([Release 
Notes](https://cwiki.apache.org/confluence/display/MYRIAD/Release+Notes#ReleaseNotes-myriad-0.1.0-incubating))
 
 
 



[2/3] incubator-myriad git commit: Added blog post to announce Myriad 0.1.0

2016-02-24 Thread kensipe
Added blog post to announce Myriad 0.1.0

- Created separate "news" and "blogs" dirs under _posts
- Included "Blogs" in left side nav and in the footer
- Fixed landing page to show only "news" feeds only
- New blogs added to "_posts/blogs" will be auto picked

This closes: #54
Review: https://github.com/apache/incubator-myriad/pull/54


Project: http://git-wip-us.apache.org/repos/asf/incubator-myriad/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-myriad/commit/1f9536f2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-myriad/tree/1f9536f2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-myriad/diff/1f9536f2

Branch: refs/heads/master
Commit: 1f9536f2bc47255a95807512645bce9b4945ec7e
Parents: 397c201
Author: smarella 
Authored: Sat Dec 12 01:43:00 2015 -0800
Committer: Ken Sipe 
Committed: Wed Feb 24 11:50:28 2016 -0600

--
 website/_includes/blog.html | 26 
 website/_includes/footer.html   |  1 +
 website/_includes/front_news.html   |  2 +-
 website/_includes/header.html   |  1 +
 website/_includes/page.html |  2 +-
 .../2015-03-01-project-enters-incubation.md | 10 ---
 .../2015-09-25-code-migrated-to-apache-git.md   | 14 
 ...15-12-09-myriad-0.1.0-incubating-released.md | 13 
 ...5-12-09-myriad-0.1.0-release-announcement.md | 67 
 .../2015-03-01-project-enters-incubation.md | 10 +++
 .../2015-09-25-code-migrated-to-apache-git.md   | 14 
 ...15-12-09-myriad-0.1.0-incubating-released.md | 13 
 website/blogs/index.html| 40 
 website/downloads/index.md  |  3 +-
 website/news/index.html |  2 +-
 15 files changed, 177 insertions(+), 41 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/1f9536f2/website/_includes/blog.html
--
diff --git a/website/_includes/blog.html b/website/_includes/blog.html
new file mode 100644
index 000..e59158f
--- /dev/null
+++ b/website/_includes/blog.html
@@ -0,0 +1,26 @@
+{% comment %}
+
+{% endcomment %}
+
+
+  
+{{post.content}}
+  
+

http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/1f9536f2/website/_includes/footer.html
--
diff --git a/website/_includes/footer.html b/website/_includes/footer.html
index b1fc14b..40089ad 100644
--- a/website/_includes/footer.html
+++ b/website/_includes/footer.html
@@ -61,6 +61,7 @@ under the License.
 News
 Documentation
 Downloads
+Blogs
 Community
   
 

http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/1f9536f2/website/_includes/front_news.html
--
diff --git a/website/_includes/front_news.html 
b/website/_includes/front_news.html
index 63b8b91..2f99090 100644
--- a/website/_includes/front_news.html
+++ b/website/_includes/front_news.html
@@ -23,7 +23,7 @@ under the License.
 
   News
 
-  {% for post in site.posts %}
+  {% for post in site.categories.news %}
   
 {{ post.title }}
   

http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/1f9536f2/website/_includes/header.html
--
diff --git a/website/_includes/header.html b/website/_includes/header.html
index 12f1fde..f18aa94 100644
--- a/website/_includes/header.html
+++ b/website/_includes/header.html
@@ -43,6 +43,7 @@ under the License.
 News
 Documentation
 Downloads
+Blogs
 Community
 
   

http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/1f9536f2/website/_includes/page.html
--
diff --git a/website/_includes/page.html b/website/_includes/page.html
index 11419e4..66ec1d6 100644
--- a/website/_includes/page.html
+++ b/website/_includes/page.html
@@ -21,7 +21,7 @@ under the License.
 
 
   {{post.title}}
-  
+  
 {{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ 
post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}
 {{ post.content }}
   

http://git-wip-us.apache.org/repos/asf/incubator-myriad/blob/1f9536f2/website/_posts/2015-03-01-project-enters-incubation.md
--
diff --git a/website/_posts/2015-03-01-project-enters-incubation.md 
b/website/_posts/2015-03-01-project-enters-incubation.md
deleted file mode 100644
index 10c9cb6..000
--- a/website/_posts/2015-03-01-project-enters-incubation.md
+++ /dev/null
@@ -1,10 +0,0 @@

-layout: big_card_for_md
-title: "Project Enters