プロジェクト

全般

プロフィール

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

Tomohisa Kusukawa, 2012/05/05 05:31

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