Feature request:
Please make the search parameter in the URL configurable. For example, I'm usign Zoom with CGI, and my form's code looks like this:
What I'd like to do is be able to use a value of "query" instead of "zoom_query" for the name parameter. Reason being, when the search actually gets performed, it puts the parameters on the URL (and if you change the method to post it doesn't work). I'd like to keep my URLs as short and clean as possible.
So having this:
http://www.....com/search.html?zoom_query=blah
Is less desirable than having this:
http://www.....com/search.html?query=blah
Would it be possible for you to add this ability?
Thanks for your consideration!
Please make the search parameter in the URL configurable. For example, I'm usign Zoom with CGI, and my form's code looks like this:
Code:
<form method="get" action="search.html"> <div> <input type="text" name="zoom_query" size="7" /> <input type="submit" value="Search" /> </div> </form>
So having this:
http://www.....com/search.html?zoom_query=blah
Is less desirable than having this:
http://www.....com/search.html?query=blah
Would it be possible for you to add this ability?
Thanks for your consideration!
Comment