svn commit: r843107 - /websites/production/db/content/derby/

2012-12-19 Thread rhillegas
Author: rhillegas
Date: Wed Dec 19 17:47:08 2012
New Revision: 843107

Log:
DERBY-6007: Add derby subdirectory to db directory of svnpubsub content tree.

Added:
websites/production/db/content/derby/



svn commit: r843115 [44/44] - in /websites/production/db/content/derby: ./ binaries/ blogs/ blogs/images/ dev/ docs/ images/ integrate/ integrate/plugin_help/ integrate/plugin_help/images/ logo/ manua

2012-12-19 Thread rhillegas
Added: websites/production/db/content/derby/skin/prototype.js
==
--- websites/production/db/content/derby/skin/prototype.js (added)
+++ websites/production/db/content/derby/skin/prototype.js Wed Dec 19 18:20:21 
2012
@@ -0,0 +1,1257 @@
+/*  Prototype JavaScript framework, version 1.4.0_pre4
+ *  (c) 2005 Sam Stephenson s...@conio.net
+ *
+ *  THIS FILE IS AUTOMATICALLY GENERATED. When sending patches, please diff
+ *  against the source tree, available from the Prototype darcs repository. 
+ *
+ *  Prototype is freely distributable under the terms of an MIT-style license.
+ *
+ *  For details, see the Prototype web site: http://prototype.conio.net/
+ *
+/*--*/
+
+var Prototype = {
+  Version: '1.4.0_pre4',
+  
+  emptyFunction: function() {},
+  K: function(x) {return x}
+}
+
+var Class = {
+  create: function() {
+return function() { 
+  this.initialize.apply(this, arguments);
+}
+  }
+}
+
+var Abstract = new Object();
+
+Object.extend = function(destination, source) {
+  for (property in source) {
+destination[property] = source[property];
+  }
+  return destination;
+}
+
+Function.prototype.bind = function(object) {
+  var __method = this;
+  return function() {
+return __method.apply(object, arguments);
+  }
+}
+
+Function.prototype.bindAsEventListener = function(object) {
+  var __method = this;
+  return function(event) {
+return __method.call(object, event || window.event);
+  }
+}
+
+Number.prototype.toColorPart = function() {
+  var digits = this.toString(16);
+  if (this  16) return '0' + digits;
+  return digits;
+}
+
+var Try = {
+  these: function() {
+var returnValue;
+
+for (var i = 0; i  arguments.length; i++) {
+  var lambda = arguments[i];
+  try {
+returnValue = lambda();
+break;
+  } catch (e) {}
+}
+
+return returnValue;
+  }
+}
+
+/*--*/
+
+var PeriodicalExecuter = Class.create();
+PeriodicalExecuter.prototype = {
+  initialize: function(callback, frequency) {
+this.callback = callback;
+this.frequency = frequency;
+this.currentlyExecuting = false;
+
+this.registerCallback();
+  },
+
+  registerCallback: function() {
+setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
+  },
+
+  onTimerEvent: function() {
+if (!this.currentlyExecuting) {
+  try { 
+this.currentlyExecuting = true;
+this.callback(); 
+  } finally { 
+this.currentlyExecuting = false;
+  }
+}
+  }
+}
+
+/*--*/
+
+function $() {
+  var elements = new Array();
+
+  for (var i = 0; i  arguments.length; i++) {
+var element = arguments[i];
+if (typeof element == 'string')
+  element = document.getElementById(element);
+
+if (arguments.length == 1) 
+  return element;
+
+elements.push(element);
+  }
+
+  return elements;
+}
+
+if (!Array.prototype.push) {
+  Array.prototype.push = function() {
+   var startLength = this.length;
+   for (var i = 0; i  arguments.length; i++)
+  this[startLength + i] = arguments[i];
+ return this.length;
+  }
+}
+
+if (!Function.prototype.apply) {
+  // Based on code from http://www.youngpup.net/
+  Function.prototype.apply = function(object, parameters) {
+var parameterStrings = new Array();
+if (!object) object = window;
+if (!parameters) parameters = new Array();
+
+for (var i = 0; i  parameters.length; i++)
+  parameterStrings[i] = 'parameters[' + i + ']';
+
+object.__apply__ = this;
+var result = eval('object.__apply__(' + 
+  parameterStrings.join(', ') + ')');
+object.__apply__ = null;
+
+return result;
+  }
+}
+
+Object.extend(String.prototype, {
+  stripTags: function() {
+return this.replace(/\/?[^]+/gi, '');
+  },
+
+  escapeHTML: function() {
+var div = document.createElement('div');
+var text = document.createTextNode(this);
+div.appendChild(text);
+return div.innerHTML;
+  },
+
+  unescapeHTML: function() {
+var div = document.createElement('div');
+div.innerHTML = this.stripTags();
+return div.childNodes[0].nodeValue;
+  },
+  
+  parseQuery: function() {
+var str = this;
+if (str.substring(0,1) == '?') {
+  str = this.substring(1);
+}
+var result = {};
+var pairs = str.split('');
+for (var i = 0; i  pairs.length; i++) {
+  var pair = pairs[i].split('=');
+  result[pair[0]] = pair[1];
+}
+return result;
+  }
+});
+
+
+var _break= new Object();
+var _continue = new Object();
+
+var Enumerable = {
+  each: function(iterator) {
+var index = 0;
+try {
+  this._each(function(value) {
+try {
+  iterator(value, index++);
+} catch 

svn commit: r843118 - in /websites/production/db/content/derby/docs/10.0: ./ images/ manuals/ manuals/admin/ manuals/develop/ manuals/getstart/ manuals/reference/ manuals/tools/ manuals/tuning/ publis

2012-12-19 Thread rhillegas
Author: rhillegas
Date: Wed Dec 19 18:25:28 2012
New Revision: 843118

Log:
DERBY-6007: Commit published 10.0 docs to redirected website content subtree.


[This commit notification would consist of 97 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r843125 - in /websites/production/db/content/derby/docs/10.3: ./ adminguide/ devguide/ getstart/ images/ publishedapi/ publishedapi/jdbc3/ publishedapi/jdbc3/org/ publishedapi/jdbc3/org/ap

2012-12-19 Thread rhillegas
Author: rhillegas
Date: Wed Dec 19 18:36:10 2012
New Revision: 843125

Log:
DERBY-6007: Commit published 10.3 docs to redirected website content subtree.


[This commit notification would consist of 100 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r843126 - in /websites/production/db/content/derby/docs/10.4: ./ adminguide/ devguide/ getstart/ images/ publishedapi/ publishedapi/jdbc3/ publishedapi/jdbc3/org/ publishedapi/jdbc3/org/ap

2012-12-19 Thread rhillegas
Author: rhillegas
Date: Wed Dec 19 18:39:01 2012
New Revision: 843126

Log:
DERBY-6007: Commit published 10.4 docs to redirected website content subtree.


[This commit notification would consist of 107 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r843128 - in /websites/production/db/content/derby/docs/10.5: ./ adminguide/ devguide/ getstart/ images/ publishedapi/ publishedapi/jdbc3/ publishedapi/jdbc3/org/ publishedapi/jdbc3/org/ap

2012-12-19 Thread rhillegas
Author: rhillegas
Date: Wed Dec 19 18:42:05 2012
New Revision: 843128

Log:
DERBY-6007: Commit published 10.5 docs to redirected website content subtree.


[This commit notification would consist of 109 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1424189 - /db/site-cms/trunk/content/source.mdtext

2012-12-19 Thread kristwaa
Author: kristwaa
Date: Wed Dec 19 22:41:32 2012
New Revision: 1424189

URL: http://svn.apache.org/viewvc?rev=1424189view=rev
Log:
Change title/header of page to better differentiate the two pages about source 
repositories.

Modified:
db/site-cms/trunk/content/source.mdtext

Modified: db/site-cms/trunk/content/source.mdtext
URL: 
http://svn.apache.org/viewvc/db/site-cms/trunk/content/source.mdtext?rev=1424189r1=1424188r2=1424189view=diff
==
--- db/site-cms/trunk/content/source.mdtext (original)
+++ db/site-cms/trunk/content/source.mdtext Wed Dec 19 22:41:32 2012
@@ -1,7 +1,7 @@
-Title: Source Repositories
+Title: Organization of Source Repositories
 
-Source Repositories
-===
+Organization of Source Repositories
+===
 
 The Project's codebase is maintained in shared information repositories using
 Subversion. Only Committers have write access to these repositories. Everyone




svn commit: r843163 - in /websites/staging/db/trunk/content: ./ sitemap.html source.html

2012-12-19 Thread buildbot
Author: buildbot
Date: Wed Dec 19 22:41:38 2012
New Revision: 843163

Log:
Staging update by buildbot for db

Modified:
websites/staging/db/trunk/content/   (props changed)
websites/staging/db/trunk/content/sitemap.html
websites/staging/db/trunk/content/source.html

Propchange: websites/staging/db/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 19 22:41:38 2012
@@ -1 +1 @@
-1424182
+1424189

Modified: websites/staging/db/trunk/content/sitemap.html
==
--- websites/staging/db/trunk/content/sitemap.html (original)
+++ websites/staging/db/trunk/content/sitemap.html Wed Dec 19 22:41:38 2012
@@ -109,7 +109,7 @@
 lia href=/management.htmlPMC Bylaws/a/li
 lia href=/newproject.htmlSubproject Proposals/a/li
 lia href=/roles.htmlRoles and Responsibilities/a/li
-lia href=/source.htmlSource Repositories/a/li
+lia href=/source.htmlOrganization of Source Repositories/a/li
 lia href=/whoweare.htmlWho We Are/a/li
 /ul
   /div

Modified: websites/staging/db/trunk/content/source.html
==
--- websites/staging/db/trunk/content/source.html (original)
+++ websites/staging/db/trunk/content/source.html Wed Dec 19 22:41:38 2012
@@ -21,7 +21,7 @@
 
 link href=css/site.css rel=stylesheet type=text/css
 
-titleApache DB Project - Source Repositories/title
+titleApache DB Project - Organization of Source Repositories/title
 
 meta http-equiv=Content-Type content=text/html; charset=UTF-8
 /head
@@ -99,7 +99,7 @@
 /td
 td style=overflow: hidden; valign=top
   div class=wiki-content
-h1 id=source-repositoriesSource Repositories/h1
+h1 id=organization-of-source-repositoriesOrganization of Source 
Repositories/h1
 pThe Project's codebase is maintained in shared information repositories 
using
 Subversion. Only Committers have write access to these repositories. Everyone
 has anonymous read access./p




svn commit: r1424190 - /db/site-cms/trunk/content/guidelines.mdtext

2012-12-19 Thread kristwaa
Author: kristwaa
Date: Wed Dec 19 22:43:07 2012
New Revision: 1424190

URL: http://svn.apache.org/viewvc?rev=1424190view=rev
Log:
Updated link name to agree with page title/header.

Modified:
db/site-cms/trunk/content/guidelines.mdtext

Modified: db/site-cms/trunk/content/guidelines.mdtext
URL: 
http://svn.apache.org/viewvc/db/site-cms/trunk/content/guidelines.mdtext?rev=1424190r1=1424189r2=1424190view=diff
==
--- db/site-cms/trunk/content/guidelines.mdtext (original)
+++ db/site-cms/trunk/content/guidelines.mdtext Wed Dec 19 22:43:07 2012
@@ -20,7 +20,7 @@ changes to the codebase of the Project.
 
  Defines how action items are proposed and voted on.
 
-   * [Source Repositories](source.html)
+   * [Organization of Source Repositories](source.html)
 
  Defines how the Project's source code is organized and developed.
 




svn commit: r843164 - in /websites/staging/db/trunk/content: ./ guidelines.html

2012-12-19 Thread buildbot
Author: buildbot
Date: Wed Dec 19 22:43:11 2012
New Revision: 843164

Log:
Staging update by buildbot for db

Modified:
websites/staging/db/trunk/content/   (props changed)
websites/staging/db/trunk/content/guidelines.html

Propchange: websites/staging/db/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 19 22:43:11 2012
@@ -1 +1 @@
-1424189
+1424190

Modified: websites/staging/db/trunk/content/guidelines.html
==
--- websites/staging/db/trunk/content/guidelines.html (original)
+++ websites/staging/db/trunk/content/guidelines.html Wed Dec 19 22:43:11 2012
@@ -118,7 +118,7 @@ changes to the codebase of the Project.
 pDefines how action items are proposed and voted on./p
 /li
 li
-pa href=source.htmlSource Repositories/a/p
+pa href=source.htmlOrganization of Source Repositories/a/p
 pDefines how the Project's source code is organized and developed./p
 /li
 li




svn commit: r843166 - in /websites/staging/db/trunk/content: ./ communication.html contact.html decisions.html guidelines.html index.html mail.html management.html newproject.html roles.html sitemap.h

2012-12-19 Thread buildbot
Author: buildbot
Date: Wed Dec 19 22:57:41 2012
New Revision: 843166

Log:
Staging update by buildbot for db

Modified:
websites/staging/db/trunk/content/   (props changed)
websites/staging/db/trunk/content/communication.html
websites/staging/db/trunk/content/contact.html
websites/staging/db/trunk/content/decisions.html
websites/staging/db/trunk/content/guidelines.html
websites/staging/db/trunk/content/index.html
websites/staging/db/trunk/content/mail.html
websites/staging/db/trunk/content/management.html
websites/staging/db/trunk/content/newproject.html
websites/staging/db/trunk/content/roles.html
websites/staging/db/trunk/content/sitemap.html
websites/staging/db/trunk/content/source-repos.html
websites/staging/db/trunk/content/source.html
websites/staging/db/trunk/content/whoweare.html

Propchange: websites/staging/db/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 19 22:57:41 2012
@@ -1 +1 @@
-1424196
+1424201

Modified: websites/staging/db/trunk/content/communication.html
==
--- websites/staging/db/trunk/content/communication.html (original)
+++ websites/staging/db/trunk/content/communication.html Wed Dec 19 22:57:41 
2012
@@ -60,9 +60,10 @@
 ul
 lia href=index.htmlAbout / News/a/li
 lia href=http://www.apache.org/licenses/;License/a/li
-lia href=mail.htmlMaling Lists/a/li
+lia href=mail.htmlMailing Lists/a/li
 lia href=whoweare.htmlWho We Are/a/li
 lia href=source-repos.htmlSource Repositories/a/li
+lia href=sitemap.htmlSitemap/a/li
 /ul
 h3 id=subprojectsSubprojects/h3
 ul

Modified: websites/staging/db/trunk/content/contact.html
==
--- websites/staging/db/trunk/content/contact.html (original)
+++ websites/staging/db/trunk/content/contact.html Wed Dec 19 22:57:41 2012
@@ -60,9 +60,10 @@
 ul
 lia href=index.htmlAbout / News/a/li
 lia href=http://www.apache.org/licenses/;License/a/li
-lia href=mail.htmlMaling Lists/a/li
+lia href=mail.htmlMailing Lists/a/li
 lia href=whoweare.htmlWho We Are/a/li
 lia href=source-repos.htmlSource Repositories/a/li
+lia href=sitemap.htmlSitemap/a/li
 /ul
 h3 id=subprojectsSubprojects/h3
 ul

Modified: websites/staging/db/trunk/content/decisions.html
==
--- websites/staging/db/trunk/content/decisions.html (original)
+++ websites/staging/db/trunk/content/decisions.html Wed Dec 19 22:57:41 2012
@@ -60,9 +60,10 @@
 ul
 lia href=index.htmlAbout / News/a/li
 lia href=http://www.apache.org/licenses/;License/a/li
-lia href=mail.htmlMaling Lists/a/li
+lia href=mail.htmlMailing Lists/a/li
 lia href=whoweare.htmlWho We Are/a/li
 lia href=source-repos.htmlSource Repositories/a/li
+lia href=sitemap.htmlSitemap/a/li
 /ul
 h3 id=subprojectsSubprojects/h3
 ul

Modified: websites/staging/db/trunk/content/guidelines.html
==
--- websites/staging/db/trunk/content/guidelines.html (original)
+++ websites/staging/db/trunk/content/guidelines.html Wed Dec 19 22:57:41 2012
@@ -60,9 +60,10 @@
 ul
 lia href=index.htmlAbout / News/a/li
 lia href=http://www.apache.org/licenses/;License/a/li
-lia href=mail.htmlMaling Lists/a/li
+lia href=mail.htmlMailing Lists/a/li
 lia href=whoweare.htmlWho We Are/a/li
 lia href=source-repos.htmlSource Repositories/a/li
+lia href=sitemap.htmlSitemap/a/li
 /ul
 h3 id=subprojectsSubprojects/h3
 ul

Modified: websites/staging/db/trunk/content/index.html
==
--- websites/staging/db/trunk/content/index.html (original)
+++ websites/staging/db/trunk/content/index.html Wed Dec 19 22:57:41 2012
@@ -60,9 +60,10 @@
 ul
 lia href=index.htmlAbout / News/a/li
 lia href=http://www.apache.org/licenses/;License/a/li
-lia href=mail.htmlMaling Lists/a/li
+lia href=mail.htmlMailing Lists/a/li
 lia href=whoweare.htmlWho We Are/a/li
 lia href=source-repos.htmlSource Repositories/a/li
+lia href=sitemap.htmlSitemap/a/li
 /ul
 h3 id=subprojectsSubprojects/h3
 ul

Modified: websites/staging/db/trunk/content/mail.html
==
--- websites/staging/db/trunk/content/mail.html (original)
+++ websites/staging/db/trunk/content/mail.html Wed Dec 19 22:57:41 2012
@@ -60,9 +60,10 @@
 ul
 lia href=index.htmlAbout / News/a/li
 lia href=http://www.apache.org/licenses/;License/a/li
-lia href=mail.htmlMaling Lists/a/li
+lia href=mail.htmlMailing Lists/a/li
 lia href=whoweare.htmlWho We Are/a/li
 lia href=source-repos.htmlSource Repositories/a/li
+lia href=sitemap.htmlSitemap/a/li
 /ul
 h3 id=subprojectsSubprojects/h3
 ul

Modified: websites/staging/db/trunk/content/management.html

svn commit: r843167 - in /websites/staging/db/trunk/content: ./ css/site.css

2012-12-19 Thread buildbot
Author: buildbot
Date: Wed Dec 19 23:08:48 2012
New Revision: 843167

Log:
Staging update by buildbot for db

Modified:
websites/staging/db/trunk/content/   (props changed)
websites/staging/db/trunk/content/css/site.css

Propchange: websites/staging/db/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 19 23:08:48 2012
@@ -1 +1 @@
-1424201
+1424210

Modified: websites/staging/db/trunk/content/css/site.css
==
--- websites/staging/db/trunk/content/css/site.css (original)
+++ websites/staging/db/trunk/content/css/site.css Wed Dec 19 23:08:48 2012
@@ -55,6 +55,7 @@ div.navigation li {
 padding: 4px 4px;
 }
 
+/* Manual alternating color for table rows. */
 table.altBgColor tr.b {
 background-color: #EE;
 }
@@ -63,6 +64,15 @@ table.altBgColor tr.a {
 background-color: #DD;
 }
 
+/* Automatic alternating color for table rows (set table class to 
'alternate'). */
+table.alternate tr:nth-child(odd) {
+background-color: #EE;
+}
+ 
+table.alternate tr:nth-child(even) {
+background-color: #DD;
+}
+
 a {
   text-decoration: none;
 }




svn commit: r1424214 - /db/site-cms/trunk/content/whoweare.mdtext

2012-12-19 Thread kristwaa
Author: kristwaa
Date: Wed Dec 19 23:13:46 2012
New Revision: 1424214

URL: http://svn.apache.org/viewvc?rev=1424214view=rev
Log:
Testing alternating row colors in tables.

Modified:
db/site-cms/trunk/content/whoweare.mdtext

Modified: db/site-cms/trunk/content/whoweare.mdtext
URL: 
http://svn.apache.org/viewvc/db/site-cms/trunk/content/whoweare.mdtext?rev=1424214r1=1424213r2=1424214view=diff
==
--- db/site-cms/trunk/content/whoweare.mdtext (original)
+++ db/site-cms/trunk/content/whoweare.mdtext Wed Dec 19 23:13:46 2012
@@ -33,7 +33,7 @@ others can also learn from common mistak
 
 ## Project Management Committee (PMC) ##
 
-table
+table class=alternate
 tr
   thName/th
   thId/th
@@ -244,6 +244,38 @@ others can also learn from common mistak
 
 ## Committers ##
 
+table class=alternate
+tr
+  thName/th
+  thId/th
+  thEmail/th
+  thOrganization/th
+  thRoles/th
+/tr
+tr
+  tdArmy/td
+  tdabrown/td
+  tdabr...@apache.org/td
+  tdIBM/td
+  tdDerby/td
+/tr
+tr
+  tdArmin Waibel/td
+  tdarminw/td
+  tdarm...@apache.org/td
+  tdnbsp;/td
+  tdnbsp;/td
+/tr
+
+tr
+  td/td
+  td/td
+  td/td
+  tdnbsp;/td
+  tdnbsp;/td
+/tr
+/table
+
 **INCOMPLETE**
 
   [1]: mail.html
\ No newline at end of file




svn commit: r843169 - in /websites/staging/db/trunk/content: ./ whoweare.html

2012-12-19 Thread buildbot
Author: buildbot
Date: Wed Dec 19 23:13:50 2012
New Revision: 843169

Log:
Staging update by buildbot for db

Modified:
websites/staging/db/trunk/content/   (props changed)
websites/staging/db/trunk/content/whoweare.html

Propchange: websites/staging/db/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Wed Dec 19 23:13:50 2012
@@ -1 +1 @@
-1424210
+1424214

Modified: websites/staging/db/trunk/content/whoweare.html
==
--- websites/staging/db/trunk/content/whoweare.html (original)
+++ websites/staging/db/trunk/content/whoweare.html Wed Dec 19 23:13:50 2012
@@ -112,7 +112,7 @@ contain hundreds of individuals who will
 of using mailing lists over private communication is that it is a shared 
resource where
 others can also learn from common mistakes and as a community we all grow 
together./p
 h2 id=project-management-committee-pmcProject Management Committee 
(PMC)/h2
-table
+table class=alternate
 tr
   thName/th
   thId/th
@@ -321,6 +321,38 @@ others can also learn from common mistak
 
 pstrongINCOMPLETE/strong/p
 h2 id=committersCommitters/h2
+table class=alternate
+tr
+  thName/th
+  thId/th
+  thEmail/th
+  thOrganization/th
+  thRoles/th
+/tr
+tr
+  tdArmy/td
+  tdabrown/td
+  tdabr...@apache.org/td
+  tdIBM/td
+  tdDerby/td
+/tr
+tr
+  tdArmin Waibel/td
+  tdarminw/td
+  tdarm...@apache.org/td
+  tdnbsp;/td
+  tdnbsp;/td
+/tr
+
+tr
+  td/td
+  td/td
+  td/td
+  tdnbsp;/td
+  tdnbsp;/td
+/tr
+/table
+
 pstrongINCOMPLETE/strong/p
   /div
 /td




svn commit: r1424220 - /db/site-cms/trunk/content/whoweare.mdtext

2012-12-19 Thread kristwaa
Author: kristwaa
Date: Wed Dec 19 23:28:11 2012
New Revision: 1424220

URL: http://svn.apache.org/viewvc?rev=1424220view=rev
Log:
Completed PMC member table, added two committer entries :)

Modified:
db/site-cms/trunk/content/whoweare.mdtext

Modified: db/site-cms/trunk/content/whoweare.mdtext
URL: 
http://svn.apache.org/viewvc/db/site-cms/trunk/content/whoweare.mdtext?rev=1424220r1=1424219r2=1424220view=diff
==
--- db/site-cms/trunk/content/whoweare.mdtext (original)
+++ db/site-cms/trunk/content/whoweare.mdtext Wed Dec 19 23:28:11 2012
@@ -230,7 +230,106 @@ others can also learn from common mistak
   tdThe Apache Software Foundation/td
   tdPMC Member, JDO/td
 /tr
+tr
+  tdMichelle Caisse/td
+  tdmcaisse/td
+  tdmcai...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, JDO/td
+/tr
+tr
+  tdMike Matrigali/td
+  tdmikem/td
+  tdmi...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, Derby/td
+/tr
+tr
+  tdMyrna van Lunteren/td
+  tdmyrnavl/td
+  tdmyrn...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Chair, Derby/td
+/tr
+tr
+  tdØystein Grøvlen/td
+  tdoysteing/td
+  tdoyste...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member/td
+/tr
+tr
+  tdRick Hillegas/td
+  tdrhillegas/td
+  tdrhille...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, Derby/td
+/tr
+tr
+  tdRodney Waldhoff/td
+  tdrwaldhoff/td
+  tdrwaldh...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member/td
+/tr
+tr
+  tdScott Eade/td
+  tdseade/td
+  tdse...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member/td
+/tr
+tr
+  tdSuresh Thalamati/td
+  tdsuresht/td
+  tdsure...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member/td
+/tr
+tr
+  tdThomas Fox/td
+  tdtfisher/td
+  tdtfis...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, Torque/td
+/tr
+tr
+  tdThomas Mahler/td
+  tdthma/td
+  tdt...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member/td
+/tr
+tr
+  tdTiago Espinha/td
+  tdtiago/td
+  tdti...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, Derby/td
+/tr
+tr
+  tdTomohito Nakayama/td
+  tdtmnk/td
+  tdt...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, Derby/td
+/tr
+tr
+  tdThomas Dudziak/td
+  tdtomdz/td
+  tdto...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member/td
+/tr
+tr
+  tdThomas Vandahl/td
+  tdtv/td
+  tdt...@apache.org/td
+  tdThe Apache Software Foundation/td
+  tdPMC Member, Torque/td
+/tr
 
+!-- Template row
 tr
   td/td
   td/td
@@ -238,9 +337,10 @@ others can also learn from common mistak
   tdThe Apache Software Foundation/td
   tdPMC Member/td
 /tr
+--
+
 /table
 
-**INCOMPLETE**
 
 ## Committers ##
 
@@ -266,7 +366,22 @@ others can also learn from common mistak
   tdnbsp;/td
   tdnbsp;/td
 /tr
+tr
+  tdØyvind Bakksjø/td
+  tdbakksjo/td
+  tdbakk...@apache.org/td
+  tdnbsp;/td
+  tdJava Developer/td
+/tr
+tr
+  tdLeandro Rodrigo Saad Cruz/td
+  tdbaserose/td
+  tdlean...@ibnetwork.com.br/td
+  tdInter Business Tecnologia e Servicos/td
+  tdnbsp;/td
+/tr
 
+!-- Template row
 tr
   td/td
   td/td
@@ -274,6 +389,8 @@ others can also learn from common mistak
   tdnbsp;/td
   tdnbsp;/td
 /tr
+--
+
 /table
 
 **INCOMPLETE**




Unsubscribing (was: Re: svn commit: r1424196 - /db/site-cms/trunk/content/source-repos.mdtext)

2012-12-19 Thread Kristian Waagan

On 19.12.2012 23:58, Tommy Crush wrote:

How do I unsubscribe from this?


Hi Tommy,

By following the instructions at http://db.apache.org/mail.html .
You have to send an email to the specified address.


Hope this helps,
--
Kristian




On Wednesday, December 19, 2012, wrote:

Author: kristwaa
Date: Wed Dec 19 22:54:00 2012
New Revision: 1424196


  snip 

--
Tommy Crush