Skip to content

Commit

Permalink
Merge pull request pweingardt#34 from bbodenmiller/patch-1
Browse files Browse the repository at this point in the history
fix capitalization to GitLab
  • Loading branch information
pweingardt authored Aug 6, 2017
2 parents 5b08127 + ddd4bef commit 2056c0a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Mylyn Gitlab Connector
# Mylyn GitLab Connector


The Mylyn Gitlab Connector allows you to connect Mylyn to your self hosted Gitlab instance in order to manage your issues on Gitlab with your local Eclipse instance.
The Mylyn GitLab Connector allows you to connect Mylyn to your self hosted GitLab instance in order to manage your issues on Gitlab with your local Eclipse instance.


## Features
Expand All @@ -17,15 +17,15 @@ The Mylyn Gitlab Connector allows you to connect Mylyn to your self hosted Gitla
## Missing features

* Password prompt (I just don't know how...)
* Attachments. Downloading attachments should be possible, but is not implemented yet. Uploading attachments doesn't seem to be possible with the current Gitlab API.
* Attachments. Downloading attachments should be possible, but is not implemented yet. Uploading attachments doesn't seem to be possible with the current GitLab API.
* Project member management and milestone management. I won't implement this...


## Usage

1. Install the plugin obviously (you can use the http://pweingardt.github.com/mylyn-gitlab update site)
2. Add a new Connector, using the new Gitlab Connector
1. enter the project URL (something like http(s)://my-gitlab-instance.org/myname/myproject)
2. Add a new Connector, using the new GitLab Connector
1. enter the project URL (something like `http(s)://my-gitlab-instance.org/myname/myproject`)
2. enter your usename and your password
3. **Do not forget to check the "Save Password" checkbox**. I don't know how to create a password prompt...
3. You can now create queries and issues
Expand All @@ -46,6 +46,6 @@ Say you want to search for open bugs and features (issues that are either featur

## Known issues

* If you created a new milestone or added a new project member via the web interface, you have to update the repository configuration, so that the connector reloads the project members and milestones. Right click on the gitlab repository in the Task repositories view and click on "Update Repository Configuration".
* If you created a new milestone or added a new project member via the web interface, you have to update the repository configuration, so that the connector reloads the project members and milestones. Right click on the GitLab repository in the Task repositories view and click on "Update Repository Configuration".
* Offline mode does not work.
* Maven generally. This is my first project using Maven, so it might not work on a different machine
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class Strings {

public final static String NEW_REPOSITORY = "New repository";
public final static String SETTINGS_PAGE = "Enter the HTTPS-URL to your Gitlab repository";
public final static String SETTINGS_PAGE = "Enter the HTTPS-URL to your GitLab repository";

public final static String QUERY_TITLE = "Query title: ";

Expand All @@ -28,6 +28,6 @@ public class Strings {
public final static String QUERY_MILESTONE = "Milestone: ";
public final static String QUERY_STATE = "State: ";

public final static String GITLAB_ISSUE = "Gitlab issue";
public final static String GITLAB_ISSUE = "GitLab issue";

}

0 comments on commit 2056c0a

Please sign in to comment.