Repository: incubator-apex-site
Updated Branches:
  refs/heads/master 201437660 -> b92c8082f


Updating widget page size; Adding maturity report


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

Branch: refs/heads/master
Commit: b92c8082f97ac94a35b0fdddca22e9efd81bf5f6
Parents: 2014376
Author: sashadt <[email protected]>
Authored: Tue Mar 1 19:32:17 2016 -0800
Committer: sashadt <[email protected]>
Committed: Tue Mar 1 19:32:17 2016 -0800

----------------------------------------------------------------------
 README.md                  |   2 +-
 gulpfile.js                |  11 +++-
 src/md/community.md        |   8 ++-
 src/md/maturity.md         | 124 ++++++++++++++++++++++++++++++++++++++++
 src/md/upcoming-meetups.md |   8 +--
 5 files changed, 145 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/b92c8082/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 8459442..3672132 100644
--- a/README.md
+++ b/README.md
@@ -163,7 +163,7 @@ To update the widget, or change the topic, go to the 
[Meetup Widget Foundry]http
   };
   var $queries = {
     events: function() {
-      return mup_widget.api_call("/2/open_events", {topic: $parameters.topic, 
page: '20'});
+      return mup_widget.api_call("/2/open_events", {topic: $parameters.topic, 
page: '1000'});
     }
   };
 </script>

http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/b92c8082/gulpfile.js
----------------------------------------------------------------------
diff --git a/gulpfile.js b/gulpfile.js
index 1b4fc5b..ab9e2ac 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -110,8 +110,17 @@ gulp.task('copy:images', function() {
     .pipe(gulp.dest(path.join(BUILD_LOCATION, 'images')));
 });
 
+// Copies fonts to dist
+gulp.task('copy:fonts', function() {
+  return gulp.src([
+    './bower_components/bootstrap/dist/fonts/*'
+  ])
+    .pipe(gulp.dest(path.join(BUILD_LOCATION, 'fonts')));
+});
+
+
 // Default task is to build the site
-gulp.task('default', ['less', 'html', 'copy:js', 'copy:images']);
+gulp.task('default', ['less', 'html', 'copy:js', 'copy:images', 'copy:fonts']);
 
 
 // Fetch all JIRAs assodicated with the projects to create a roadmap file

http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/b92c8082/src/md/community.md
----------------------------------------------------------------------
diff --git a/src/md/community.md b/src/md/community.md
index 8ce4486..44be6cd 100644
--- a/src/md/community.md
+++ b/src/md/community.md
@@ -21,15 +21,19 @@ The Apex Project is made up of two repositories:
 
 ## Release Process
 
-**To learn more about the release process for Apex, [check out the release 
guidelines](/release.html).**
+To learn more about the release process for Apex, [check out the release 
guidelines](/release.html).
 
