You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by mf...@apache.org on 2012/12/18 20:06:24 UTC

svn commit: r1423580 - in /incubator/streams/site/trunk/content: people.mdtext script/ script/streams.js

Author: mfranklin
Date: Tue Dec 18 19:06:23 2012
New Revision: 1423580

URL: http://svn.apache.org/viewvc?rev=1423580&view=rev
Log:
Committing added files (STREAMS-7)

Added:
    incubator/streams/site/trunk/content/people.mdtext
    incubator/streams/site/trunk/content/script/
    incubator/streams/site/trunk/content/script/streams.js

Added: incubator/streams/site/trunk/content/people.mdtext
URL: http://svn.apache.org/viewvc/incubator/streams/site/trunk/content/people.mdtext?rev=1423580&view=auto
==============================================================================
--- incubator/streams/site/trunk/content/people.mdtext (added)
+++ incubator/streams/site/trunk/content/people.mdtext Tue Dec 18 19:06:23 2012
@@ -0,0 +1,27 @@
+Title:    Apache Streams Contributors.
+Notice:   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.
+
+
+Apache Streams is a community developed project.  The list below is a partial list of contributors to the project, for a complete list you'd have to look at all contributors to our issue tracker, mailing list and version control.  Contributors in the community serve in many different roles.  For more information on how Apache works, see [how it works][1].
+
+ Apache ID | Name          | Follow                     | Role(s)                        
+-----------|---------------|----------------------------|--------------------------------
+ mfranklin | Matt Franklin |twitter: [@mattfranklin][2] | Mentor, PPMC Member, Committer 
+
+[1]: http://www.apache.org/foundation/how-it-works.html
+[2]: http://www.twitter.com/mattfranklin

Added: incubator/streams/site/trunk/content/script/streams.js
URL: http://svn.apache.org/viewvc/incubator/streams/site/trunk/content/script/streams.js?rev=1423580&view=auto
==============================================================================
--- incubator/streams/site/trunk/content/script/streams.js (added)
+++ incubator/streams/site/trunk/content/script/streams.js Tue Dec 18 19:06:23 2012
@@ -0,0 +1,12 @@
+function init() {
+   var tables=document.getElementsByTagName("table");
+   for(var i=0; i<tables.length; i++) {
+      tables[i].className += "table table-striped";
+   }
+}
+
+if (window.addEventListener) {
+    window.addEventListener('load', init, false)
+} else if (window.attachEvent) {
+    window.attachEvent('onload', init);
+}