Project

General

Profile

HowTo Mylyn » History » Version 45

Michael Nagel, 2014-02-21 17:15
Fix markup

1 1 Jean-Philippe Lang
h1. HowTo connect a Mylyn repository to Redmine
2
3 13 Mischa The Evil
{{>TOC}}
4 1 Jean-Philippe Lang
5 27 Felix Schäfer
These instructions should work with redmine 0.9 stable and up.
6
7 29 Felix Schäfer
There are 2 options to connect Mylyn to redmine: either install the connector in your redmine install (this obviously needs the ability to install a plugin on the redmine you want to use it with), or use the generic web connector, which scraps the html pages for the information it needs, and thus should work with pretty much every up-to-date enough redmine installation out there.
8
9
h2. Using specialized Redmine-Mylyn connector
10
11 44 Hans Kaiser
The Redmine Mylyn Connector is under "volatile" development. So you will find multiple pages and forks, here are some jump points.
12
http://www.redmine.org/boards/1/topics/10923
13
http://sourceforge.net/projects/redmin-mylyncon/
14
http://danmunn.github.io/redmine_mylyn_connector/
15
16
h3. The sourceforge way
17 45 Michael Nagel
18 44 Hans Kaiser
The "Redmine-Mylyn Connector":http://sourceforge.net/projects/redmin-mylyncon/ is another solution providing better integration with Mylyn (Note: for version 2 of Redmine, the updated redmine plugin can be found "here":http://danmunn.github.com/redmine_mylyn_connector and also an updated Redmine connector plugin for Eclipse (Mylyn) which solves some problems with newer versions is "here":https://github.com/ljader/redmine-mylyn-plugin).
19 29 Felix Schäfer
20 30 Felix Schäfer
p=. !redmin-mylyncon.png!
21
22 13 Mischa The Evil
h2. Using the generic web repository connector
23
24 1 Jean-Philippe Lang
"Mylyn":http://www.eclipse.org/mylyn is an Eclipse plugin for task management.
25
This HowTo explains how to connect to Redmine using the generic web repository connector.
26
27 6 Mischa The Evil
Note that the generic web repository connector is not part of the default Mylyn install.
28 39 Etienne Massip
So, you have to install it first from the "_incubator_ update site":http://download.eclipse.org/mylyn/incubator/3.8.
29 1 Jean-Philippe Lang
30 13 Mischa The Evil
h3. Create a Task Repository
31 1 Jean-Philippe Lang
32
# Right-click on the task repositories list and click *Add task repository*
33 5 Jeffrey Price
# Choose _Web Template (Advanced)_ and click *Next*
34 1 Jean-Philippe Lang
# Configure the repository:
35 2 Jean-Philippe Lang
36 1 Jean-Philippe Lang
<pre>
37
Server:                 http://www.redmine.org -- Replace it with the URL of your Redmine instance
38 27 Felix Schäfer
Task URL:               ${serverUrl}/issues/
39 1 Jean-Philippe Lang
New task URL:           ${serverUrl}/projects/foo/issues/new -- Replace foo with the identifier of the project used for new tasks
40
Query request URL:      ${serverUrl}/issues
41 27 Felix Schäfer
Query pattern:          <td class="subject">.*?<a href="/issues/(\d+)">(.+?)</a></td>
42
Login request URL:      ${serverUrl}/login?username=${userId}&password=${password}&authenticity_token=${loginToken} [POST]
43
Login Form URL:         ${serverUrl}/login
44 2 Jean-Philippe Lang
Login Token Pattern:    <input name="authenticity_token" type="hidden" value="(.+?)" />
45 1 Jean-Philippe Lang
</pre>
46
47 29 Felix Schäfer
Example:
48 2 Jean-Philippe Lang
49 28 Felix Schäfer
p=. !mylyn-repository-properties-2.png!
50 26 Felix Schäfer
51 1 Jean-Philippe Lang
You can replace the _Query request URL_ parameter with the following if you want to get only the issues that are assigned to you:
52 2 Jean-Philippe Lang
53
  ${serverUrl}/issues?set_filter=1&assigned_to_id=me
54
55 15 Alistair MacDonald
The following Query pattern value reads Status, Owner and Tracker fields too (Mylyn 3.2.1) :
56 10 Etienne Massip
<pre>
57 32 Felix Schäfer
<td class="tracker">({Type}.+?)</td><td class="status">({Status}.+?)</td>.+?<td class="subject">.*?<a href=".*?/issues/({Id}\d+)">({Description}.+?)</a></td>({Optional}<td class="assigned_to"><a href.+?>({Owner}.+?)</a></td>)?</pre>
58 10 Etienne Massip
59 1 Jean-Philippe Lang
Status is read as "uncomplete" or "complete" in Eclipse.
60 2 Jean-Philippe Lang
61 7 steeven lee
h3. Create a Query
62 1 Jean-Philippe Lang
63 7 steeven lee
* On the task list, right-click and choose *New* -> *Query...*
64 13 Mischa The Evil
* And select your newly created repository
65 7 steeven lee
66 13 Mischa The Evil
p=. !mylyn-task-list.png!