[mapguide-commits] r7276 - trunk/Tools/Maestro/Maestro.Base/UI

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Dec 17 06:18:22 PST 2012


Author: jng
Date: 2012-12-17 06:18:21 -0800 (Mon, 17 Dec 2012)
New Revision: 7276

Modified:
   trunk/Tools/Maestro/Maestro.Base/UI/ResourcePropertiesDialog.cs
Log:
#2201: Prepend "EPSG:" to SRS fields in the WFS metadata tab. This is needed to properly register as a valid SRS, otherwise the OGC template engine will use the system default.

Modified: trunk/Tools/Maestro/Maestro.Base/UI/ResourcePropertiesDialog.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Base/UI/ResourcePropertiesDialog.cs	2012-12-17 08:06:34 UTC (rev 7275)
+++ trunk/Tools/Maestro/Maestro.Base/UI/ResourcePropertiesDialog.cs	2012-12-17 14:18:21 UTC (rev 7276)
@@ -996,7 +996,7 @@
                     var cs = picker.SelectedCoordSys;
                     if (!string.IsNullOrEmpty(cs.EPSG))
                     {
-                        txtPrimarySRS.Text = cs.EPSG;
+                        txtPrimarySRS.Text = "EPSG:" + cs.EPSG; //NOXLATE
                     }
                 }
             }
@@ -1011,7 +1011,7 @@
                     var cs = picker.SelectedCoordSys;
                     if (!string.IsNullOrEmpty(cs.EPSG))
                     {
-                        txtOtherSRS.Text = cs.EPSG;
+                        txtOtherSRS.Text = "EPSG:" + cs.EPSG; //NOXLATE
                     }
                 }
             }



More information about the mapguide-commits mailing list