From cbbrowne at lists.slony.info Fri Aug 13 15:13:50 2010 From: cbbrowne at lists.slony.info (Chris Browne) Date: Fri, 13 Aug 2010 22:13:50 +0000 Subject: [Slony1-commit] slony1-www admin.html index.html index.php Message-ID: <20100813221350.3F8A929026D@main.slony.info> Update of /home/cvsd/slony1/slony1-www In directory main.slony.info:/tmp/cvs-serv26830 Modified Files: admin.html index.html index.php Log Message: Add in bug management policy document Index: admin.html =================================================================== RCS file: /home/cvsd/slony1/slony1-www/admin.html,v retrieving revision 1.9 retrieving revision 1.10 diff -C 2 -d -r1.9 -r1.10 *** admin.html 15 Jul 2010 21:09:51 -0000 1.9 --- admin.html 13 Aug 2010 22:13:47 -0000 1.10 *************** *** 68,72 **** | Mailing ! Lists Mailing ! Lists ! Bug Policy ! ! Last modified: Thu Jul 15 16:44:58 EDT 2010 --- 273,277 ---- ! Last modified: Fri Aug 13 18:09:38 EDT 2010 Index: index.html =================================================================== RCS file: /home/cvsd/slony1/slony1-www/index.html,v retrieving revision 1.8 retrieving revision 1.9 diff -C 2 -d -r1.8 -r1.9 *** index.html 15 Jul 2010 21:09:52 -0000 1.8 --- index.html 13 Aug 2010 22:13:47 -0000 1.9 *************** *** 69,74 **** | Mailing ! Lists ! --- 69,74 ---- | Mailing ! Lists | Bug Policy *************** *** 109,155 **** here.

-

Slony-I 1.2.7

- -

Now released is version 1.2.7. It has a number of fixes - and minor enhancements as listed in the Release - Notes .

- -

This has been run thru the Release - Checklist

- -

There are two tarballs available in the downloads area here

- -

Slony-I 1.1.7

- -

Now released is version 1.1.7. It has a number of fixes and minor - enhancements as listed in the Release - Notes .

- -

This has been run thru the Release - Checklist

- -

There are two tarballs available in the downloads area here

- -

Slony-I and PostgreSQL 8.1

- -

There is a known incompatibility of versions earlier - than 1.1.5 with version 8.1; you can expect to see the - following error message when compiling:

-
- slony1_funcs.c:1081: error: too many arguments to function
- `Async_Unlisten' 
- 
- -

A patch for both version 1.1 "STABLE" and CVS HEAD has - been committed to CVS; look at both CVS HEAD as well as - REL_1_1_STABLE. It is in the 1.1.5 release - candidate described above.

-

Upgrading Slony-I

--- 109,112 ---- *************** *** 216,220 **** ! Last modified: Thu Jul 15 17:00:51 EDT 2010 --- 173,177 ---- ! Last modified: Fri Aug 13 18:10:34 EDT 2010 Index: index.php =================================================================== RCS file: /home/cvsd/slony1/slony1-www/index.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C 2 -d -r1.13 -r1.14 *** index.php 15 Jul 2010 21:09:52 -0000 1.13 --- index.php 13 Aug 2010 22:13:47 -0000 1.14 *************** *** 120,123 **** --- 120,135 ---- echo layout_defaultblock($title,$link,$text); break; + case 'bug-processing': + echo layout_header(); + $fp = fopen('./content/bug-processing.txt','r'); + if ($fp){ + $title=trim(fgets($fp,256)); + $link=trim(fgets($fp,256)); + $text=""; + while (!feof($fp)) $text.=fgets($fp,256); + fclose($fp); + } + echo layout_defaultblock($title,$link,$text); + break; default: echo layout_header(); From cbbrowne at lists.slony.info Fri Aug 13 15:13:50 2010 From: cbbrowne at lists.slony.info (Chris Browne) Date: Fri, 13 Aug 2010 22:13:50 +0000 Subject: [Slony1-commit] slony1-www/content news.txt Message-ID: <20100813221350.4C729290429@main.slony.info> Update of /home/cvsd/slony1/slony1-www/content In directory main.slony.info:/tmp/cvs-serv26830/content Modified Files: news.txt Log Message: Add in bug management policy document Index: news.txt =================================================================== RCS file: /home/cvsd/slony1/slony1-www/content/news.txt,v retrieving revision 1.74 retrieving revision 1.75 diff -C 2 -d -r1.74 -r1.75 *** news.txt 15 Jul 2010 21:09:52 -0000 1.74 --- news.txt 13 Aug 2010 22:13:48 -0000 1.75 *************** *** 14,17 **** --- 14,26 ---- --- + Proposed Bug Management Policy + http://main.slony.info/bug-management.html.html + 2010-08-13 + Chris Browne + +

Handling of the Bugzilla instance has been a bit sloppy; there is + a proposed document on bug management + policy + --- Git Repository Now Available http://main.slony.info/git.html From cbbrowne at lists.slony.info Fri Aug 13 15:16:25 2010 From: cbbrowne at lists.slony.info (Chris Browne) Date: Fri, 13 Aug 2010 22:16:25 +0000 Subject: [Slony1-commit] slony1-www layout.php Message-ID: <20100813221625.0E271290350@main.slony.info> Update of /home/cvsd/slony1/slony1-www In directory main.slony.info:/tmp/cvs-serv27279 Modified Files: layout.php Log Message: Add bug management stuff to layout Index: layout.php =================================================================== RCS file: /home/cvsd/slony1/slony1-www/layout.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C 2 -d -r1.15 -r1.16 *** layout.php 15 Jul 2010 21:16:53 -0000 1.15 --- layout.php 13 Aug 2010 22:16:22 -0000 1.16 *************** *** 22,25 **** --- 22,26 ---- Download Bugs + Bug Policy From cbbrowne at lists.slony.info Fri Aug 13 15:17:17 2010 From: cbbrowne at lists.slony.info (Chris Browne) Date: Fri, 13 Aug 2010 22:17:17 +0000 Subject: [Slony1-commit] slony1-www/content bug-processing.txt Message-ID: <20100813221717.23423290350@main.slony.info> Update of /home/cvsd/slony1/slony1-www/content In directory main.slony.info:/tmp/cvs-serv27368 Added Files: bug-processing.txt Log Message: Add bug policy content --- NEW FILE: bug-processing.txt --- Bug Processing #

Slony-I Bug Processing

Slony bug tracking is being managed using Bugzilla.

Here is the Slony-I Bugzilla Instance .

Bug Management Process

Bug Lifecycle Documentation uses the following image to characterize the flow of work on bugs, through various states, as they (hopefully!) get fixed.

The following interpretations are suggested.

NEW

When a bug is created, it is created with NEW state, is assigned to slony1-bugs at lists.slony.info, and an email is sent to the bug tracking list.

At this point, someone on the Slony development team should examine the bug to ascertain what, if anything, should be done with it.

It may be appropriate to:

ASSIGNED

This is the state of bugs that belong to someone. That someone should presumably be a human, and not slony1-bugs at lists.slony.info.

RESOLVED

This is the state of bugs that have been addressed, after some fashion.

There are several possible resolutions:

Note that this is not the end of the lifecycle!

If a developer has a patch for a complex issue, it is appropriate to: