Author: ihabunek
Date: Thu Mar 22 14:58:02 2012
New Revision: 1303821
URL: http://svn.apache.org/viewvc?rev=1303821&view=rev
Log:
Initial import.
Added:
logging/site/branches/experimental-twig/README.md
logging/site/branches/experimental-twig/build.php
logging/site/branches/experimental-twig/pom.xml
logging/site/branches/experimental-twig/src/
logging/site/branches/experimental-twig/src/site/
logging/site/branches/experimental-twig/src/site/pages/
logging/site/branches/experimental-twig/src/site/pages/charter.html.twig
logging/site/branches/experimental-twig/src/site/pages/index.html.twig
logging/site/branches/experimental-twig/src/site/pages/mailing-lists.html.twig
logging/site/branches/experimental-twig/src/site/pages/privacy-policy.html.twig
logging/site/branches/experimental-twig/src/site/pages/team-list.html.twig
logging/site/branches/experimental-twig/src/site/resources/
logging/site/branches/experimental-twig/src/site/resources/css/
logging/site/branches/experimental-twig/src/site/resources/css/bootstrap.css
logging/site/branches/experimental-twig/src/site/resources/css/bootstrap.min.css
logging/site/branches/experimental-twig/src/site/resources/css/site.css
logging/site/branches/experimental-twig/src/site/resources/img/
logging/site/branches/experimental-twig/src/site/resources/img/feather.gif
(with props)
logging/site/branches/experimental-twig/src/site/resources/js/
logging/site/branches/experimental-twig/src/site/resources/js/bootstrap.js
logging/site/branches/experimental-twig/src/site/resources/js/bootstrap.min.js
logging/site/branches/experimental-twig/src/site/resources/js/jquery.js
logging/site/branches/experimental-twig/src/site/resources/js/jquery.min.js
logging/site/branches/experimental-twig/src/site/templates/
logging/site/branches/experimental-twig/src/site/templates/footer.html.twig
logging/site/branches/experimental-twig/src/site/templates/navbar.html.twig
logging/site/branches/experimental-twig/src/site/templates/page.html.twig
Removed:
logging/site/branches/experimental-twig/logging-redesign/
Modified:
logging/site/branches/experimental-twig/ (props changed)
Propchange: logging/site/branches/experimental-twig/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Mar 22 14:58:02 2012
@@ -0,0 +1,4 @@
+.settings
+.buildpath
+.project
+target
Added: logging/site/branches/experimental-twig/README.md
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/README.md?rev=1303821&view=auto
==============================================================================
--- logging/site/branches/experimental-twig/README.md (added)
+++ logging/site/branches/experimental-twig/README.md Thu Mar 22 14:58:02 2012
@@ -0,0 +1,28 @@
+Apache Logging Services Site
+============================
+This project contains the source files from which the Apache Logging Services
+web site is generated.
+
+The site is located at:
+http://logging.apache.org/
+
+Pre-requisites
+--------------
+This project uses the Twig templating engine for building it's site.
+
+To install Twig from pear run the following:
+
+ pear channel-discover pear.twig-project.org
+ pear install twig/Twig (or pear install twig/Twig-beta)
+
+For alternative methods, check out the the Twig web site at:
+http://twig.sensiolabs.org/doc/intro.html
+
+Building the site
+-----------------
+To build the site simply run:
+
+ php build.php
+
+This will process all templates from /src/site/pages and place the generated
+content to /target/site.
Added: logging/site/branches/experimental-twig/build.php
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/build.php?rev=1303821&view=auto
==============================================================================
--- logging/site/branches/experimental-twig/build.php (added)
+++ logging/site/branches/experimental-twig/build.php Thu Mar 22 14:58:02 2012
@@ -0,0 +1,103 @@
+<?php
+
+/*
+ * 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.
+ */
+
+require_once 'Twig/Autoloader.php';
+
+Twig_Autoloader::register();
+
+$base = dirname(__FILE__);
+
+define('PAGES_DIR', "src/site/pages/");
+define('RESOURCES_DIR', "src/site/resources/");
+define('TEMPLATES_DIR', "src/site/templates/");
+define('TARGET_DIR', "target/site/");
+
+define('POM_PATH', "pom.xml");
+
+$params = parsePOM();
+
+$loader = new Twig_Loader_Filesystem(array(TEMPLATES_DIR, PAGES_DIR));
+$twig = new Twig_Environment($loader);
+
+// Create target dir if needed
+if (!file_exists(TARGET_DIR)) {
+ echo "Creating target directory\n";
+ mkdir(TARGET_DIR, 0777, true);
+}
+
+// Render pages
+$files = scandir(PAGES_DIR);
+foreach($files as $file)
+{
+ if (strpos($file, '.twig') !== false)
+ {
+ $filename = str_replace('.twig', '', $file);
+ $target = TARGET_DIR . $filename;
+ echo "Rendering template: $filename\n";
+
+ $template = $twig->loadTemplate($file);
+ $page = $template->render($params);
+ file_put_contents($target, $page);
+ }
+}
+
+// Copy resources
+copyDir(RESOURCES_DIR, TARGET_DIR);
+
+echo "Done.\n";
+
+/** Extracts information from pom.xml required for rendering the site. */
+function parsePOM()
+{
+ $project = simplexml_load_file(POM_PATH);
+ return array(
+ 'project' => array(
+ 'name' => (string) $project->name,
+ 'url' => (string) $project->url,
+ 'inceptionYear' => (string) $project->inceptionYear,
+ )
+ );
+}
+
+/** Recursively copies directory contents. */
+function copyDir($source, $target)
+{
+ $source = trim($source, '/');
+ $target = trim($target, '/');
+
+ $files = scandir($source);
+ foreach($files as $file)
+ {
+ if ($file == '.' || $file == '..') continue;
+
+ if (is_dir("$source/$file"))
+ {
+ if (!is_dir("$target/$file"))
+ {
+ mkdir("$target/$file");
+ }
+ copyDir("$source/$file", "$target/$file");
+ }
+ else
+ {
+ echo "Copying resource: $target/$file\n";
+ copy("$source/$file", "$target/$file");
+ }
+ }
+}
Added: logging/site/branches/experimental-twig/pom.xml
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/pom.xml?rev=1303821&view=auto
==============================================================================
--- logging/site/branches/experimental-twig/pom.xml (added)
+++ logging/site/branches/experimental-twig/pom.xml Thu Mar 22 14:58:02 2012
@@ -0,0 +1,32 @@
+<!--
+ 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.
+-->
+<project
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.logging</groupId>
+ <artifactId>logging-site</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+
+ <name>Apache logging services</name>
+ <url>http://logging.apache.org/</url>
+ <inceptionYear>2003</inceptionYear>
+
+</project>
Added: logging/site/branches/experimental-twig/src/site/pages/charter.html.twig
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/src/site/pages/charter.html.twig?rev=1303821&view=auto
==============================================================================
--- logging/site/branches/experimental-twig/src/site/pages/charter.html.twig
(added)
+++ logging/site/branches/experimental-twig/src/site/pages/charter.html.twig
Thu Mar 22 14:58:02 2012
@@ -0,0 +1,78 @@
+{#
+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.
+#}
+
+{% extends "page.html.twig" %}
+
+{% block title %}Charter{% endblock %}
+
+{% block content %}
+<h2>Apache logging services charter</h2>
+
+<p>On <a target="_blank"
href="http://www.apache.org/foundation/records/minutes/2003/board_minutes_2003_12_17.txt">
+December 17<sup>th</sup> 2003</a>. the Apache Board voted to establish the
Apache Logging Services Project.</p>
+
+<blockquote>
+ <h3>A. Establishment of the Apache Logging Services Project</h3>
+
+ <p>WHEREAS, the Board of Directors deems it to be in the best interests
of the Foundation and consistent with the
+ Foundation's purpose to establish a Project Management Committee
charged with the creation and maintenance of
+ open-source software related to the logging of application behavior,
for distribution at no charge to the
+ public.</p>
+
+ <p>NOW, THEREFORE, BE IT RESOLVED, that a Project Management Committee
(PMC), to be known as the "Apache Logging
+ Services PMC", be and hereby is established pursuant to Bylaws of the
Foundation; and be it further</p>
+
+ <p>RESOLVED, that the Apache Logging Services PMC be and hereby is
responsible for the creation and maintenance of
+ software for managing the logging of application behavior, and for
related software components, based on software
+ licensed to the Foundation; and be it further</p>
+
+ <p>RESOLVED, that the office of "Vice President, Apache Logging
Services" be and hereby is created, the person
+ holding such office to serve at the direction of the Board of Directors
as the chair of the Apache Logging
+ Services PMC, and to have primary responsibility for management of the
projects within the scope of responsibility
+ of the Apache Logging Services PMC; and be it further</p>
+
+ <p>RESOLVED, that the persons listed immediately below be and hereby
are appointed to serve as the initial members
+ of the Apache Logging Services PMC:</p>
+
+ <ul>
+ <li>Scott Deboy </li>
+ <li>Ceki Gülcü </li>
+ <li>Jacob Kjome </li>
+ <li>Yoav Shapira</li>
+ <li>Paul Smith </li>
+ <li>Mark Womack </li>
+ </ul>
+
+ <p>NOW, THEREFORE, BE IT FURTHER RESOLVED, that Mr. Ceki Gülcü be and
hereby is appointed to the office of Vice
+ President, Apache Logging Services, to serve in accordance with and
subject to the direction of the Board of
+ Directors and the Bylaws of the Foundation until death, resignation,
retirement, removal or disqualification, or
+ until a successor is appointed; and be it further</p>
+
+ <p>RESOLVED, that the initial Apache Logging Services PMC be and hereby
is tasked with the creation of a set of
+ bylaws intended to encourage open development and increased
participation in the Apache Logging Services Project;
+ and be it further</p>
+
+ <p>RESOLVED, that the initial Logging Services PMC be and hereby is
tasked with the migration and rationalization
+ of the log4j Apache Jakarta subproject; and be it further</p>
+
+ <p>RESOLVED, that the initial Logging Services PMC be and hereby is
tasked with the migration and integration of
+ the sister projects, namely but not exclusively, Log4Perl, Log4Net,
Log4Cxx (c++), Log4CPlus, Log4PHP and
+ Log4plsql, subject to the will and approval of the respective project
owners and communities.</p>
+
+ <p>This was passed by Unanimous Vote.</p>
+</blockquote>
+{% endblock %}
\ No newline at end of file
Added: logging/site/branches/experimental-twig/src/site/pages/index.html.twig
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/src/site/pages/index.html.twig?rev=1303821&view=auto
==============================================================================
--- logging/site/branches/experimental-twig/src/site/pages/index.html.twig
(added)
+++ logging/site/branches/experimental-twig/src/site/pages/index.html.twig Thu
Mar 22 14:58:02 2012
@@ -0,0 +1,77 @@
+{#
+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.
+#}
+
+{% extends "page.html.twig" %}
+
+{% block title %}Welcome{% endblock %}
+
+{% block content %}
+<div class="hero-unit">
+ <div class="pull-right"><img class="logo" src="img/feather.gif" /></div>
+ <h1>Apache logging services</h1>
+ <p>The Apache Logging Services Project creates and maintains
open-source software related to the logging of
+ application behavior and released at no charge to the public.</p>
+</div>
+
+<div class="row">
+ <div class="span4">
+ <h2>Apache chainsaw</h2>
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula
+ porta felis euismod semper. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut
+ fermentum massa justo sit amet risus.</p>
+ <p><a target="_blank" class="btn"
href="http://logging.apache.org/chainsaw/">Project site »</a></p>
+ </div>
+ <div class="span4">
+ <h2>Apache log4cxx</h2>
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula
+ porta felis euismod semper. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut
+ fermentum massa justo sit amet risus.</p>
+ <p><a target="_blank" class="btn"
href="http://logging.apache.org/log4cxx/">Project site »</a></p>
+ </div>
+ <div class="span4">
+ <h2>Apache log4j</h2>
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula
+ porta felis euismod semper. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut
+ fermentum massa justo sit amet risus.</p>
+ <p><a target="_blank" class="btn"
href="http://logging.apache.org/log4j/1.2/">Project site »</a></p>
+ </div>
+</div>
+
+<div class="row">
+ <div class="span4">
+ <h2>Apache log4j2 <span class="label label-warning"
style="vertical-align: top;">Beta</span></h2>
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula
+ porta felis euismod semper. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut
+ fermentum massa justo sit amet risus.</p>
+ <p><a target="_blank" class="btn"
href="http://logging.apache.org/log4j/2.0/">Project site »</a></p>
+ </div>
+ <div class="span4">
+ <h2>Apache log4net</h2>
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula
+ porta felis euismod semper. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut
+ fermentum massa justo sit amet risus.</p>
+ <p><a target="_blank" class="btn"
href="http://logging.apache.org/log4net/">Project site »</a></p>
+ </div>
+ <div class="span4">
+ <h2>Apache log4php</h2>
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis
in, egestas eget quam. Vestibulum id ligula
+ porta felis euismod semper. Fusce dapibus, tellus ac cursus
commodo, tortor mauris condimentum nibh, ut
+ fermentum massa justo sit amet risus.</p>
+ <p><a target="_blank" class="btn"
href="http://logging.apache.org/log4php/">Project site »</a></p>
+ </div>
+</div>
+{% endblock %}
\ No newline at end of file
Added:
logging/site/branches/experimental-twig/src/site/pages/mailing-lists.html.twig
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/src/site/pages/mailing-lists.html.twig?rev=1303821&view=auto
==============================================================================
---
logging/site/branches/experimental-twig/src/site/pages/mailing-lists.html.twig
(added)
+++
logging/site/branches/experimental-twig/src/site/pages/mailing-lists.html.twig
Thu Mar 22 14:58:02 2012
@@ -0,0 +1,62 @@
+{#
+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.
+#}
+
+{% extends "page.html.twig" %}
+
+{% block title %}Mailing lists{% endblock %}
+
+{% block content %}
+<h2>Mailing lists</h2>
+
+<p>These are the mailing lists that have been established for the Apache
Logging Services project.</p>
+
+<p>For questions regarding individual logging projects, please find use the
mailing lists defined on the project site.</p>
+
+<table class="table table-bordered table-striped">
+ <thead>
+ <tr>
+ <th>Name</th>
+ <th>Description</th>
+ <th>Subscribe</th>
+ <th>Unsubscribe</th>
+ <th>Post</th>
+ <th>Archive</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>logging-general</td>
+ <td>General discussion</td>
+ <td><a
href="mailto:[email protected]">Subscribe</a></td>
+ <td><a
href="mailto:[email protected]">Unsubscribe</a></td>
+ <td><a
href="mailto:[email protected]">Post</a></td>
+ <td>
+ <a target="_blank"
href="http://mail-archives.apache.org/mod_mbox/logging-general/">apache.org</a><br
/>
+ <a target="_blank"
href="http://markmail.org/search/?q=list%3Aorg.apache.logging.general">markmail.org</a>
+ </td>
+ </tr>
+ <tr>
+ <td>logging-private</td>
+ <td>Private mailing list, only accesible to PMC
members</td>
+ <td>-</td>
+ <td>-</td>
+ <td><a
href="mailto:[email protected]">Post</a></td>
+ <td>-</td>
+ </tr>
+ </tbody>
+</table>
+{% endblock %}
\ No newline at end of file
Added:
logging/site/branches/experimental-twig/src/site/pages/privacy-policy.html.twig
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/src/site/pages/privacy-policy.html.twig?rev=1303821&view=auto
==============================================================================
---
logging/site/branches/experimental-twig/src/site/pages/privacy-policy.html.twig
(added)
+++
logging/site/branches/experimental-twig/src/site/pages/privacy-policy.html.twig
Thu Mar 22 14:58:02 2012
@@ -0,0 +1,48 @@
+{#
+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.
+#}
+
+{% extends "page.html.twig" %}
+
+{% block title %}Privacy policy{% endblock %}
+
+{% block content %}
+<h2>Privacy policy</h2>
+
+<p>Information about your use of this web site is collected using server
access logs and a tracking cookie.
+The collected information consists of the following:</p>
+
+<ul>
+ <li>The IP address from which you access the web site;</li>
+ <li>The type of browser and operating system you use to access our
site;</li>
+ <li>The date and time you access our site;</li>
+ <li>The pages you visit; and</li>
+ <li>The addresses of pages from where you followed a link to our
site.</li>
+</ul>
+
+<p>Part of this information is gathered using a tracking cookie set by the
+<a href="http://www.google.com/analytics" target="_blank">Google Analytics</a>
service and handled by Google as
+described in their <a href="http://www.google.com/privacy.html"
target="_blank">privacy policy</a>.
+See your browser documentation for instructions on how to disable the cookie
if you prefer not to share this data
+with Google.</p>
+
+<p>We use the gathered information to help us make our site more useful to
visitors and to better understand how
+and when our site is used. We do not track or collect personally identifiable
information or associate gathered
+data with any personally identifying information from other sources.</p>
+
+<p>By using this web site, you consent to the collection of this data in the
manner and for the purpose described
+above.</p>
+{% endblock %}
\ No newline at end of file
Added:
logging/site/branches/experimental-twig/src/site/pages/team-list.html.twig
URL:
http://svn.apache.org/viewvc/logging/site/branches/experimental-twig/src/site/pages/team-list.html.twig?rev=1303821&view=auto
==============================================================================
--- logging/site/branches/experimental-twig/src/site/pages/team-list.html.twig
(added)
+++ logging/site/branches/experimental-twig/src/site/pages/team-list.html.twig
Thu Mar 22 14:58:02 2012
@@ -0,0 +1,131 @@
+{#
+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.
+#}
+
+{% extends "page.html.twig" %}
+
+{% block title %}Charter{% endblock %}
+
+{% block content %}
+<h2>Project team</h2>
+
+<p>A successful project requires many people to play many roles. Some members
write code or documentation, while
+others are valuable as testers, submitting patches and suggestions.</p>
+
+<p>The team is comprised of Members and Contributors. Members have direct
access to the source of a project and
+actively evolve the code-base. Contributors improve the project through
submission of patches and suggestions to the
+Members. The number of Contributors to the project is unbounded. Get involved
today. All contributions to the project
+are greatly appreciated.</p>
+
+<h3>Team members</h3>
+
+<table class="table table-bordered table-striped">
+ <thead>
+ <tr>
+ <th>Name</th>
+ <th>Email</th>
+ <th>Role</th>
+ <th>Projects</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_A.html#carnold">Curt Arnold</a></td>
+ <td>carnold at apache.org</td>
+ <td>PMC Chair</td>
+ <td>log4j, log4cxx</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_C.html#nicko">Nicko Cadell</a></td>
+ <td>nicko at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4net</td>
+ </tr>
+ <tr>
+ <td>Alvero Carrasco</td>
+ <td>alvero at apache.org</td>
+ <td>Committer</td>
+ <td>log4php</td>
+ </tr>
+ <tr>
+ <td>Scott Deboy</td>
+ <td>sdeboy at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4j, chainsaw</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_G.html#rgoers">Ralph Goers</a></td>
+ <td>rgoers at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4j2</td>
+ </tr>
+ <tr>
+ <td>Ron Grabowski</td>
+ <td>rgrabowski at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4net</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_G.html#grobmeier">Christian
Grobmeier</a></td>
+ <td>grobmeier at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4php</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_G.html#ceki">Ceki Gülcü</a></td>
+ <td>ceki at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4j</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_H.html#ihabunek">Ivan Habunek</a></td>
+ <td>ihabunek at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4php</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_H.html#hammers">Christian Hammers</a></td>
+ <td>chammers at apache.org</td>
+ <td>Committer</td>
+ <td>log4php</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_K.html#hoju">Jacob Kjome</a></td>
+ <td>hoju at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4j</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_S.html#psmith">Paul Smith</a></td>
+ <td>psmith at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4j, chainsaw</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_U.html#kurdalen">Knut Urdalen</a></td>
+ <td>kurdalen at apache.org</td>
+ <td>Committer</td>
+ <td>log4php</td>
+ </tr>
+ <tr>
+ <td><a target="_blank"
href="http://people.apache.org/list_W.html#mwomack">Mark Womack</a></td>
+ <td>mwomack at apache.org</td>
+ <td>PMC Member</td>
+ <td>log4j</td>
+ </tr>
+ </tbody>
+</table>
+{% endblock %}
\ No newline at end of file