プロジェクト

全般

プロフィール

Wiki Lists en » 履歴 » バージョン 2

Tomohisa Kusukawa, 2013/05/19 22:26

1 2 Tomohisa Kusukawa
h1. Redmine Plugin: Wiki Lists 
2 1 Tomohisa Kusukawa
3
{{>toc}}
4
5
日本語は [[Wiki Lists|こちら]].
6
7
This plugin adds wiki macros : ref_issues, etc.
8
9
h2. Downloads
10
11
"bitbucket":https://bitbucket.org/kusu/redmine_wiki_lists/downloads
12
13 2 Tomohisa Kusukawa
h2. Installation
14 1 Tomohisa Kusukawa
15
# Copy the plugin into the vendor/plugins directory
16
17 2 Tomohisa Kusukawa
h2. "Changesets":/projects/wiki_lists/roadmap?completed=1
18
19
h1. Usage
20
21 1 Tomohisa Kusukawa
h2. List issues
22
23
{{new(2011-01-19)}}
24
25
ref_issues macro displays list of issues.
26
You can use custom query or keyword for selecting issues.
27
28
29 2 Tomohisa Kusukawa
h3. Syntax
30 1 Tomohisa Kusukawa
31
{{@ref_issues([options]..., [column]...)@}}
32
33
*options:* 
34
35
* -i=[CustomQuery ID]: ID of custom query.
36
* -q=[CustomQuery name]: Name of custom query.
37
* -s=[WORDs] : select issues that contain WORDs in subject. 
38
* -d=[WORDs] : select issues that contain WORDs in description. 
39
* -w=[WORDs] : select issues that contain WORDs in subject or description.
40
* -p[=identifire] : Only the issues in the project is displayed. 
41
42
You can specify two or more select option, it affect AND condition.
43
WORDs is one or more search words divided by '|', and multiple words affect OR condition.
44
If you specify no select condition, page name of wiki or number of issue is used for search word.
45
46
*columns:* 
47
You can choose columns that you want to display.
48
If you do not specify the columns, same columns with customquery are displayed.
49
50
* project
51
* tracker
52
* parent
53
* status
54
* priority
55
* subject
56
* author
57
* assigned_to
58
* updated_on
59
* category
60
* fixed_version
61
* start_date
62
* due_date
63
* estimated_hours
64
* done_ratio
65
* created
66
67
h3. example
68
69
{{@ref_issues(-s=ref_issues,subject,fixed_version,done_ratio,status)@}}
70
{{ref_issues(-s=ref_issues,subject,fixed_version,done_ratio,status)}}
71
72
73
{{@ref_issues(-p=wikiext,-w=wiki extension|jenkins)@}}
74
{{ref_issues(-p=wikiext,-w=wiki extension|jenkins)}}