From svn_mapguide at osgeo.org Fri Oct 3 09:21:16 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Fri, 3 Oct 2025 09:21:16 -0700 Subject: [mapguide-commits] r10198 - in branches/4.0/MgDev: Bindings/src/IMake Common/MapGuideCommon/MapLayer Common/MapGuideCommon/Services Message-ID: <20251003162116.D4CCB192A0B@trac.osgeo.org> Author: jng Date: 2025-10-03 09:21:15 -0700 (Fri, 03 Oct 2025) New Revision: 10198 Modified: branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Layer.h branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Map.h branches/4.0/MgDev/Common/MapGuideCommon/Services/RenderingService.h branches/4.0/MgDev/Common/MapGuideCommon/Services/TileService.h Log: IMake: Fix up doc generation so that it emits MgException with code MgExceptionCodes.code_name format Also fix up invalid parameter references in various docs. Modified: branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp =================================================================== --- branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp 2025-09-28 15:44:55 UTC (rev 10197) +++ branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp 2025-10-03 16:21:15 UTC (rev 10198) @@ -702,7 +702,7 @@ output.append(".MgException"); output.append("\" /> with code "); } @@ -1216,22 +1216,12 @@ csharpDoc.append("///"); - if (eelems.size() > 1) { - csharpDoc.append("with code () "); - for (size_t j = 1; j < eelems.size(); j++) { - csharpDoc.append(" "); - csharpDoc.append(eelems[j]); - } - csharpDoc.append("\n"); - } - else { - csharpDoc.append(eelems[0]); - csharpDoc.append("\">\n"); - } + csharpDoc.append("with code () "); + csharpDoc.append("\n"); } } } Modified: branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Layer.h =================================================================== --- branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Layer.h 2025-09-28 15:44:55 UTC (rev 10197) +++ branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Layer.h 2025-10-03 16:21:15 UTC (rev 10198) @@ -583,12 +583,6 @@ /// virtual MgByteReader GenerateLegendImage(int width, int height, string format, int geomType, int themeCategory); /// \htmlinclude SyntaxBottom.html /// - /// \param resource (MgResourceIdentifier) - /// Input - /// MgResourceIdentifier object identifying the layer definition resource. - /// \param scale (double) - /// Input - /// The scale at which the symbolization is requested. /// \param width (int) /// Input /// The requested image width in pixels. @@ -722,9 +716,6 @@ /// virtual MgByteReader GenerateLegendImage(double scale, int width, int height, string format, int geomType, int themeCategory); /// \htmlinclude SyntaxBottom.html /// - /// \param resource (MgResourceIdentifier) - /// Input - /// MgResourceIdentifier object identifying the layer definition resource. /// \param scale (double) /// Input /// The scale at which the symbolization is requested. Modified: branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Map.h =================================================================== --- branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Map.h 2025-09-28 15:44:55 UTC (rev 10197) +++ branches/4.0/MgDev/Common/MapGuideCommon/MapLayer/Map.h 2025-10-03 16:21:15 UTC (rev 10198) @@ -404,7 +404,7 @@ /// \endcode /// \htmlinclude ExampleBottom.html /// - virtual void Create(MgResourceIdentifier* resource, CREFSTRING mapName, INT32 displayWidth, INT32 displayheight, double x, double y, double scale, INT32 dpi); + virtual void Create(MgResourceIdentifier* resource, CREFSTRING mapName, INT32 displayWidth, INT32 displayHeight, double x, double y, double scale, INT32 dpi); ////////////////////////////////////////////////////////////////// /// \brief Modified: branches/4.0/MgDev/Common/MapGuideCommon/Services/RenderingService.h =================================================================== --- branches/4.0/MgDev/Common/MapGuideCommon/Services/RenderingService.h 2025-09-28 15:44:55 UTC (rev 10197) +++ branches/4.0/MgDev/Common/MapGuideCommon/Services/RenderingService.h 2025-10-03 16:21:15 UTC (rev 10198) @@ -320,9 +320,6 @@ /// \param dpi /// Input /// Specifies the dpi of the tile to return. - /// \param tileImageFormat - /// Input - /// Specifies the image format of the tile to return. /// /// \return /// A byte reader containing the rendered tile image. @@ -513,6 +510,9 @@ /// \param bClip /// Input /// true if you want to clip feature geometry + /// \param selectionColor + /// Input + /// The color to use for rendered selections /// /// \return /// A byte reader containing the rendered image Modified: branches/4.0/MgDev/Common/MapGuideCommon/Services/TileService.h =================================================================== --- branches/4.0/MgDev/Common/MapGuideCommon/Services/TileService.h 2025-09-28 15:44:55 UTC (rev 10197) +++ branches/4.0/MgDev/Common/MapGuideCommon/Services/TileService.h 2025-10-03 16:21:15 UTC (rev 10198) @@ -112,9 +112,9 @@ /// Clears the entire tile cache for the given tile set. Tiles for all base /// map layer groups and finite scales will be removed. /// - /// \param map + /// \param tileSet /// Input - /// Specifies the map whose tile cache will be cleared. + /// Specifies the tile set whose tile cache will be cleared. /// /// \since 3.0 virtual void ClearCache(MgResourceIdentifier* tileSet) = 0; From svn_mapguide at osgeo.org Fri Oct 10 07:56:33 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Fri, 10 Oct 2025 07:56:33 -0700 Subject: [mapguide-commits] r10199 - branches/4.0/MgDev/Bindings/src/IMake Message-ID: <20251010145634.37D32193A81@trac.osgeo.org> Author: jng Date: 2025-10-10 07:56:32 -0700 (Fri, 10 Oct 2025) New Revision: 10199 Modified: branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp Log: IMake version bump to lump in recent changes Modified: branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp =================================================================== --- branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp 2025-10-03 16:21:15 UTC (rev 10198) +++ branches/4.0/MgDev/Bindings/src/IMake/IMake.cpp 2025-10-10 14:56:32 UTC (rev 10199) @@ -14,7 +14,7 @@ java }; -static char version[] = "1.6.3"; +static char version[] = "1.6.4"; static char EXTERNAL_API_DOCUMENTATION[] = "(NOTE: This API is not officially supported and may be subject to removal in a future release without warning. Use with caution.)"; static string module; From svn_mapguide at osgeo.org Fri Oct 10 08:36:04 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Fri, 10 Oct 2025 08:36:04 -0700 Subject: [mapguide-commits] r10200 - in branches/4.0/MgDev: . Oem/LinuxApt Oem/php Oem/php/include/Zend Oem/php/include/main Oem/php/script Message-ID: <20251010153604.793F8193F51@trac.osgeo.org> Author: jng Date: 2025-10-10 08:36:02 -0700 (Fri, 10 Oct 2025) New Revision: 10200 Added: branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.110.tar.gz branches/4.0/MgDev/Oem/LinuxApt/php-8.3.26.tar.bz2 Removed: branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.108.tar.gz branches/4.0/MgDev/Oem/LinuxApt/php-8.3.25.tar.bz2 Modified: branches/4.0/MgDev/Oem/LinuxApt/CMakeLists.txt branches/4.0/MgDev/Oem/php/PROVENANCE.TXT branches/4.0/MgDev/Oem/php/include/Zend/zend.h branches/4.0/MgDev/Oem/php/include/main/php_version.h branches/4.0/MgDev/Oem/php/script/phpize.js branches/4.0/MgDev/cmake_linuxapt.sh Log: Web Tier component updates * php 8.3.25 -> 8.3.26 * tomcat 9.0.108 -> 9.0.110 Modified: branches/4.0/MgDev/Oem/LinuxApt/CMakeLists.txt =================================================================== --- branches/4.0/MgDev/Oem/LinuxApt/CMakeLists.txt 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/LinuxApt/CMakeLists.txt 2025-10-10 15:36:02 UTC (rev 10200) @@ -20,7 +20,7 @@ file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/tomcat) # TODO: Offload tomcat version to top-level var - execute_process(COMMAND tar -zxf ${CMAKE_CURRENT_SOURCE_DIR}/apache-tomcat-9.0.108.tar.gz -C ${CMAKE_CURRENT_BINARY_DIR}/tomcat --strip-components=1) + execute_process(COMMAND tar -zxf ${CMAKE_CURRENT_SOURCE_DIR}/apache-tomcat-9.0.110.tar.gz -C ${CMAKE_CURRENT_BINARY_DIR}/tomcat --strip-components=1) configure_file(${CMAKE_MODULE_PATH}/../configs/mapguide.xml.in ${CMAKE_CURRENT_BINARY_DIR}/tomcat/conf/Catalina/localhost/mapguide.xml) # Don't overwrite startup.sh in the CMAKE_CURRENT_BINARY_DIR as the subseqent install will do the same thing Deleted: branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.108.tar.gz =================================================================== (Binary files differ) Added: branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.110.tar.gz =================================================================== (Binary files differ) Index: branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.110.tar.gz =================================================================== --- branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.110.tar.gz 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.110.tar.gz 2025-10-10 15:36:02 UTC (rev 10200) Property changes on: branches/4.0/MgDev/Oem/LinuxApt/apache-tomcat-9.0.110.tar.gz ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Deleted: branches/4.0/MgDev/Oem/LinuxApt/php-8.3.25.tar.bz2 =================================================================== (Binary files differ) Added: branches/4.0/MgDev/Oem/LinuxApt/php-8.3.26.tar.bz2 =================================================================== (Binary files differ) Index: branches/4.0/MgDev/Oem/LinuxApt/php-8.3.26.tar.bz2 =================================================================== --- branches/4.0/MgDev/Oem/LinuxApt/php-8.3.26.tar.bz2 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/LinuxApt/php-8.3.26.tar.bz2 2025-10-10 15:36:02 UTC (rev 10200) Property changes on: branches/4.0/MgDev/Oem/LinuxApt/php-8.3.26.tar.bz2 ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: branches/4.0/MgDev/Oem/php/PROVENANCE.TXT =================================================================== --- branches/4.0/MgDev/Oem/php/PROVENANCE.TXT 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/php/PROVENANCE.TXT 2025-10-10 15:36:02 UTC (rev 10200) @@ -1,6 +1,6 @@ -The contents of this directory originate from the PHP 8.3.20 development package SDK with key headers patched for ACE compatbility. +The contents of this directory originate from the PHP 8.3.26 development package SDK with key headers patched for ACE compatbility. -https://windows.php.net/downloads/releases/php-devel-pack-8.3.25-nts-Win32-vs16-x64.zip -sha256: 3af2f9661d0995d8adf4d9fb906929ca01aeaea3db2efc5e56fa618a7f98af6d +https://windows.php.net/downloads/releases/php-devel-pack-8.3.26-nts-Win32-vs16-x64.zip +sha256: 7bb55a67648ebb4253ba41934849dcbb385d056ec51a3e032634aba49a01ce3c Refer to CHANGES.TXT for details on what was patched \ No newline at end of file Modified: branches/4.0/MgDev/Oem/php/include/Zend/zend.h =================================================================== --- branches/4.0/MgDev/Oem/php/include/Zend/zend.h 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/php/include/Zend/zend.h 2025-10-10 15:36:02 UTC (rev 10200) @@ -20,7 +20,7 @@ #ifndef ZEND_H #define ZEND_H -#define ZEND_VERSION "4.3.25" +#define ZEND_VERSION "4.3.26" #define ZEND_ENGINE_3 Modified: branches/4.0/MgDev/Oem/php/include/main/php_version.h =================================================================== --- branches/4.0/MgDev/Oem/php/include/main/php_version.h 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/php/include/main/php_version.h 2025-10-10 15:36:02 UTC (rev 10200) @@ -2,7 +2,7 @@ /* edit configure.ac to change version number */ #define PHP_MAJOR_VERSION 8 #define PHP_MINOR_VERSION 3 -#define PHP_RELEASE_VERSION 25 +#define PHP_RELEASE_VERSION 26 #define PHP_EXTRA_VERSION "" -#define PHP_VERSION "8.3.25" -#define PHP_VERSION_ID 80325 +#define PHP_VERSION "8.3.26" +#define PHP_VERSION_ID 80326 Modified: branches/4.0/MgDev/Oem/php/script/phpize.js =================================================================== --- branches/4.0/MgDev/Oem/php/script/phpize.js 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/Oem/php/script/phpize.js 2025-10-10 15:36:02 UTC (rev 10200) @@ -3,9 +3,9 @@ var VC_VERSION=1929 var PHP_VERSION=8 var PHP_MINOR_VERSION=3 -var PHP_RELEASE_VERSION=25 +var PHP_RELEASE_VERSION=26 var PHP_EXTRA_VERSION="" -var PHP_VERSION_STRING="8.3.25" +var PHP_VERSION_STRING="8.3.26" /* Generated extensions list with mode (static/shared) */ PHP_BCMATH_SHARED=false; Modified: branches/4.0/MgDev/cmake_linuxapt.sh =================================================================== --- branches/4.0/MgDev/cmake_linuxapt.sh 2025-10-10 14:56:32 UTC (rev 10199) +++ branches/4.0/MgDev/cmake_linuxapt.sh 2025-10-10 15:36:02 UTC (rev 10200) @@ -130,7 +130,7 @@ echo "Created LinuxApt working dir at: $LINUXAPT_WORK_DIR" fi -PHP_VER=8.3.25 +PHP_VER=8.3.26 HTTPD_VER=2.4.65 TC_VER=1.2.50 APR_VER=1.7.6 From svn_mapguide at osgeo.org Fri Oct 10 08:38:25 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Fri, 10 Oct 2025 08:38:25 -0700 Subject: [mapguide-commits] r10201 - in trunk/Installer: . Support/Web/x64 Message-ID: <20251010153825.57861194205@trac.osgeo.org> Author: jng Date: 2025-10-10 08:38:24 -0700 (Fri, 10 Oct 2025) New Revision: 10201 Added: trunk/Installer/Support/Web/x64/php-8.3.26-nts-Win32-vs16-x64.zip Removed: trunk/Installer/Support/Web/x64/php-8.3.25-nts-Win32-vs16-x64.zip Modified: trunk/Installer/build.bat Log: Installer component updates * php 8.3.25 -> 8.3.26 * tomcat 9.0.108 -> 9.0.110 Deleted: trunk/Installer/Support/Web/x64/php-8.3.25-nts-Win32-vs16-x64.zip =================================================================== (Binary files differ) Added: trunk/Installer/Support/Web/x64/php-8.3.26-nts-Win32-vs16-x64.zip =================================================================== (Binary files differ) Index: trunk/Installer/Support/Web/x64/php-8.3.26-nts-Win32-vs16-x64.zip =================================================================== --- trunk/Installer/Support/Web/x64/php-8.3.26-nts-Win32-vs16-x64.zip 2025-10-10 15:36:02 UTC (rev 10200) +++ trunk/Installer/Support/Web/x64/php-8.3.26-nts-Win32-vs16-x64.zip 2025-10-10 15:38:24 UTC (rev 10201) Property changes on: trunk/Installer/Support/Web/x64/php-8.3.26-nts-Win32-vs16-x64.zip ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: trunk/Installer/build.bat =================================================================== --- trunk/Installer/build.bat 2025-10-10 15:36:02 UTC (rev 10200) +++ trunk/Installer/build.bat 2025-10-10 15:38:24 UTC (rev 10201) @@ -83,8 +83,8 @@ SET HTTPD_VERSION=2.4.65 SET HTTPD_BUILD=250724 SET HTTPD_VCVER=VS17 -SET PHP_VERSION=8.3.25 -SET TOMCAT_VERSION=9.0.108 +SET PHP_VERSION=8.3.26 +SET TOMCAT_VERSION=9.0.110 SET HTTPD_PACKAGE=httpd-%HTTPD_VERSION%-%HTTPD_BUILD%-%PLATFORM_WIN%-%HTTPD_VCVER%.zip SET TOMCAT_PACKAGE_NAME=apache-tomcat-%TOMCAT_VERSION% SET TOMCAT_PACKAGE=%MG_OEM%\LinuxApt\%TOMCAT_PACKAGE_NAME%.tar.gz From svn_mapguide at osgeo.org Fri Oct 10 09:20:56 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Fri, 10 Oct 2025 09:20:56 -0700 Subject: [mapguide-commits] r10202 - branches/4.0/MgDev/Doc/landing Message-ID: <20251010162056.7FABF1949E3@trac.osgeo.org> Author: jng Date: 2025-10-10 09:20:56 -0700 (Fri, 10 Oct 2025) New Revision: 10202 Modified: branches/4.0/MgDev/Doc/landing/index.md Log: Remove PHP landing link and explain what to do Modified: branches/4.0/MgDev/Doc/landing/index.md =================================================================== --- branches/4.0/MgDev/Doc/landing/index.md 2025-10-10 15:38:24 UTC (rev 10201) +++ branches/4.0/MgDev/Doc/landing/index.md 2025-10-10 16:20:56 UTC (rev 10202) @@ -9,5 +9,11 @@ ## Choose your language/platform * [.net API reference](dotnet_api/index.html) - * [PHP API reference](php_api/index.html) - * [Java API reference](java_api/index.html) \ No newline at end of file + * [Java API reference](java_api/index.html) + +# PHP API Reference + +API reference for PHP is currently not available. For now, can use the .net API reference and observe the following: + + * All PHP classes reside in the global namespace. There is no namespace to import to use the MapGuide API classes. + * Use `MgInitializeWebTier(string path)` instead of `MapGuideApi.MgInitializeWebTier(string path)` \ No newline at end of file From svn_mapguide at osgeo.org Sun Oct 12 07:13:21 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Sun, 12 Oct 2025 07:13:21 -0700 Subject: [mapguide-commits] r10203 - branches/4.0/MgDev/Bindings/src/ApiDump Message-ID: <20251012141322.3A4551940D6@trac.osgeo.org> Author: jng Date: 2025-10-12 07:13:20 -0700 (Sun, 12 Oct 2025) New Revision: 10203 Modified: branches/4.0/MgDev/Bindings/src/ApiDump/api.dotnet.txt branches/4.0/MgDev/Bindings/src/ApiDump/filelist.linux.generic.txt branches/4.0/MgDev/Bindings/src/ApiDump/filelist.web.windows.txt Log: Update snapshot listing Modified: branches/4.0/MgDev/Bindings/src/ApiDump/api.dotnet.txt =================================================================== --- branches/4.0/MgDev/Bindings/src/ApiDump/api.dotnet.txt 2025-10-10 16:20:56 UTC (rev 10202) +++ branches/4.0/MgDev/Bindings/src/ApiDump/api.dotnet.txt 2025-10-12 14:13:20 UTC (rev 10203) @@ -1,4 +1,4 @@ -??Assembly: OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null +??Assembly: OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null type OSGeo.MapGuide.MgFeaturePropertyType : System.Object @@ -526,11 +526,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPropertyCollection, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPropertyCollection, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPropertyCollection, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPropertyCollection, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPropertyCollection, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPropertyCollection, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -898,11 +898,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -1020,7 +1020,7 @@ } -Assembly: OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null +Assembly: OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null type OSGeo.MapGuide.MgCoordinateDimension : System.Object @@ -2172,11 +2172,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -2248,19 +2248,19 @@ [Method] Void ConvertCoordinateToLonLat(OSGeo.MapGuide.MgCoordinate) + [Method] OSGeo.MapGuide.MgCoordinate ConvertFromLonLat(Double, Double, Double) + [Method] OSGeo.MapGuide.MgCoordinate ConvertFromLonLat(OSGeo.MapGuide.MgCoordinate) [Method] OSGeo.MapGuide.MgCoordinate ConvertFromLonLat(Double, Double) - [Method] OSGeo.MapGuide.MgCoordinate ConvertFromLonLat(Double, Double, Double) - [Method] Double ConvertMetersToCoordinateSystemUnits(Double) - [Method] OSGeo.MapGuide.MgCoordinate ConvertToLonLat(Double, Double, Double) + [Method] OSGeo.MapGuide.MgCoordinate ConvertToLonLat(Double, Double) [Method] OSGeo.MapGuide.MgCoordinate ConvertToLonLat(OSGeo.MapGuide.MgCoordinate) - [Method] OSGeo.MapGuide.MgCoordinate ConvertToLonLat(Double, Double) + [Method] OSGeo.MapGuide.MgCoordinate ConvertToLonLat(Double, Double, Double) [Method] OSGeo.MapGuide.MgCoordinateSystem CreateClone() @@ -2302,10 +2302,10 @@ [Method] Int16 GetAge() + [Method] Double GetAzimuth(Double, Double, Double, Double) + [Method] Double GetAzimuth(OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.MgCoordinate) - [Method] Double GetAzimuth(Double, Double, Double, Double) - [Method] OSGeo.MapGuide.MgCoordinateSystemCatalog GetCatalog() [Method] OSGeo.MapGuide.MgStringCollection GetCategories() @@ -2440,10 +2440,10 @@ [Method] Double MeasureEuclideanDistance(Double, Double, Double, Double) + [Method] Double MeasureGreatCircleDistance(OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.MgCoordinate) + [Method] Double MeasureGreatCircleDistance(Double, Double, Double, Double) - [Method] Double MeasureGreatCircleDistance(OSGeo.MapGuide.MgCoordinate, OSGeo.MapGuide.MgCoordinate) - [Method] Void SetCountryOrState(System.String) [Method] Void SetCsCode(System.String) @@ -4024,11 +4024,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurvePolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurvePolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurvePolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurvePolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurvePolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurvePolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -4106,11 +4106,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurveRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurveRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurveRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurveRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurveRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurveRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -4174,11 +4174,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurveSegment, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurveSegment, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurveSegment, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurveSegment, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurveSegment, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurveSegment, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -4264,11 +4264,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurveString, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgCurveString, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurveString, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgCurveString, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurveString, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgCurveString, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -4456,11 +4456,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgGeometry, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgGeometry, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgGeometry, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgGeometry, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgGeometry, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgGeometry, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -4606,11 +4606,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLinearRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLinearRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLinearRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLinearRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLinearRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLinearRing, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -4726,11 +4726,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLineString, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLineString, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLineString, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLineString, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLineString, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLineString, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -5008,11 +5008,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPoint, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPoint, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPoint, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPoint, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPoint, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPoint, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -5096,11 +5096,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPolygon, OSGeo.MapGuide.Geometry, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -5230,7 +5230,7 @@ } -Assembly: OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null +Assembly: OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null type OSGeo.MapGuide.MgLayerGroupType : System.Object @@ -5774,11 +5774,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgClassDefinition, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgClassDefinition, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgClassDefinition, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgClassDefinition, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgClassDefinition, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgClassDefinition, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -6018,11 +6018,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgFeatureCommand, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgFeatureCommand, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgFeatureCommand, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgFeatureCommand, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgFeatureCommand, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgFeatureCommand, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -6166,11 +6166,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgFeatureSchema, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgFeatureSchema, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgFeatureSchema, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgFeatureSchema, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgFeatureSchema, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgFeatureSchema, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -6800,11 +6800,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -6916,11 +6916,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLayerGroup, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgLayerGroup, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLayerGroup, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgLayerGroup, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLayerGroup, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLayerGroup, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -7092,11 +7092,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgMapBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgMapBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgMapBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgMapBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgMapBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgMapBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -7252,11 +7252,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPropertyDefinition, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgPropertyDefinition, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPropertyDefinition, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgPropertyDefinition, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPropertyDefinition, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgPropertyDefinition, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -7518,11 +7518,11 @@ implements System.IDisposable - implements System.Collections.Generic.IReadOnlyList`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IReadOnlyList`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IReadOnlyCollection`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IReadOnlyCollection`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgLayerBase, OSGeo.MapGuide.PlatformBase, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -7834,11 +7834,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgStringProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgStringProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgStringProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgStringProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgStringProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgStringProperty, OSGeo.MapGuide.Foundation, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -7960,7 +7960,7 @@ } -Assembly: OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null +Assembly: OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null type OSGeo.MapGuide.MgImageFormats : System.Object @@ -9054,11 +9054,11 @@ implements System.IDisposable - implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgMapPlot, OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IList`1[[OSGeo.MapGuide.MgMapPlot, OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgMapPlot, OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.ICollection`1[[OSGeo.MapGuide.MgMapPlot, OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] - implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgMapPlot, OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null]] + implements System.Collections.Generic.IEnumerable`1[[OSGeo.MapGuide.MgMapPlot, OSGeo.MapGuide.MapGuideCommon, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null]] implements System.Collections.IEnumerable @@ -9680,7 +9680,7 @@ } -Assembly: OSGeo.MapGuide.Web, Version=4.0.0.10185, Culture=neutral, PublicKeyToken=null +Assembly: OSGeo.MapGuide.Web, Version=4.0.0.10202, Culture=neutral, PublicKeyToken=null type OSGeo.MapGuide.MgWebActions : System.Object Modified: branches/4.0/MgDev/Bindings/src/ApiDump/filelist.linux.generic.txt =================================================================== --- branches/4.0/MgDev/Bindings/src/ApiDump/filelist.linux.generic.txt 2025-10-10 16:20:56 UTC (rev 10202) +++ branches/4.0/MgDev/Bindings/src/ApiDump/filelist.linux.generic.txt 2025-10-12 14:13:20 UTC (rev 10203) @@ -108,6 +108,7 @@ server/Schema/PlatformCommon-1.0.0.xsd server/RepositoryAdmin/ server/RepositoryAdmin/UpgradeRepositories.sh +server/RepositoryAdmin/MapGuide.RepositoryAdmin server/RepositoryAdmin/COPYRIGHT server/RepositoryAdmin/README.txt server/RepositoryAdmin/BackUpOfflineRepositories.sh Modified: branches/4.0/MgDev/Bindings/src/ApiDump/filelist.web.windows.txt =================================================================== --- branches/4.0/MgDev/Bindings/src/ApiDump/filelist.web.windows.txt 2025-10-10 16:20:56 UTC (rev 10202) +++ branches/4.0/MgDev/Bindings/src/ApiDump/filelist.web.windows.txt 2025-10-12 14:13:20 UTC (rev 10203) @@ -1,7 +1,6 @@ ..\Web\Apache24 ..\Web\DevHttpServer ..\Web\Php -..\Web\Temp ..\Web\Tomcat ..\Web\www ..\Web\-- Win64 VS17 -- @@ -61,7 +60,6 @@ ..\Web\Apache24\conf\original ..\Web\Apache24\conf\charset.conv ..\Web\Apache24\conf\httpd.conf -..\Web\Apache24\conf\httpd.conf.instantsetupbak ..\Web\Apache24\conf\magic ..\Web\Apache24\conf\mime.types ..\Web\Apache24\conf\openssl.cnf From svn_mapguide at osgeo.org Mon Oct 27 03:17:56 2025 From: svn_mapguide at osgeo.org (svn_mapguide at osgeo.org) Date: Mon, 27 Oct 2025 03:17:56 -0700 Subject: [mapguide-commits] r10204 - branches/4.0 Message-ID: <20251027101756.3AA9A19583B@trac.osgeo.org> Author: jng Date: 2025-10-27 03:17:55 -0700 (Mon, 27 Oct 2025) New Revision: 10204 Added: branches/4.0/Installer/ Log: Installer branch for 4.0