From e1c6927fd8166029126b485a5e3bbd9ffa427a96 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 15 Sep 2011 11:44:31 -0700 Subject: [PATCH 1/3] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e2282ec429..6d59d91b29 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ github-api - 1.13 + 1.14-SNAPSHOT GitHub API for Java http://github-api.kohsuke.org/ GitHub API for Java From 834a6eb86549d92f65a72d1dd9aacb1bd0648582 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Wed, 26 Oct 2011 17:38:51 -0700 Subject: [PATCH 2/3] GitHub has changed the element ID --- src/main/java/org/kohsuke/github/GHRepository.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/kohsuke/github/GHRepository.java b/src/main/java/org/kohsuke/github/GHRepository.java index 3120ee1ebc..db1d37e18d 100644 --- a/src/main/java/org/kohsuke/github/GHRepository.java +++ b/src/main/java/org/kohsuke/github/GHRepository.java @@ -190,9 +190,9 @@ private void modifyCollaborators(Collection users, String op) throws IOE public void setEmailServiceHook(String address) throws IOException { WebClient wc = root.createWebClient(); HtmlPage pg = (HtmlPage)wc.getPage(getUrl()+"/admin"); - HtmlInput email = (HtmlInput)pg.getElementById("Email_address"); + HtmlInput email = (HtmlInput)pg.getElementById("email_address"); email.setValueAttribute(address); - HtmlCheckBoxInput active = (HtmlCheckBoxInput)pg.getElementById("Email[active]"); + HtmlCheckBoxInput active = (HtmlCheckBoxInput)pg.getElementById("email[active]"); active.setChecked(true); final HtmlForm f = email.getEnclosingFormOrDie(); From a39569798054b898a15a109538e0e1576a712dc6 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Wed, 26 Oct 2011 17:39:10 -0700 Subject: [PATCH 3/3] [maven-release-plugin] prepare release github-api-1.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6d59d91b29..82b584aec5 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ github-api - 1.14-SNAPSHOT + 1.14 GitHub API for Java http://github-api.kohsuke.org/ GitHub API for Java