diff --git a/docs/_includes/submenu_community.html b/docs/_includes/submenu_community.html index 108abcc11b..4aec4b92e5 100644 --- a/docs/_includes/submenu_community.html +++ b/docs/_includes/submenu_community.html @@ -2,7 +2,7 @@
diff --git a/docs/community/community.html b/docs/community/community.html index 356d76fdfd..2581fac7e4 100644 --- a/docs/community/community.html +++ b/docs/community/community.html @@ -11,7 +11,7 @@

Community

PostgreSQL is well supported by its active community. Current developments are chronicled - in the PostgreSQL Weekly News + at PostgreSQL Planet News and there are more than a dozen mailing lists available, categorized into topics like administration, announcements, jobs, performance, and SQL. @@ -19,7 +19,7 @@

Community

The PostgreSQL JDBC Driver is a subset of the PostgreSQL database active community that - strives to create a compliant Java interface for users. Please see the mailing list - link or development menu for additional information regarding the community. + strives to create a compliant Java interface for users. There is a mailing list but most of + the development and discussion occurs on the github page pgJDBC.

diff --git a/docs/community/contributors.html b/docs/community/contributors.html index 807a686599..9094473880 100644 --- a/docs/community/contributors.html +++ b/docs/community/contributors.html @@ -26,13 +26,15 @@

Maintainers

Please do not contact the maintainers directly unless you have a specific need to contact just them. Please use the - pgsql-jdbc@postgresql.org - mailing list if at all possible. + Github discussions + if at all possible.


@@ -44,7 +46,13 @@

Previous Maintainers

The original JDBC driver was written by Adrian Hall. Peter Mount and Barry Lind have maintained it in the past, but have since moved on to other things. + We would also like to recognize the work previously done by the following

+
@@ -52,75 +60,8 @@

Previous Maintainers

Developers

- People who have contributed significant code to the project since - the 7.4 release. A careful historical study has not been - commissioned, but if you've done something valuable, we'd - be happy to recognize you for it. Just let us know. + Most recent contributors can be found here

-

diff --git a/docs/community/mailinglist.html b/docs/community/mailinglist.html deleted file mode 100644 index 15db3dbf21..0000000000 --- a/docs/community/mailinglist.html +++ /dev/null @@ -1,79 +0,0 @@ ---- -layout: default -title: PostgreSQL JDBC Mailing List -resource: /media -nav: / ---- - -{% include submenu_community.html %} - -
-

Mailing Lists

-
-
-
- -
-
-
- - -

Before Mailing Anyone

-
-

- Before posting a question or problem to the mailing list, please - first look at the following resources: -

- -
-
- - -

General List - pgsql-jdbc@postgresql.org

-
-

- This mailing list is for all PostgreSQL Java/JDBC related discussions. - This is the place for bug reports, feature requests, help with - problem solving, and pretty much anything involving Java and - PostgreSQL. Messages from people who are not subscribed to the list - will be held for moderator approval in an effort to cut down on spam. - Archives and subscription information is available on the main - PostgreSQL site. -

-

- When asking for help or reporting a problem please try to include - as much information as possible. Good things to note are: -

- -
-
- - -

Commit Messages

-
-

- Currently activity on commits is best observed directly from the git - repository hosted with GitHub. - The console tool, gitk, available with a git installation is an excellent - GUI tool to observe commits. -

-
-
diff --git a/docs/development/development.html b/docs/development/development.html index 9af5a56808..654c569e11 100644 --- a/docs/development/development.html +++ b/docs/development/development.html @@ -26,12 +26,11 @@

About the Driver

The PostgreSQL JDBC driver has some unique properties that you should be aware of before starting to develop any code for it. - The current development driver supports eleven server versions and - three java environments. This doesn't mean that every feature must - work in every combination, but a reasonable behaviour must be - provided for non-supported versions. While this extra compatibility - sounds like a lot of work, the actual goal is to reduce the amount - of work by maintaining only one code base. + The current development driver supports a number of server versions. + This doesn't mean that every feature must work in every combination, + but a reasonable behaviour must be provided for non-supported versions. + While this extra compatibility sounds like a lot of work, the actual + goal is to reduce the amount of work by maintaining only one code base.


@@ -44,7 +43,7 @@

Tools

@@ -57,8 +56,8 @@

Build Process

After retrieving the source from the git repository. Move into the top level pgjdbc directory and simply - type ./gradlew build -DskipTests. This will build the appropriate driver for - your current Java version and place it into pgjdbc/build/distributions/postgresql-${version}.jar. + type ./gradlew build -DskipTests. This will build the driver + and place it into pgjdbc/build/distributions/postgresql-${version}.jar.