[
https://issues.apache.org/jira/browse/COUCHDB-787?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Benoit Chesneau closed COUCHDB-787.
-----------------------------------
Assignee: Benoit Chesneau
Fix Version/s: 0.12
Resolution: Fixed
> Rewrite handler not rewriting query string parameters
> -----------------------------------------------------
>
> Key: COUCHDB-787
> URL: https://issues.apache.org/jira/browse/COUCHDB-787
> Project: CouchDB
> Issue Type: Improvement
> Components: HTTP Interface
> Affects Versions: 0.11
> Environment: Mac OS 10.6.3
> Reporter: Aurélien Bénel
> Assignee: Benoit Chesneau
> Priority: Minor
> Fix For: 0.12
>
> Original Estimate: 96h
> Remaining Estimate: 96h
>
> In order to implement the following rewrite rule:
> custom/?parameter=FOO ->
> _list/aList/aView?startkey=["FOO"]&endkey=["FOO",{}]
> it would make sense to write:
> [{
> "from": "/custom/?parameter=:parameter",
> "to": "_list/aList/aView",
> "query": {
> "startkey": [":parameter"],
> "endkey": [":parameter",{}]
> }
> }]
> Note: I also tried:
> [{
> "from": "/custom",
> "to": "_list/aList/aView",
> "query": {
> "startkey": [":parameter"],
> "endkey": [":parameter",{}]
> }
> }]
> but it didn't work either (and would have offered a slightly different
> interface).
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.