HowTo Mylyn » History » Version 26
Felix Schäfer, 2010-06-03 11:46
Spam squashing, page lock
1 | 26 | Felix Schäfer | (I got tired of scrubbing spam from this page, please "contact me":/users/3866 with the needed modifications if you spot errors) |
---|---|---|---|
2 | |||
3 | 1 | Jean-Philippe Lang | h1. HowTo connect a Mylyn repository to Redmine |
4 | |||
5 | 13 | Mischa The Evil | {{>TOC}} |
6 | |||
7 | h2. Using the generic web repository connector |
||
8 | |||
9 | 1 | Jean-Philippe Lang | "Mylyn":http://www.eclipse.org/mylyn is an Eclipse plugin for task management. |
10 | This HowTo explains how to connect to Redmine using the generic web repository connector. |
||
11 | |||
12 | 6 | Mischa The Evil | Note that the generic web repository connector is not part of the default Mylyn install. |
13 | 1 | Jean-Philippe Lang | So, you have to install it first from the _incubator_ update site (see http://download.eclipse.org/tools/mylyn/update/incubator). |
14 | |||
15 | 13 | Mischa The Evil | h3. Create a Task Repository |
16 | 1 | Jean-Philippe Lang | |
17 | # Right-click on the task repositories list and click *Add task repository* |
||
18 | 5 | Jeffrey Price | # Choose _Web Template (Advanced)_ and click *Next* |
19 | 1 | Jean-Philippe Lang | # Configure the repository: |
20 | |||
21 | 2 | Jean-Philippe Lang | <pre> |
22 | 4 | Jean-Philippe Lang | Server: http://www.redmine.org -- Replace it with the URL of your Redmine instance |
23 | 9 | Etienne Massip | Task URL: ${serverUrl}/issues/show/ |
24 | 2 | Jean-Philippe Lang | New task URL: ${serverUrl}/projects/foo/issues/new -- Replace foo with the identifier of the project used for new tasks |
25 | Query request URL: ${serverUrl}/issues |
||
26 | Query pattern: <td class="subject">.*?<a href="/issues/show/(\d+)">(.+?)</a></td> |
||
27 | 3 | Jean-Philippe Lang | Login request URL: ${serverUrl}/login?username=${userId}&password=${password} [POST] |
28 | 2 | Jean-Philippe Lang | </pre> |
29 | 1 | Jean-Philippe Lang | |
30 | 2 | Jean-Philippe Lang | Example: |
31 | 1 | Jean-Philippe Lang | |
32 | 2 | Jean-Philippe Lang | p=. !mylyn-repository-properties.png! |
33 | 1 | Jean-Philippe Lang | |
34 | 26 | Felix Schäfer | You can replace the _Query request URL_ parameter with the following if you want to get only the issues that are assigned to you: |
35 | 2 | Jean-Philippe Lang | |
36 | ${serverUrl}/issues?set_filter=1&assigned_to_id=me |
||
37 | |||
38 | 15 | Alistair MacDonald | The following Query pattern value reads Status, Owner and Tracker fields too (Mylyn 3.2.1) : |
39 | 10 | Etienne Massip | <pre> |
40 | 15 | Alistair MacDonald | <td class="tracker">({Type}.+?)</td><td class="status">({Status}.+?)</td>.+?<td class="subject"><a href=".*?/issues/show/({Id}\d+)">({Description}.+?)</a></td><td class="assigned_to"><a href.+?>({Owner}.+?)</a></td> |
41 | 10 | Etienne Massip | </pre> |
42 | |||
43 | 1 | Jean-Philippe Lang | Status is read as "uncomplete" or "complete" in Eclipse. |
44 | 10 | Etienne Massip | |
45 | 13 | Mischa The Evil | h3. Create a Query |
46 | 1 | Jean-Philippe Lang | |
47 | * On the task list, right-click and choose *New* -> *Query...* |
||
48 | 2 | Jean-Philippe Lang | * And select your newly created repository |
49 | 7 | steeven lee | |
50 | 1 | Jean-Philippe Lang | p=. !mylyn-task-list.png! |
51 | 7 | steeven lee | |
52 | 13 | Mischa The Evil | h2. Using specialized Redmine-Mylyn connector |
53 | 7 | steeven lee | |
54 | 13 | Mischa The Evil | "Redmine-Mylyn Connector":http://redmin-mylyncon.wiki.sourceforge.net/Installation is another solution providing better integration with Mylyn. |