[mapserver-commits] r11723 - branches/branch-6-0/mapserver

svn at osgeo.org svn at osgeo.org
Wed May 18 11:51:25 EDT 2011


Author: aboudreault
Date: 2011-05-18 08:51:25 -0700 (Wed, 18 May 2011)
New Revision: 11723

Modified:
   branches/branch-6-0/mapserver/MIGRATION_GUIDE.txt
Log:
merged migration guide in branch-6.0

Modified: branches/branch-6-0/mapserver/MIGRATION_GUIDE.txt
===================================================================
--- branches/branch-6-0/mapserver/MIGRATION_GUIDE.txt	2011-05-18 15:06:40 UTC (rev 11722)
+++ branches/branch-6-0/mapserver/MIGRATION_GUIDE.txt	2011-05-18 15:51:25 UTC (rev 11723)
@@ -178,6 +178,31 @@
 prefixed entries as fallback which is dropped in version 6.0 in favor of
 forcing explicit decisions.
 
+--------------------------------------------------------
+Mapfile Changes - Ability to escape single/double quotes
+--------------------------------------------------------
+
+We can now escape single and double quotes in strings and logical
+expressions. Examples:
+
+::
+
+  NAME "RO\"AD" # double quote inside a a double quote delimited string
+  NAME 'RO\'AD' # single quote inside a a single quote delimited string
+  FILTER ('[CTY_NAME]' = 'Ita\'sca') # logical expression that contains a single quote
+
+NOTE: The escape character (backslash) will only work if the
+following character is ", ' or \.
+
+For Windows users: if you have a path string delimited by single/double
+quotes that ends with \, you will have to escape the last backslash.
+
+::
+
+  SHAPEPATH "C:\ms4w\shapefiles\"
+  # should be modified to...
+  SHAPEPATH "C:\ms4w\shapefiles\\"
+
 ---------------------
 PHP MapScript Changes
 ---------------------



More information about the mapserver-commits mailing list