Repository: reef
Updated Branches:
  refs/heads/master 4fb243c0f -> 0357e4f44


[REEF-1193] Move DOAP file into website/src/site/resources.

To avoid accidental removal of `doap.rdf` in the future,
this explictly registers `doap.rdf` into website resources folder.
`website/publish.sh` will consider this as a web resource.

This also updates doap.rdf path in `dev/update_website.py`.

JIRA:
  [REEF-1193](https://issues.apache.org/jira/browse/REEF-1193)

Pull Request:
  This closes #831


Project: http://git-wip-us.apache.org/repos/asf/reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/0357e4f4
Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/0357e4f4
Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/0357e4f4

Branch: refs/heads/master
Commit: 0357e4f4469c18e9300889be23366713fcd46669
Parents: 4fb243c
Author: Dongjoon Hyun <[email protected]>
Authored: Fri Feb 5 17:27:34 2016 -0800
Committer: Mariia Mykhailova <[email protected]>
Committed: Tue Feb 9 11:46:35 2016 -0800

----------------------------------------------------------------------
 dev/update_website.py               |  2 +-
 doap.rdf                            | 67 --------------------------------
 website/src/site/resources/doap.rdf | 67 ++++++++++++++++++++++++++++++++
 3 files changed, 68 insertions(+), 68 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/0357e4f4/dev/update_website.py
----------------------------------------------------------------------
diff --git a/dev/update_website.py b/dev/update_website.py
index 91cb5fd..c3e501d 100644
--- a/dev/update_website.py
+++ b/dev/update_website.py
@@ -151,6 +151,6 @@ if __name__ == "__main__":
     args = parser.parse_args()
 
     reef_home = os.path.abspath(args.reef_home)
-    update_doap(reef_home + "/doap.rdf", args.reef_version)
+    update_doap(reef_home + "/website/src/site/resources/doap.rdf", 
args.reef_version)
     update_release_js(reef_home + "/website/src/site/resources/js/release.js", 
args.reef_version, args.sha512, args.notes_link)
     update_downloads(reef_home + "/website/src/site/markdown/downloads.md", 
args.reef_version, args.sha512, args.notes_link)

http://git-wip-us.apache.org/repos/asf/reef/blob/0357e4f4/doap.rdf
----------------------------------------------------------------------
diff --git a/doap.rdf b/doap.rdf
deleted file mode 100644
index 8e8f108..0000000
--- a/doap.rdf
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-<?xml-stylesheet type="text/xsl"?>
-<rdf:RDF xml:lang="en"
-         xmlns="http://usefulinc.com/ns/doap#";
-         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
-         xmlns:asfext="http://projects.apache.org/ns/asfext#";
-         xmlns:foaf="http://xmlns.com/foaf/0.1/";>
-  <Project rdf:about="http://reef.apache.org/";>
-    <created>2014-08-12</created>
-    <license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"; />
-    <name>Apache REEF</name>
-    <homepage rdf:resource="http://reef.apache.org/"; />
-    <asfext:pmc rdf:resource="http://reef.apache.org/"; />
-    <shortdesc>
-      Apache REEF (Retainable Evaluator Execution Framework) is 
-      a scale-out computing fabric that eases the development of Big Data 
-      applications on top of resource managers such as Apache YARN and Mesos.
-    </shortdesc>
-    <description>
-      Apache REEF (Retainable Evaluator Execution Framework) is a development
-      framework that provides a control-plane for scheduling and coordinating
-      task-level (data-plane) work on cluster resources obtained from a
-      Resource Manager. REEF provides mechanisms that facilitate resource
-      reuse for data caching, and state management abstractions that greatly
-      ease the development of elastic data processing workflows on cloud
-      platforms that support a Resource Manager service.
-    </description>
-    <bug-database rdf:resource="http://issues.apache.org/jira/browse/REEF"; />
-    <mailing-list rdf:resource="http://reef.apache.org/mailing-list.html"; />
-    <download-page rdf:resource="http://reef.apache.org/downloads.html"; />
-    <programming-language>Java</programming-language>
-    <programming-language>C#</programming-language>
-    <programming-language>C++</programming-language>
-    <category rdf:resource="http://projects.apache.org/category/big-data"; />
-    <release>
-      <Version>
-        <name>0.13.0-incubating</name>
-        <created>2015-10-14</created>
-        <revision>0.13.0-incubating</revision>
-      </Version>
-    </release>
-    <repository>
-      <GitRepository>
-        <location 
rdf:resource="https://git-wip-us.apache.org/repos/asf/reef.git"/>
-        <browse 
rdf:resource="https://git-wip-us.apache.org/repos/asf?p=reef.git"/>
-      </GitRepository>
-    </repository>
-  </Project>
-</rdf:RDF>

http://git-wip-us.apache.org/repos/asf/reef/blob/0357e4f4/website/src/site/resources/doap.rdf
----------------------------------------------------------------------
diff --git a/website/src/site/resources/doap.rdf 
b/website/src/site/resources/doap.rdf
new file mode 100644
index 0000000..8e8f108
--- /dev/null
+++ b/website/src/site/resources/doap.rdf
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<?xml-stylesheet type="text/xsl"?>
+<rdf:RDF xml:lang="en"
+         xmlns="http://usefulinc.com/ns/doap#";
+         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+         xmlns:asfext="http://projects.apache.org/ns/asfext#";
+         xmlns:foaf="http://xmlns.com/foaf/0.1/";>
+  <Project rdf:about="http://reef.apache.org/";>
+    <created>2014-08-12</created>
+    <license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"; />
+    <name>Apache REEF</name>
+    <homepage rdf:resource="http://reef.apache.org/"; />
+    <asfext:pmc rdf:resource="http://reef.apache.org/"; />
+    <shortdesc>
+      Apache REEF (Retainable Evaluator Execution Framework) is 
+      a scale-out computing fabric that eases the development of Big Data 
+      applications on top of resource managers such as Apache YARN and Mesos.
+    </shortdesc>
+    <description>
+      Apache REEF (Retainable Evaluator Execution Framework) is a development
+      framework that provides a control-plane for scheduling and coordinating
+      task-level (data-plane) work on cluster resources obtained from a
+      Resource Manager. REEF provides mechanisms that facilitate resource
+      reuse for data caching, and state management abstractions that greatly
+      ease the development of elastic data processing workflows on cloud
+      platforms that support a Resource Manager service.
+    </description>
+    <bug-database rdf:resource="http://issues.apache.org/jira/browse/REEF"; />
+    <mailing-list rdf:resource="http://reef.apache.org/mailing-list.html"; />
+    <download-page rdf:resource="http://reef.apache.org/downloads.html"; />
+    <programming-language>Java</programming-language>
+    <programming-language>C#</programming-language>
+    <programming-language>C++</programming-language>
+    <category rdf:resource="http://projects.apache.org/category/big-data"; />
+    <release>
+      <Version>
+        <name>0.13.0-incubating</name>
+        <created>2015-10-14</created>
+        <revision>0.13.0-incubating</revision>
+      </Version>
+    </release>
+    <repository>
+      <GitRepository>
+        <location 
rdf:resource="https://git-wip-us.apache.org/repos/asf/reef.git"/>
+        <browse 
rdf:resource="https://git-wip-us.apache.org/repos/asf?p=reef.git"/>
+      </GitRepository>
+    </repository>
+  </Project>
+</rdf:RDF>

Reply via email to