Opened 16 years ago
Closed 16 years ago
#4012 closed defect (invalid)
Additional Query Parameters
Reported by: | Owned by: | Joachim Hoessler | |
---|---|---|---|
Priority: | normal | Component: | EstimationToolsPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
The docs for the wiki macros say that any parameters supported by the Trac query language should be entered as a comma-separated list. However, when I do this, it has no apparent effect. For example, the two strings below produce exactly the same chart:
WorkloadChart(milestone = My Milestone Name, width = 600, height = 200)
WorkloadChart(milestone = My Milestone Name, priority = blocker, width = 600, height = 200)
Is this a problem with my usage or with the plugin?
Attachments (0)
Change History (4)
comment:1 Changed 16 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 Changed 16 years ago by
Resolution: | invalid |
---|---|
Status: | closed → reopened |
I just tried exactly the formatting you suggest, and the results are still identical. I then tried every combination of spaces I could think of, and nothing changes. (No spaces at all, spaces after commas, spaces before commas, spaces before and after commas, spaces after =, spaces before =, spaces before and after =...)
comment:4 Changed 16 years ago by
Resolution: | → invalid |
---|---|
Status: | reopened → closed |
It was the latest from trunk as of 10/9/2008, claiming to be version 0.3.
I see now that this feature was added on 10/12/2008 -- hence my frustration. I apologize for bothering you with this.
The implementation of the trac query language doesn't remove trailing white spaces, so you need to remove the spaces between the equals sign and the value in your statement. So it look like: WorkloadChart(milestone =My Milestone Name, priority =blocker, ...)