This is an automated email from the ASF dual-hosted git repository. shayshim pushed a commit to branch CURATOR-528-fix-mailing-list-issues in repository https://gitbox.apache.org/repos/asf/curator.git
commit bc0a22acd80894578248b51b4843196fcca3565a Author: shayshim <[email protected]> AuthorDate: Sun Jul 14 23:49:43 2019 +0300 fix mailing-lists.html buttons to have mailto prefix; fix doap.rdf to refer correctly to mailing-lists.html --- doap.rdf | 2 +- pom.xml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doap.rdf b/doap.rdf index ecde455..6fb5c40 100644 --- a/doap.rdf +++ b/doap.rdf @@ -32,7 +32,7 @@ It includes a highlevel API framework and utilities to make using Apache ZooKeeper much easier and more reliable. It also includes recipes for common use cases and extensions such as service discovery and a Java 8 asynchronous DSL.</description> <bug-database rdf:resource="http://issues.apache.org/jira/browse/CURATOR" /> - <mailing-list rdf:resource="http://curator.apache.org/mail-lists.html" /> + <mailing-list rdf:resource="http://curator.apache.org/mailing-lists.html" /> <download-page rdf:resource="http://www.apache.org/dyn/closer.cgi/curator/" /> <programming-language>Java</programming-language> <category rdf:resource="http://projects.apache.org/category/database" /> diff --git a/pom.xml b/pom.xml index d793163..6021809 100644 --- a/pom.xml +++ b/pom.xml @@ -138,23 +138,23 @@ <mailingLists> <mailingList> <name>Users</name> - <post>[email protected]</post> - <subscribe>[email protected]</subscribe> - <unsubscribe>[email protected]</unsubscribe> + <subscribe>mailto:[email protected]</subscribe> + <unsubscribe>mailto:[email protected]</unsubscribe> + <post>mailto:[email protected]</post> <archive>http://mail-archives.apache.org/mod_mbox/curator-user/</archive> </mailingList> <mailingList> <name>Development</name> - <post>[email protected]</post> - <subscribe>[email protected]</subscribe> - <unsubscribe>[email protected]</unsubscribe> + <subscribe>mailto:[email protected]</subscribe> + <unsubscribe>mailto:[email protected]</unsubscribe> + <post>mailto:[email protected]</post> <archive>http://mail-archives.apache.org/mod_mbox/curator-dev/</archive> </mailingList> <mailingList> <name>Commits</name> - <post>[email protected]</post> - <subscribe>[email protected]</subscribe> - <unsubscribe>[email protected]</unsubscribe> + <subscribe>mailto:[email protected]</subscribe> + <unsubscribe>mailto:[email protected]</unsubscribe> + <post>mailto:[email protected]</post> <archive>http://mail-archives.apache.org/mod_mbox/curator-commits/</archive> </mailingList> </mailingLists>
