﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2291	[PATCH] Teach WMSGrabber to understand formatting patterns in the WMS URL	mcdmx@…	team	"Some WMS servers are a little picky about the case of parameters, e.g.
they insist that the 'bbox' parameter must be all uppercase. To enable
a little more control over how the URL is formed, this patch allows
the user to put placeholders in the WMS-URL that will be replaced by the
corresponding parameters:

{{{
  {0}   current projection
  {1}   bbox
  {2}   image width
  {3}   image height
}}}
A URL with place-holders would look something like this:
{{{
   http://myserver/wms?service=wms&version=1.1.1&request=GetMap&layers=1&styles=&srs={0}&format=image/png&BBOX={1}&width={2}&height={3}
}}}

The code first checks if the URL contains at least the bbox-placeholder ({1}) before formatting the string accordingly. If the placeholder is not present, the old method of appending bbox- and size- parameters
is used.
"	enhancement	closed	major		Plugin	latest	fixed	WMSPlugin	