-**To learn more about the release candidate verification for Apex, [check out 
the verification guidelines](/verification.html).**
+To learn more about the release candidate verification for Apex, [check out 
the verification guidelines](/verification.html).
 
 ## Issue Tracking
 
 - [Apex Core JIRA](https://issues.apache.org/jira/browse/APEXCORE/)
 - [Apex Malhar JIRA](https://issues.apache.org/jira/browse/APEXMALHAR/)
 
+## Project Maturity Model
+
+To see self assessment of the project, [check out project maturity 
model](/maturity.html)
+
 ## Meetup Groups
 
 Full list of Apache Apex meetup groups is available at [Apache Apex Meetup 
Groups](http://apache-apex.meetup.com/)

http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/b92c8082/src/md/maturity.md
----------------------------------------------------------------------
diff --git a/src/md/maturity.md b/src/md/maturity.md
new file mode 100644
index 0000000..967ed91
--- /dev/null
+++ b/src/md/maturity.md
@@ -0,0 +1,124 @@
+# Podling Maturity Assessment
+
+## Overview
+
+This is an assessment of the Apex podling's maturity, meant to help inform the 
decision (of the mentors, community, Incubator PMC and ASF Board of Directors) 
to graduate it as a top-level Apache project.
+
+It is based on the ASF project maturity model at 
https://community.apache.org/apache-way/apache-project-maturity-model.html
+
+## Maturity model assessment 
+Mentors and community members are encouraged to contribute to this and comment 
on it.
+
+### Code
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CD10**
+The project produces Open Source software, for distribution to the public at 
no charge.
+ 
+<i class="glyphicon glyphicon-ok text-success"></i> **CD20**
+The project's code is easily discoverable and publicly accessible.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CD30**
+The code can be built in a reproducible way using widely available standard 
tools.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CD40**
+The full history of the project's code is available via a source code control 
system, in a way that allows any released version to be recreated.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CD50**
+The provenance of each line of code is established via the source code control 
system, in a reliable way based on strong authentication of the committer. When 
third-party contributions are committed, commit messages provide reliable 
information about the code provenance.
+
+### Licenses and Copyright
+
+<i class="glyphicon glyphicon-ok text-success"></i> **LC10**
+The code is released under the Apache License, version 2.0.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **LC20**
+Libraries that are mandatory dependencies of the project's code do not create 
more restrictions than the Apache License does. 
+
+<i class="glyphicon glyphicon-ok text-success"></i> **LC30**
+The libraries mentioned in LC20 are available as Open Source software.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **LC40**
+Committers are bound by an Individual Contributor Agreement (the "Apache 
iCLA") that defines which code they are allowed to commit and how they need to 
identify code that is not their own.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **LC50**
+The copyright ownership of everything that the project produces is clearly 
defined and documented. 
+
+### Releases
+
+<i class="glyphicon glyphicon-ok text-success"></i> **RE10**
+Releases consist of source code, distributed using standard and open archive 
formats that are expected to stay readable in the long term.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **RE20**
+Releases are approved by the project's PMC (see CS10), in order to make them 
an act of the Foundation.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **RE30**
+Releases are signed and/or distributed along with digests that can be reliably 
used to validate the downloaded archives.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **RE40**
+Convenience binaries can be distributed alongside source code but they are not 
Apache Releases -- they are just a convenience provided with no guarantee.
+
+### Quality
+
+<i class="glyphicon glyphicon-ok text-success"></i> **QU10**
+The project is open and honest about the quality of its code. Various levels 
of quality and maturity for various modules are natural and acceptable as long 
as they are clearly communicated.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **QU20**
+The project puts a very high priority on producing secure software.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **QU30**
+The project provides a well-documented channel to report security issues, 
along with a documented way of responding to them. 
+
+<i class="glyphicon glyphicon-ok text-success"></i> **QU40**
+The project puts a high priority on backwards compatibility and aims to 
document any incompatible changes and provide tools and documentation to help 
users transition to new features.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **QU50**
+The project strives to respond to documented bug reports in a timely manner.
+
+### Community
+
+<i class="glyphicon glyphicon-remove text-danger"></i> **CO10**
+The project has a well-known homepage that points to all the information 
required to operate according to this maturity model.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CO20**
+The community welcomes contributions from anyone who acts in good faith and in 
a respectful manner and adds value to the project.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CO30**
+Contributions include not only source code, but also documentation, 
constructive bug reports, constructive discussions, marketing and generally 
anything that adds value to the project.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CO40**
+The community is meritocratic and over time aims to give more rights and 
responsibilities to contributors who add value to the project.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CO50**
+The way in which contributors can be granted more rights such as commit access 
or decision power is clearly documented and is the same for all contributors.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CO60**
+The community operates based on consensus of its members (see CS10) who have 
decision power. Dictators, benevolent or not, are not welcome in Apache 
projects.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CO70**
+The project strives to answer user questions in a timely manner.
+
+
+### Consensus Building
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CS10**
+The project maintains a public list of its contributors who have decision 
power -- the project's PMC (Project Management Committee) consists of those 
contributors.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CS20**
+Decisions are made by consensus among PMC members 9 and are documented on the 
project's main communications channel. Community opinions are taken into 
account but the PMC has the final word if needed.
+
+<i class="glyphicon glyphicon-remove text-danger"></i> **CS30**
+Documented voting rules are used to build consensus when discussion is not 
sufficient.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CS40**
+In Apache projects, vetoes are only valid for code commits and are justified 
by a technical explanation, as per the Apache voting rules defined in CS30.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **CS50**
+All "important" discussions happen asynchronously in written form on the 
project's main communications channel. Offline, face-to-face or private 
discussions 11 that affect the project are also documented on that channel.
+
+### Independence
+
+<i class="glyphicon glyphicon-ok text-success"></i> **IN10**
+The project is independent from any corporate or organizational influence.
+
+<i class="glyphicon glyphicon-ok text-success"></i> **IN20**
+Contributors act as themselves as opposed to representatives of a corporation 
or organization.

http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/b92c8082/src/md/upcoming-meetups.md
----------------------------------------------------------------------
diff --git a/src/md/upcoming-meetups.md b/src/md/upcoming-meetups.md
index 8ff00a2..8d576c7 100644
--- a/src/md/upcoming-meetups.md
+++ b/src/md/upcoming-meetups.md
@@ -1,16 +1,16 @@
 ## Upcoming Meetups
 
 
-<div id="1456452086565"></div>
+<div id="1456888746250"></div>
 <script 
src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
 <script>jQuery.noConflict();</script>
 <script>
   jQuery(function() {
-    var scripts = 
["var%20%24parameters%20%3D%20%7B%22topic%22%3A%22apache-apex%22%2C%22width%22%3A%22250%22%2C%22height%22%3A%221000%22%7D%3B%0Avar%20%24queries%20%3D%20%7B%20events%3A%20function%28%29%20%7B%20return%20%22https%3A//api.meetup.com/2/open_events%3Fand_text%3DFalse%26offset%3D0%26format%3Djson%26limited_events%3DFalse%26sig%3D5cc475b2c28e785d85c0ae29356f71dbb7c85839%26topic%3Dapache-apex%26callback%3D%3F%26page%3D20%26radius%3D25.0%26sig_id%3D87819142%26desc%3DFalse%26status%3Dupcoming%26_%3D1456452085434%26user_agent%3Dmeetup.widget%3Amug_stats%22%3B%20%7D%20%7D%3B%0A","%0Amup_widget.with_jquery%28function%28%24%2Cctx%29%7Bvar%20group%3D%27%27%2Cmonths%3D%5B%27Jan%27%2C%27Feb%27%2C%27Mar%27%2C%27Apr%27%2C%27May%27%2C%27Jun%27%2C%27Jul%27%2C%27Aug%27%2C%27Sep%27%2C%27Oct%27%2C%27Nov%27%2C%27Dec%27%5D%2CaddLink%3Dfunction%28content%2Clink%29%7Breturn%27%3Ca%20target%3D%22_blank%22%20href%3D%22%27+link+%27%22%3E%27+content+%27%3C/a%3E%27%3B%7D%2CaddLeadingZero%3Dfunctio
 
n%28num%29%7Breturn%28num%3C10%29%3F%28%270%27+num%29%3Anum%3B%7D%2CgetFormattedDate%3Dfunction%28millis%29%7Bvar%20date%3Dnew%20Date%28millis%29%3Breturn%20months%5Bdate.getMonth%28%29%5D+%27%20%27+addLeadingZero%28date.getDate%28%29%29+%27%2C%20%27+date.getFullYear%28%29.toString%28%29%3B%7D%3B%24.getJSON%28%24queries.events%28%29%2Cfunction%28data%29%7Bif%28data.status%26%26data.status.match%28/%5E200/%29%3D%3Dnull%29%7Bconsole.log%28%22Error%20loading%20Meetups%20events%3A%20%22%2Cdata.status+%22%3A%20%22+data.details%29%3B%7Delse%7Bif%28data.results.length%3E0%29%7Bvar%20uniqueEventsByKey%3D%7B%7D%3Bfor%28var%20i%3D0%3Bi%3Cdata.results.length%3Bi++%29%7Bvar%20event%3Ddata.results%5Bi%5D%3Bconsole.log%28event%29%3Bvar%20venue%3Devent.venue%3Bvar%20city%3D%28venue%26%26venue.city%29%3Fvenue.city%3A%27TBD%27%3Bvar%20state_country%3D%28venue%29%3Fvenue.state%7C%7Cvenue.country%3A%27%27%3Bvar%20location%3D%28state_country%29%3Fcity+%22%2C%20%22+state_country.toUpperCase%28%29%3Acity
 
%3Bevent.location%3Dlocation%3Bvar%20eventKey%3Devent.time%3Fevent.time%3Aevent.name%3Bif%28uniqueEventsByKey%5BeventKey%5D%29%7Bconsole.log%28%22DUPLICATE%20EVENT%20%28skipped%29%3A%20%22%2Cevent.event_url%2C%22%20matches%20previous%20event%20%22%2CuniqueEventsByKey%5BeventKey%5D.event_url%2C%22%20with%20date%3A%22%2CgetFormattedDate%28event.time%29%2C%22%20and%20name%20%22%2Cevent.name%29%3B%7Delse%7BuniqueEventsByKey%5BeventKey%5D%3Devent%3B%24%28%27.next-events%27%2Cctx%29.append%28%27%3Cp%3E%27+addLink%28getFormattedDate%28event.time%29+%22%20-%20%22+event.location%2Cevent.event_url%29+%22%20-%20%22+event.name+%22%3C/p%3E%22%29%3B%7D%7D%7D%7D%7D%29%3B%7D%29%3B"];
-    
jQuery("#1456452086565").append(unescape("%3Clink%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20href%3D%22https%3A//a248.e.akamai.net/secure.meetupstatic.com/style/widget.css%22/%3E%0A%0A%3C/head%3E%3Cdiv%20class%3D%22next-events%22%3E%3C/div%3E"));
+    var scripts = 
["var%20%24parameters%20%3D%20%7B%22topic%22%3A%22apache-apex%22%2C%22width%22%3A%22250%22%2C%22height%22%3A%221000%22%7D%3B%0Avar%20%24queries%20%3D%20%7B%20events%3A%20function%28%29%20%7B%20return%20%22https%3A//api.meetup.com/2/open_events%3Fand_text%3DFalse%26offset%3D0%26format%3Djson%26limited_events%3DFalse%26sig%3D3b7decaeff772cd10cb65730b81a845f8533cc8b%26topic%3Dapache-apex%26callback%3D%3F%26page%3D1000%26radius%3D25.0%26sig_id%3D87819142%26desc%3DFalse%26status%3Dupcoming%26_%3D1456888745418%26user_agent%3Dmeetup.widget%3Amug_stats%22%3B%20%7D%20%7D%3B%0A","%0Amup_widget.with_jquery%28function%28%24%2Cctx%29%7Bvar%20group%3D%27%27%2Cmonths%3D%5B%27Jan%27%2C%27Feb%27%2C%27Mar%27%2C%27Apr%27%2C%27May%27%2C%27Jun%27%2C%27Jul%27%2C%27Aug%27%2C%27Sep%27%2C%27Oct%27%2C%27Nov%27%2C%27Dec%27%5D%2CaddLink%3Dfunction%28content%2Clink%29%7Breturn%27%3Ca%20target%3D%22_blank%22%20href%3D%22%27+link+%27%22%3E%27+content+%27%3C/a%3E%27%3B%7D%2CaddLeadingZero%3Dfunct
 
ion%28num%29%7Breturn%28num%3C10%29%3F%28%270%27+num%29%3Anum%3B%7D%2CgetFormattedDate%3Dfunction%28millis%29%7Bvar%20date%3Dnew%20Date%28millis%29%3Breturn%20months%5Bdate.getMonth%28%29%5D+%27%20%27+addLeadingZero%28date.getDate%28%29%29+%27%2C%20%27+date.getFullYear%28%29.toString%28%29%3B%7D%3B%24.getJSON%28%24queries.events%28%29%2Cfunction%28data%29%7Bif%28data.status%26%26data.status.match%28/%5E200/%29%3D%3Dnull%29%7Bconsole.log%28%22Error%20loading%20Meetups%20events%3A%20%22%2Cdata.status+%22%3A%20%22+data.details%29%3B%7Delse%7Bif%28data.results.length%3E0%29%7Bvar%20uniqueEventsByKey%3D%7B%7D%3Bfor%28var%20i%3D0%3Bi%3Cdata.results.length%3Bi++%29%7Bvar%20event%3Ddata.results%5Bi%5D%3Bconsole.log%28event%29%3Bvar%20venue%3Devent.venue%3Bvar%20city%3D%28venue%26%26venue.city%29%3Fvenue.city%3A%27TBD%27%3Bvar%20state_country%3D%28venue%29%3Fvenue.state%7C%7Cvenue.country%3A%27%27%3Bvar%20location%3D%28state_country%29%3Fcity+%22%2C%20%22+state_country.toUpperCase%28%29%3Aci
 
ty%3Bevent.location%3Dlocation%3Bvar%20eventKey%3Devent.time%3Fevent.time%3Aevent.name%3Bif%28uniqueEventsByKey%5BeventKey%5D%29%7Bconsole.log%28%22DUPLICATE%20EVENT%20%28skipped%29%3A%20%22%2Cevent.event_url%2C%22%20matches%20previous%20event%20%22%2CuniqueEventsByKey%5BeventKey%5D.event_url%2C%22%20with%20date%3A%22%2CgetFormattedDate%28event.time%29%2C%22%20and%20name%20%22%2Cevent.name%29%3B%7Delse%7BuniqueEventsByKey%5BeventKey%5D%3Devent%3B%24%28%27.next-events%27%2Cctx%29.append%28%27%3Cp%3E%27+addLink%28getFormattedDate%28event.time%29+%22%20-%20%22+event.location%2Cevent.event_url%29+%22%20-%20%22+event.name+%22%3C/p%3E%22%29%3B%7D%7D%7D%7D%7D%29%3B%7D%29%3B"];
+    
jQuery("#1456888746250").append(unescape("%3Clink%20rel%3D%22stylesheet%22%20type%3D%22text/css%22%20href%3D%22https%3A//a248.e.akamai.net/secure.meetupstatic.com/style/widget.css%22/%3E%0A%0A%3C/head%3E%3Cdiv%20class%3D%22next-events%22%3E%3C/div%3E"));
     var mup_widget = {
       with_jquery: function(block) {
-        block(jQuery, document.getElementById("1456452086565"));
+        block(jQuery, document.getElementById("1456888746250"));
       }
     };
     for (i in scripts) { eval(unescape(scripts[i])) }

Reply via email to