Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2019-02-03 08:19:13 +0000
committerMichael Keppler2019-02-04 20:17:32 +0000
commit1c5a942469bb981ccb7f7975fd95b7b6f0334126 (patch)
treed0e81f280b470666a22551b6327a1654617d4f0d
parentc2281b6e5a27aedb7b66fdda03f8ae97f012a912 (diff)
downloadegit-github-1c5a942469bb981ccb7f7975fd95b7b6f0334126.tar.gz
egit-github-1c5a942469bb981ccb7f7975fd95b7b6f0334126.tar.xz
egit-github-1c5a942469bb981ccb7f7975fd95b7b6f0334126.zip
Write GitHub with capital H
In some end user visible areas it was written as "Github" before, so this changes all the occurrences, including not end user visible comments. Change-Id: Idd4b994ef63e640d9e77ea610b1b75b64520e41d Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java7
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java2
-rw-r--r--org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/TeamService.java2
-rw-r--r--org.eclipse.mylyn.github-feature/feature.properties2
-rw-r--r--org.eclipse.mylyn.github.target/MANIFEST.MF2
-rw-r--r--org.eclipse.mylyn.github.target/pom.xml2
-rw-r--r--org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/GitHubImages.java8
7 files changed, 13 insertions, 12 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java
index 10864a6d..86936065 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/Repository.java
@@ -12,13 +12,13 @@
*****************************************************************************/
package org.eclipse.egit.github.core;
+import com.google.gson.annotations.SerializedName;
+
import java.io.Serializable;
import java.util.Date;
import org.eclipse.egit.github.core.util.DateUtils;
-import com.google.gson.annotations.SerializedName;
-
/**
* Repository model class
*/
@@ -57,7 +57,7 @@ public class Repository implements IRepositoryIdProvider, Serializable {
private int stargazersCount;
- /** This is what Github shows as "watchers". */
+ /** This is what GitHub shows as "watchers". */
private int subscribersCount = -1;
private Repository parent;
@@ -562,6 +562,7 @@ public class Repository implements IRepositoryIdProvider, Serializable {
*
* @see IRepositoryIdProvider#generateId()
*/
+ @Override
public String generateId() {
final User owner = this.owner;
final String name = this.name;
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java
index f958004a..81c2a270 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/User.java
@@ -69,7 +69,7 @@ public class User implements Serializable {
private String email;
- // Github legacy field; needs to be kept for proper deserialization.
+ // GitHub legacy field; needs to be kept for proper deserialization.
@SuppressWarnings("unused")
private String gravatarId;
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/TeamService.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/TeamService.java
index 28c9d45b..e135a456 100644
--- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/TeamService.java
+++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/service/TeamService.java
@@ -280,7 +280,7 @@ public class TeamService extends GitHubService {
request.setType(TeamMembership.class);
// According to
// https://developer.github.com/v3/teams/members/#get-team-membership
- // Github returns a 404 if the user is not a member of the team, which
+ // GitHub returns a 404 if the user is not a member of the team, which
// the GitHubClient translates into an IOException. Is that correct?
return (TeamMembership) client.get(request).getBody();
}
diff --git a/org.eclipse.mylyn.github-feature/feature.properties b/org.eclipse.mylyn.github-feature/feature.properties
index d750f296..f68092a3 100644
--- a/org.eclipse.mylyn.github-feature/feature.properties
+++ b/org.eclipse.mylyn.github-feature/feature.properties
@@ -15,7 +15,7 @@ featureName=Eclipse GitHub integration with task focused interface
providerName=Eclipse EGit
# description property - text of the "Feature Descrption"
-description=Integration with Github
+description=Integration with GitHub
################ end of description property ##################################
# "copyright" property - text of the "Feature Update Copyright"
diff --git a/org.eclipse.mylyn.github.target/MANIFEST.MF b/org.eclipse.mylyn.github.target/MANIFEST.MF
index 12bc5cd5..9a1c26dc 100644
--- a/org.eclipse.mylyn.github.target/MANIFEST.MF
+++ b/org.eclipse.mylyn.github.target/MANIFEST.MF
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: EGit Mylyn Github Target Platform Bundle
+Bundle-Name: EGit Mylyn GitHub Target Platform Bundle
Bundle-SymbolicName: org.eclipse.mylyn.github.target
Bundle-Version: 5.3.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
diff --git a/org.eclipse.mylyn.github.target/pom.xml b/org.eclipse.mylyn.github.target/pom.xml
index c67e2726..d45e5afd 100644
--- a/org.eclipse.mylyn.github.target/pom.xml
+++ b/org.eclipse.mylyn.github.target/pom.xml
@@ -15,7 +15,7 @@
<artifactId>org.eclipse.mylyn.github.target</artifactId>
<packaging>pom</packaging>
- <name>EGit Github Target Platform Definition</name>
+ <name>EGit GitHub Target Platform Definition</name>
<parent>
<artifactId>github-parent</artifactId>
diff --git a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/GitHubImages.java b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/GitHubImages.java
index f4950495..42dc492f 100644
--- a/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/GitHubImages.java
+++ b/org.eclipse.mylyn.github.ui/src/org/eclipse/mylyn/internal/github/ui/GitHubImages.java
@@ -35,10 +35,10 @@ public class GitHubImages {
private static ImageRegistry manager;
- /** Key for the Github logo icon. */
+ /** Key for the GitHub logo icon. */
public static final String GITHUB_LOGO_OBJ = NAME_PREFIX + "OBJ_GITHUB_LOGO"; //$NON-NLS-1$
- /** Key for a Github issue label icon. */
+ /** Key for a GitHub issue label icon. */
public static final String GITHUB_ISSUE_LABEL_OBJ = NAME_PREFIX + "OBJ_GITHUB_ISSUE_LABEL"; //$NON-NLS-1$
/** Key for an "add" icon. */
@@ -53,10 +53,10 @@ public class GitHubImages {
/** Key for an organization icon. */
public static final String GITHUB_ORG = NAME_PREFIX + "GITHUB_ORG"; //$NON-NLS-1$
- /** {@link ImageDescriptor} for the Github logo icon. */
+ /** {@link ImageDescriptor} for the GitHub logo icon. */
public static final ImageDescriptor DESC_GITHUB_LOGO = create(PATH_OBJ, "github.png"); //$NON-NLS-1$
- /** {@link ImageDescriptor} for the Github issue label icon. */
+ /** {@link ImageDescriptor} for the GitHub issue label icon. */
public static final ImageDescriptor DESC_GITHUB_ISSUE_LABEL = create(PATH_OBJ, "issue_label.png"); //$NON-NLS-1$
/** {@link ImageDescriptor} for the "add" icon. */

Back to the top