From 356079222a1ef772b570f888aa3db135a685cd0b Mon Sep 17 00:00:00 2001 From: Claudiu Farcas Date: Wed, 23 Mar 2011 11:58:56 +0200 Subject: [PATCH] init commit --- .hgignore | 5 + main/Libs/GpsEmulator/GpsEmulator.sln | 60 + main/Libs/GpsEmulator/GpsEmulator/App.config | 155 + main/Libs/GpsEmulator/GpsEmulator/App.xaml | 8 + main/Libs/GpsEmulator/GpsEmulator/App.xaml.cs | 34 + .../GpsEmulator/BingApis/BingMapsClient.cs | 252 + .../GpsEmulator/BingApis/TimedPosition.cs | 23 + .../BingApis/VirtualEarthWebServices.cs | 5616 ++++++++ .../DialogWindows/AboutDialog.xaml | 20 + .../DialogWindows/AboutDialog.xaml.cs | 27 + .../DialogWindows/BingApiKeyDialog.xaml | 21 + .../DialogWindows/BingApiKeyDialog.xaml.cs | 39 + .../DialogWindows/OptionsDialog.xaml | 36 + .../DialogWindows/OptionsDialog.xaml.cs | 35 + .../GpsEmulator/GpsEmulator.csproj | 224 + .../GpsService/IGpsEmulatorService.cs | 11 + .../GpsEmulator/GpsEmulator/MainWindow.xaml | 201 + .../GpsEmulator/MainWindow.xaml.cs | 784 ++ .../GpsEmulator/MapControl/IMapTileFactory.cs | 9 + .../MapControl/InMemoryCacheMapTileFactory.cs | 87 + .../GpsEmulator/MapControl/MapControl.xaml | 17 + .../GpsEmulator/MapControl/MapControl.xaml.cs | 352 + .../GpsEmulator/MapControl/MapMarker.cs | 25 + .../GpsEmulator/MapControl/MapTile.xaml | 11 + .../GpsEmulator/MapControl/MapTile.xaml.cs | 36 + .../MapControl/WebMapTileFactory.cs | 32 + .../GpsEmulator/Markers/DirectionalMarker.png | Bin 0 -> 698 bytes .../Markers/DirectionalMarker.xaml | 9 + .../Markers/DirectionalMarker.xaml.cs | 28 + .../GpsEmulator/Markers/RouteMarker.cs | 22 + .../GpsEmulator/Markers/SelectionMarker.png | Bin 0 -> 3300 bytes .../GpsEmulator/Markers/SelectionMarker.xaml | 9 + .../Markers/SelectionMarker.xaml.cs | 17 + .../GpsEmulator/Markers/WaypointMarker.png | Bin 0 -> 980 bytes .../GpsEmulator/Markers/WaypointMarker.xaml | 9 + .../Markers/WaypointMarker.xaml.cs | 64 + .../GpsEmulator/Properties/AssemblyInfo.cs | 55 + .../Properties/Resources.Designer.cs | 71 + .../GpsEmulator/Properties/Resources.resx | 117 + .../Properties/Settings.Designer.cs | 30 + .../GpsEmulator/Properties/Settings.settings | 7 + .../GpsEmulator/Resources/00433803.png | Bin 0 -> 27544 bytes .../GpsEmulator/Resources/00433903.png | Bin 0 -> 20663 bytes .../GpsEmulator/Resources/00438059.png | Bin 0 -> 84172 bytes .../GpsEmulator/Resources/AppIcon.ico | Bin 0 -> 1078 bytes .../GpsEmulator/Resources/Globe.design | Bin 0 -> 522428 bytes .../GpsEmulator/Resources/Globe.png | Bin 0 -> 26766 bytes .../GpsEmulator/Resources/GpsEmulator.ico | Bin 0 -> 99399 bytes .../GpsEmulator/Resources/GpsEmulator.png | Bin 0 -> 124404 bytes .../Resources/GpsSimulator_32x32.png | Bin 0 -> 2585 bytes .../GpsEmulator/GpsEmulator/Resources/Key.png | Bin 0 -> 115621 bytes .../GpsEmulator/Resources/MC900432631[1].png | Bin 0 -> 40917 bytes .../GpsEmulator/Resources/Settings.png | Bin 0 -> 115163 bytes .../GpsEmulator/Resources/ZoomIn.png | Bin 0 -> 766 bytes .../GpsEmulator/Resources/ZoomOut.png | Bin 0 -> 757 bytes .../Utilities/InternetConnectivityChecker.cs | 32 + .../GpsEmulator/Utilities/MapTypes.cs | 9 + .../GpsEmulator/Utilities/MapUtils.cs | 143 + .../Bin/Debug/GpsEmulatorClient.dll | Bin 0 -> 14848 bytes .../Bin/Debug/GpsEmulatorClient.pdb | Bin 0 -> 38400 bytes .../Bin/Tests/GpsEmulatorClient.dll | Bin 0 -> 14848 bytes .../Bin/Tests/GpsEmulatorClient.pdb | Bin 0 -> 32256 bytes .../GpsEmulatorClient/GeoCoordinateWatcher.cs | 277 + .../GpsEmulatorClient.csproj | 119 + .../GpsEmulatorClient/IGpsEmulatorService.cs | 11 + .../Properties/AssemblyInfo.cs | 35 + .../ServiceReference1/MainWindow.wsdl | 38 + .../ServiceReference1/Reference.cs | 252 + .../ServiceReference1/Reference.svcmap | 35 + .../ServiceReference1/configuration.svcinfo | 10 + .../ServiceReference1/configuration91.svcinfo | 201 + .../ServiceReference1/item.disco | 4 + .../ServiceReference1/item.xsd | 15 + .../ServiceReference1/item1.xsd | 42 + .../ServiceReferences.ClientConfig | 17 + .../GpsEmulatorPhoneTestClient/App.xaml | 19 + .../GpsEmulatorPhoneTestClient/App.xaml.cs | 138 + .../ApplicationIcon.png | Bin 0 -> 1881 bytes .../GpsEmulatorPhoneTestClient/Background.png | Bin 0 -> 3521 bytes .../Bin/Debug/AppManifest.xaml | 6 + .../Bin/Debug/ApplicationIcon.png | Bin 0 -> 1881 bytes .../Bin/Debug/Background.png | Bin 0 -> 3521 bytes .../Bin/Debug/GpsEmulatorClient.dll | Bin 0 -> 14848 bytes .../Bin/Debug/GpsEmulatorClient.pdb | Bin 0 -> 38400 bytes .../Bin/Debug/GpsEmulatorPhoneTestClient.dll | Bin 0 -> 17920 bytes .../Bin/Debug/GpsEmulatorPhoneTestClient.pdb | Bin 0 -> 36352 bytes .../Bin/Debug/GpsEmulatorPhoneTestClient.xap | Bin 0 -> 25012 bytes .../Bin/Tests/AppManifest.xaml | 6 + .../Bin/Tests/ApplicationIcon.png | Bin 0 -> 1881 bytes .../Bin/Tests/Background.png | Bin 0 -> 3521 bytes .../Bin/Tests/GpsEmulatorClient.dll | Bin 0 -> 14848 bytes .../Bin/Tests/GpsEmulatorClient.pdb | Bin 0 -> 32256 bytes .../Bin/Tests/GpsEmulatorPhoneTestClient.dll | Bin 0 -> 17920 bytes .../Bin/Tests/GpsEmulatorPhoneTestClient.pdb | Bin 0 -> 26112 bytes .../Bin/Tests/GpsEmulatorPhoneTestClient.xap | Bin 0 -> 25014 bytes .../GpsEmulatorPhoneTestClient.csproj | 125 + .../Images/GpsOn.png | Bin 0 -> 3145 bytes .../GpsEmulatorPhoneTestClient/MainPage.xaml | 61 + .../MainPage.xaml.cs | 76 + .../Properties/AppManifest.xml | 6 + .../Properties/AssemblyInfo.cs | 35 + .../Properties/WMAppManifest.xml | 32 + .../SplashScreenImage.jpg | Bin 0 -> 9417 bytes .../Hammock-Binaries/.NET 2.0/Hammock.dll | Bin 0 -> 182272 bytes .../Hammock-Binaries/.NET 2.0/Hammock.pdb | Bin 0 -> 542208 bytes .../Hammock-Binaries/.NET 2.0/LinqBridge.dll | Bin 0 -> 60928 bytes .../.NET Framework 3.5/Hammock.dll | Bin 0 -> 193536 bytes .../.NET Framework 3.5/Hammock.pdb | Bin 0 -> 503296 bytes .../Client Profile/Hammock.ClientProfile.dll | Bin 0 -> 179712 bytes .../Client Profile/Hammock.ClientProfile.pdb | Bin 0 -> 456192 bytes .../Silverlight 3/Hammock.Silverlight.dll | Bin 0 -> 154624 bytes .../Silverlight 3/Hammock.Silverlight.pdb | Bin 0 -> 409088 bytes .../ICSharpCode.SharpZipLib.Silverlight.dll | Bin 0 -> 184832 bytes .../ICSharpCode.SharpZipLib.Silverlight.pdb | Bin 0 -> 554496 bytes .../.NET 4.0/.NET Framework 4.0/Hammock.dll | Bin 0 -> 199680 bytes .../.NET 4.0/.NET Framework 4.0/Hammock.pdb | Bin 0 -> 511488 bytes .../Client Profile/Hammock.ClientProfile.dll | Bin 0 -> 193536 bytes .../Client Profile/Hammock.ClientProfile.pdb | Bin 0 -> 493056 bytes .../Silverlight 4/Hammock.Silverlight.dll | Bin 0 -> 168448 bytes .../Silverlight 4/Hammock.Silverlight.pdb | Bin 0 -> 450048 bytes .../ICSharpCode.SharpZipLib.Silverlight.dll | Bin 0 -> 185344 bytes .../ICSharpCode.SharpZipLib.Silverlight.pdb | Bin 0 -> 554496 bytes .../Windows Phone 7/Hammock.WindowsPhone.dll | Bin 0 -> 175104 bytes .../Windows Phone 7/Hammock.WindowsPhone.pdb | Bin 0 -> 458240 bytes .../ICSharpCode.SharpZipLib.WindowsPhone.dll | Bin 0 -> 184832 bytes .../ICSharpCode.SharpZipLib.WindowsPhone.pdb | Bin 0 -> 554496 bytes .../Mono 2.6/Hammock.Mono.dll | Bin 0 -> 192512 bytes .../Mono 2.6/Hammock.Mono.pdb | Bin 0 -> 427520 bytes .../Newtonsoft.Json.WindowsPhone.dll | Bin 0 -> 290304 bytes .../Newtonsoft.Json.WindowsPhone.pdb | Bin 0 -> 800256 bytes .../Newtonsoft.Json.WindowsPhone.xml | 6194 ++++++++ .../GalaSoft.MvvmLight.Extras.XML | 220 + .../GalaSoft.MvvmLight.Extras.dll | Bin 0 -> 14336 bytes .../Silverlight3/GalaSoft.MvvmLight.XML | 1127 ++ .../Silverlight3/GalaSoft.MvvmLight.dll | Bin 0 -> 24064 bytes .../System.Windows.Interactivity.dll | Bin 0 -> 45056 bytes .../Binaries/Silverlight3/vssver2.scc | Bin 0 -> 266 bytes .../GalaSoft.MvvmLight.Extras.SL4.XML | 134 + .../GalaSoft.MvvmLight.Extras.SL4.dll | Bin 0 -> 9728 bytes .../Silverlight4/GalaSoft.MvvmLight.SL4.XML | 1077 ++ .../Silverlight4/GalaSoft.MvvmLight.SL4.dll | Bin 0 -> 20480 bytes .../System.Windows.Interactivity.dll | Bin 0 -> 37376 bytes .../System.Windows.Interactivity.xml | 1025 ++ .../Binaries/Silverlight4/vssver2.scc | Bin 0 -> 274 bytes .../WP7/GalaSoft.MvvmLight.Extras.WP7.XML | 220 + .../WP7/GalaSoft.MvvmLight.Extras.WP7.dll | Bin 0 -> 14336 bytes .../Binaries/WP7/GalaSoft.MvvmLight.WP7.XML | 1058 ++ .../Binaries/WP7/GalaSoft.MvvmLight.WP7.dll | Bin 0 -> 26112 bytes .../WP7/System.Windows.Interactivity.dll | Bin 0 -> 33280 bytes .../WPF35SP1/GalaSoft.MvvmLight.Extras.XML | 159 + .../WPF35SP1/GalaSoft.MvvmLight.Extras.dll | Bin 0 -> 9728 bytes .../Binaries/WPF35SP1/GalaSoft.MvvmLight.XML | 1087 ++ .../Binaries/WPF35SP1/GalaSoft.MvvmLight.dll | Bin 0 -> 23040 bytes .../WPF35SP1/System.Windows.Interactivity.dll | Bin 0 -> 45056 bytes .../Binaries/WPF35SP1/vssver2.scc | Bin 0 -> 262 bytes .../WPF4/GalaSoft.MvvmLight.Extras.WPF4.XML | 142 + .../WPF4/GalaSoft.MvvmLight.Extras.WPF4.dll | Bin 0 -> 9728 bytes .../Binaries/WPF4/GalaSoft.MvvmLight.WPF4.XML | 1087 ++ .../Binaries/WPF4/GalaSoft.MvvmLight.WPF4.dll | Bin 0 -> 21504 bytes .../WPF4/System.Windows.Interactivity.dll | Bin 0 -> 39936 bytes .../Binaries/WPF4/vssver2.scc | Bin 0 -> 268 bytes .../Microsoft.Silverlight.Testing.dll | Bin 0 -> 520704 bytes .../Microsoft.Silverlight.Testing.pdb | Bin 0 -> 1070592 bytes ...o.QualityTools.UnitTesting.Silverlight.dll | Bin 0 -> 51200 bytes ...o.QualityTools.UnitTesting.Silverlight.pdb | Bin 0 -> 151040 bytes main/Libs/Sql/Microsoft.SqlServer.Types.dll | Bin 0 -> 310624 bytes .../MyFriendsAround.Common/Entities/Friend.cs | 54 + .../Entities/FriendExt.cs | 22 + .../Entities/MyFriends.Model.cs | 35 + .../Entities/MyFriends.Model.tt | 818 ++ .../MyFriendsAround.Common.csproj | 86 + .../Properties/AssemblyInfo.cs | 36 + .../MyFriendsAround.DB.dbmdl | Bin 0 -> 3282748 bytes .../MyFriendsAround.DB.dbproj | 160 + .../MyFriendsAround.DB.dbproj.schemaview | 8 + .../Properties/Database.sqlcmdvars | 6 + .../Properties/Database.sqldeployment | 14 + .../Properties/Database.sqlpermissions | 44 + .../Properties/Database.sqlsettings | 52 + .../sp_UpdateFriendLocationById.sql | 19 + .../Schemas/dbo/Tables/Friends.sql | 24 + .../Post-Deployment/Script.PostDeployment.sql | 11 + .../Pre-Deployment/Script.PreDeployment.sql | 11 + .../sql/Tests/MyFriendsAround.DB.dbschema | 41 + .../Tests/MyFriendsAround.DB.deploymanifest | 41 + .../sql/Tests/MyFriendsAround.DB.sql | 211 + .../MyFriendsAround.DB_Database.sqlcmdvars | 6 + .../MyFriendsAround.DB_Database.sqldeployment | 14 + .../MyFriendsAround.DB_Database.sqlsettings | 52 + ...FriendsAround.DB_Script.PostDeployment.sql | 11 + ...yFriendsAround.DB_Script.PreDeployment.sql | 11 + .../sql/debug/MyFriendsAround.DB.dbschema | 41 + .../debug/MyFriendsAround.DB.deploymanifest | 41 + .../sql/debug/MyFriendsAround.DB.sql | 211 + .../MyFriendsAround.DB_Database.sqlcmdvars | 6 + .../MyFriendsAround.DB_Database.sqldeployment | 14 + .../MyFriendsAround.DB_Database.sqlsettings | 52 + ...FriendsAround.DB_Script.PostDeployment.sql | 11 + ...yFriendsAround.DB_Script.PreDeployment.sql | 11 + .../FriendsRepository.cs | 63 + .../MyFriendsAround.BLL.csproj | 82 + .../Properties/AssemblyInfo.cs | 36 + main/MyFriendsAround.Data/App.Config | 6 + .../MyFriendsAround.Data/MyFriends.Context.tt | 178 + .../MyFriends.Context1.cs | 54 + .../MyFriendsAround.Data.csproj | 106 + .../MyFriendsModel.Designer.cs | 4 + main/MyFriendsAround.Data/MyFriendsModel.edmx | 90 + .../MyFriendsModel.edmx.sql | 55 + .../Properties/AssemblyInfo.cs | 36 + main/MyFriendsAround.WP7/App.xaml | 25 + main/MyFriendsAround.WP7/App.xaml.cs | 120 + main/MyFriendsAround.WP7/ApplicationIcon.png | Bin 0 -> 1881 bytes main/MyFriendsAround.WP7/Background.png | Bin 0 -> 3521 bytes main/MyFriendsAround.WP7/MainPage.xaml | 104 + main/MyFriendsAround.WP7/MainPage.xaml.cs | 58 + .../MyFriendsAround.WP7.csproj | 178 + .../Properties/AppManifest.xml | 6 + .../Properties/AssemblyInfo.cs | 35 + .../Properties/WMAppManifest.xml | 32 + main/MyFriendsAround.WP7/README_FIRST.txt | 3 + .../Service/FriendsListEventArgs.cs | 20 + .../Service/PublishLocationEventArgs.cs | 12 + .../Service/ServiceAgent.cs | 93 + .../MyFriendsAround.WP7/SplashScreenImage.jpg | Bin 0 -> 9417 bytes main/MyFriendsAround.WP7/Tests/Tests1.cs | 32 + .../Toolkit.Content/ApplicationBar.Cancel.png | Bin 0 -> 350 bytes .../Toolkit.Content/ApplicationBar.Check.png | Bin 0 -> 414 bytes .../Utils/Identification.cs | 68 + .../Utils/SerializationHelper.cs | 32 + .../ViewModel/MainViewModel.cs | 228 + .../ViewModel/PushPinModel.cs | 54 + .../ViewModel/ViewModelLocator.cs | 135 + main/MyFriendsAround.WP7/packages.config | 4 + main/MyFriendsAround.WcfREST/Global.asax | 1 + main/MyFriendsAround.WcfREST/Global.asax.cs | 21 + .../MyFriendsAround.WcfREST.csproj | 114 + .../Properties/AssemblyInfo.cs | 36 + main/MyFriendsAround.WcfREST/SampleItem.cs | 15 + main/MyFriendsAround.WcfREST/Service1.cs | 76 + main/MyFriendsAround.WcfREST/Web.Debug.config | 7 + .../Web.Release.config | 11 + main/MyFriendsAround.WcfREST/Web.config | 31 + main/MyFriendsAround.Web.Tests/App.config | 14 + .../Controllers/AccountControllerTest.cs | 449 + .../Controllers/HomeControllerTest.cs | 41 + .../MyFriendsAround.Web.Tests.csproj | 90 + .../Properties/AssemblyInfo.cs | 35 + main/MyFriendsAround.Web/Content/Site.css | 349 + .../images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 0 -> 180 bytes .../images/ui-bg_flat_75_ffffff_40x100.png | Bin 0 -> 178 bytes .../images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 0 -> 120 bytes .../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 105 bytes .../images/ui-bg_glass_75_dadada_1x400.png | Bin 0 -> 111 bytes .../images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 0 -> 110 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 119 bytes .../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 0 -> 101 bytes .../base/images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_454545_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_888888_256x240.png | Bin 0 -> 4369 bytes .../base/images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4369 bytes .../Content/themes/base/jquery-ui.css | 635 + .../Controllers/AccountController.cs | 151 + .../Controllers/HomeController.cs | 62 + main/MyFriendsAround.Web/Global.asax | 1 + main/MyFriendsAround.Web/Global.asax.cs | 50 + .../Models/AccountModels.cs | 251 + main/MyFriendsAround.Web/Models/MapsHelper.cs | 44 + main/MyFriendsAround.Web/Models/Markers.cs | 17 + .../MyFriendsAround.Web.csproj | 202 + .../Properties/AssemblyInfo.cs | 35 + .../Scripts/GoogleMapping.js | 62 + .../Scripts/GoogleMapping.min.js | 1 + .../Scripts/MicrosoftAjax.debug.js | 7117 ++++++++++ .../Scripts/MicrosoftAjax.js | 6 + .../Scripts/MicrosoftMvcAjax.debug.js | 408 + .../Scripts/MicrosoftMvcAjax.js | 25 + .../Scripts/MicrosoftMvcValidation.debug.js | 883 ++ .../Scripts/MicrosoftMvcValidation.js | 55 + .../Scripts/jquery-1.4.4-vsdoc.js | 9035 ++++++++++++ .../Scripts/jquery-1.4.4.js | 7177 ++++++++++ .../Scripts/jquery-1.4.4.min.js | 171 + main/MyFriendsAround.Web/Scripts/jquery-ui.js | 11630 ++++++++++++++++ .../Scripts/jquery-ui.min.js | 409 + .../Scripts/jquery.unobtrusive-ajax.js | 165 + .../Scripts/jquery.unobtrusive-ajax.min.js | 5 + .../Scripts/jquery.validate-vsdoc.js | 1286 ++ .../Scripts/jquery.validate.js | 1150 ++ .../Scripts/jquery.validate.min.js | 20 + .../Scripts/jquery.validate.unobtrusive.js | 319 + .../jquery.validate.unobtrusive.min.js | 5 + .../Views/Account/ChangePassword.cshtml | 53 + .../Account/ChangePasswordSuccess.cshtml | 8 + .../Views/Account/LogOn.cshtml | 48 + .../Views/Account/Register.cshtml | 61 + .../Views/Home/About.cshtml | 10 + .../Views/Home/Index.cshtml | 24 + .../Views/Shared/Error.cshtml | 9 + .../Views/Shared/_Layout.cshtml | 38 + .../Views/Shared/_LogOnPartial.cshtml | 7 + main/MyFriendsAround.Web/Views/Web.config | 58 + .../Views/_ViewStart.cshtml | 3 + main/MyFriendsAround.Web/Web.Debug.config | 30 + main/MyFriendsAround.Web/Web.Release.config | 31 + main/MyFriendsAround.Web/Web.config | 114 + main/MyFriendsAround.Web/myfriends.svc | 1 + main/MyFriendsAround.Web/myfriends.svc.cs | 39 + main/MyFriendsAround.sln | 217 + .../SilverlightToolkitWP.4.2011.2.1.nupkg | Bin 0 -> 133387 bytes .../content/README_FIRST.txt | 3 + .../Toolkit.Content/ApplicationBar.Cancel.png | Bin 0 -> 350 bytes .../Toolkit.Content/ApplicationBar.Check.png | Bin 0 -> 414 bytes .../sl4/Microsoft.Phone.Controls.Toolkit.dll | Bin 0 -> 325432 bytes main/packages/repositories.config | 4 + 315 files changed, 71380 insertions(+) create mode 100644 .hgignore create mode 100644 main/Libs/GpsEmulator/GpsEmulator.sln create mode 100644 main/Libs/GpsEmulator/GpsEmulator/App.config create mode 100644 main/Libs/GpsEmulator/GpsEmulator/App.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/App.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/BingApis/BingMapsClient.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/BingApis/TimedPosition.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/BingApis/VirtualEarthWebServices.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/GpsEmulator.csproj create mode 100644 main/Libs/GpsEmulator/GpsEmulator/GpsService/IGpsEmulatorService.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MainWindow.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MainWindow.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/IMapTileFactory.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/InMemoryCacheMapTileFactory.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/MapControl.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/MapControl.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/MapMarker.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/MapTile.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/MapTile.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/MapControl/WebMapTileFactory.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/DirectionalMarker.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/DirectionalMarker.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/DirectionalMarker.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/RouteMarker.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/SelectionMarker.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/SelectionMarker.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/SelectionMarker.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/WaypointMarker.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/WaypointMarker.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Markers/WaypointMarker.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Properties/AssemblyInfo.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Properties/Resources.Designer.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Properties/Resources.resx create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Properties/Settings.Designer.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Properties/Settings.settings create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/00433803.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/00433903.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/00438059.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/AppIcon.ico create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/Globe.design create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/Globe.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/GpsEmulator.ico create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/GpsEmulator.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/GpsSimulator_32x32.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/Key.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/MC900432631[1].png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/Settings.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/ZoomIn.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Resources/ZoomOut.png create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Utilities/InternetConnectivityChecker.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Utilities/MapTypes.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulator/Utilities/MapUtils.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Bin/Debug/GpsEmulatorClient.dll create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Bin/Debug/GpsEmulatorClient.pdb create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Bin/Tests/GpsEmulatorClient.dll create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Bin/Tests/GpsEmulatorClient.pdb create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/GeoCoordinateWatcher.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/GpsEmulatorClient.csproj create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/IGpsEmulatorService.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Properties/AssemblyInfo.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/MainWindow.wsdl create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/Reference.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/Reference.svcmap create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/configuration.svcinfo create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/configuration91.svcinfo create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/item.disco create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/item.xsd create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/Service References/ServiceReference1/item1.xsd create mode 100644 main/Libs/GpsEmulator/GpsEmulatorClient/ServiceReferences.ClientConfig create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/App.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/App.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/ApplicationIcon.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Background.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/AppManifest.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/ApplicationIcon.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/Background.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/GpsEmulatorClient.dll create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/GpsEmulatorClient.pdb create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/GpsEmulatorPhoneTestClient.dll create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/GpsEmulatorPhoneTestClient.pdb create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Debug/GpsEmulatorPhoneTestClient.xap create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/AppManifest.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/ApplicationIcon.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/Background.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/GpsEmulatorClient.dll create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/GpsEmulatorClient.pdb create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/GpsEmulatorPhoneTestClient.dll create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/GpsEmulatorPhoneTestClient.pdb create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Bin/Tests/GpsEmulatorPhoneTestClient.xap create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/GpsEmulatorPhoneTestClient.csproj create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Images/GpsOn.png create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/MainPage.xaml create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/MainPage.xaml.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Properties/AppManifest.xml create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Properties/AssemblyInfo.cs create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/Properties/WMAppManifest.xml create mode 100644 main/Libs/GpsEmulator/GpsEmulatorPhoneTestClient/SplashScreenImage.jpg create mode 100644 main/Libs/Hammock-Binaries/.NET 2.0/Hammock.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 2.0/Hammock.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 2.0/LinqBridge.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/.NET Framework 3.5/Hammock.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/.NET Framework 3.5/Hammock.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/Client Profile/Hammock.ClientProfile.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/Client Profile/Hammock.ClientProfile.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/Silverlight 3/Hammock.Silverlight.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/Silverlight 3/Hammock.Silverlight.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/Silverlight 3/ICSharpCode.SharpZipLib.Silverlight.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 3.5 SP1/Silverlight 3/ICSharpCode.SharpZipLib.Silverlight.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/.NET Framework 4.0/Hammock.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/.NET Framework 4.0/Hammock.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Client Profile/Hammock.ClientProfile.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Client Profile/Hammock.ClientProfile.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Silverlight 4/Hammock.Silverlight.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Silverlight 4/Hammock.Silverlight.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Silverlight 4/ICSharpCode.SharpZipLib.Silverlight.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Silverlight 4/ICSharpCode.SharpZipLib.Silverlight.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Windows Phone 7/Hammock.WindowsPhone.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Windows Phone 7/Hammock.WindowsPhone.pdb create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Windows Phone 7/ICSharpCode.SharpZipLib.WindowsPhone.dll create mode 100644 main/Libs/Hammock-Binaries/.NET 4.0/Windows Phone 7/ICSharpCode.SharpZipLib.WindowsPhone.pdb create mode 100644 main/Libs/Hammock-Binaries/Mono 2.6/Hammock.Mono.dll create mode 100644 main/Libs/Hammock-Binaries/Mono 2.6/Hammock.Mono.pdb create mode 100644 main/Libs/Json40r1/WindowsPhone/Newtonsoft.Json.WindowsPhone.dll create mode 100644 main/Libs/Json40r1/WindowsPhone/Newtonsoft.Json.WindowsPhone.pdb create mode 100644 main/Libs/Json40r1/WindowsPhone/Newtonsoft.Json.WindowsPhone.xml create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight3/GalaSoft.MvvmLight.Extras.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight3/GalaSoft.MvvmLight.Extras.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight3/GalaSoft.MvvmLight.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight3/GalaSoft.MvvmLight.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight3/System.Windows.Interactivity.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight3/vssver2.scc create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/GalaSoft.MvvmLight.Extras.SL4.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/GalaSoft.MvvmLight.Extras.SL4.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/GalaSoft.MvvmLight.SL4.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/GalaSoft.MvvmLight.SL4.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/System.Windows.Interactivity.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/System.Windows.Interactivity.xml create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/Silverlight4/vssver2.scc create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WP7/GalaSoft.MvvmLight.Extras.WP7.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WP7/GalaSoft.MvvmLight.Extras.WP7.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WP7/GalaSoft.MvvmLight.WP7.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WP7/GalaSoft.MvvmLight.WP7.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WP7/System.Windows.Interactivity.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF35SP1/GalaSoft.MvvmLight.Extras.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF35SP1/GalaSoft.MvvmLight.Extras.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF35SP1/GalaSoft.MvvmLight.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF35SP1/GalaSoft.MvvmLight.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF35SP1/System.Windows.Interactivity.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF35SP1/vssver2.scc create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF4/GalaSoft.MvvmLight.Extras.WPF4.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF4/GalaSoft.MvvmLight.Extras.WPF4.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF4/GalaSoft.MvvmLight.WPF4.XML create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF4/GalaSoft.MvvmLight.WPF4.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF4/System.Windows.Interactivity.dll create mode 100644 main/Libs/Mvvm Light Toolkit/Binaries/WPF4/vssver2.scc create mode 100644 main/Libs/SL3_UTF_May/Microsoft.Silverlight.Testing.dll create mode 100644 main/Libs/SL3_UTF_May/Microsoft.Silverlight.Testing.pdb create mode 100644 main/Libs/SL3_UTF_May/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll create mode 100644 main/Libs/SL3_UTF_May/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.pdb create mode 100644 main/Libs/Sql/Microsoft.SqlServer.Types.dll create mode 100644 main/MyFriendsAround.Common/Entities/Friend.cs create mode 100644 main/MyFriendsAround.Common/Entities/FriendExt.cs create mode 100644 main/MyFriendsAround.Common/Entities/MyFriends.Model.cs create mode 100644 main/MyFriendsAround.Common/Entities/MyFriends.Model.tt create mode 100644 main/MyFriendsAround.Common/MyFriendsAround.Common.csproj create mode 100644 main/MyFriendsAround.Common/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.DB/MyFriendsAround.DB.dbmdl create mode 100644 main/MyFriendsAround.DB/MyFriendsAround.DB.dbproj create mode 100644 main/MyFriendsAround.DB/MyFriendsAround.DB.dbproj.schemaview create mode 100644 main/MyFriendsAround.DB/Properties/Database.sqlcmdvars create mode 100644 main/MyFriendsAround.DB/Properties/Database.sqldeployment create mode 100644 main/MyFriendsAround.DB/Properties/Database.sqlpermissions create mode 100644 main/MyFriendsAround.DB/Properties/Database.sqlsettings create mode 100644 main/MyFriendsAround.DB/Schema Objects/Schemas/dbo/Programmability/Stored Procedures/sp_UpdateFriendLocationById.sql create mode 100644 main/MyFriendsAround.DB/Schema Objects/Schemas/dbo/Tables/Friends.sql create mode 100644 main/MyFriendsAround.DB/Scripts/Post-Deployment/Script.PostDeployment.sql create mode 100644 main/MyFriendsAround.DB/Scripts/Pre-Deployment/Script.PreDeployment.sql create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.dbschema create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.deploymanifest create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.sql create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlcmdvars create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqldeployment create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlsettings create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PostDeployment.sql create mode 100644 main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PreDeployment.sql create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.dbschema create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.deploymanifest create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.sql create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlcmdvars create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqldeployment create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlsettings create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PostDeployment.sql create mode 100644 main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PreDeployment.sql create mode 100644 main/MyFriendsAround.Data.BLL/FriendsRepository.cs create mode 100644 main/MyFriendsAround.Data.BLL/MyFriendsAround.BLL.csproj create mode 100644 main/MyFriendsAround.Data.BLL/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.Data/App.Config create mode 100644 main/MyFriendsAround.Data/MyFriends.Context.tt create mode 100644 main/MyFriendsAround.Data/MyFriends.Context1.cs create mode 100644 main/MyFriendsAround.Data/MyFriendsAround.Data.csproj create mode 100644 main/MyFriendsAround.Data/MyFriendsModel.Designer.cs create mode 100644 main/MyFriendsAround.Data/MyFriendsModel.edmx create mode 100644 main/MyFriendsAround.Data/MyFriendsModel.edmx.sql create mode 100644 main/MyFriendsAround.Data/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.WP7/App.xaml create mode 100644 main/MyFriendsAround.WP7/App.xaml.cs create mode 100644 main/MyFriendsAround.WP7/ApplicationIcon.png create mode 100644 main/MyFriendsAround.WP7/Background.png create mode 100644 main/MyFriendsAround.WP7/MainPage.xaml create mode 100644 main/MyFriendsAround.WP7/MainPage.xaml.cs create mode 100644 main/MyFriendsAround.WP7/MyFriendsAround.WP7.csproj create mode 100644 main/MyFriendsAround.WP7/Properties/AppManifest.xml create mode 100644 main/MyFriendsAround.WP7/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.WP7/Properties/WMAppManifest.xml create mode 100644 main/MyFriendsAround.WP7/README_FIRST.txt create mode 100644 main/MyFriendsAround.WP7/Service/FriendsListEventArgs.cs create mode 100644 main/MyFriendsAround.WP7/Service/PublishLocationEventArgs.cs create mode 100644 main/MyFriendsAround.WP7/Service/ServiceAgent.cs create mode 100644 main/MyFriendsAround.WP7/SplashScreenImage.jpg create mode 100644 main/MyFriendsAround.WP7/Tests/Tests1.cs create mode 100644 main/MyFriendsAround.WP7/Toolkit.Content/ApplicationBar.Cancel.png create mode 100644 main/MyFriendsAround.WP7/Toolkit.Content/ApplicationBar.Check.png create mode 100644 main/MyFriendsAround.WP7/Utils/Identification.cs create mode 100644 main/MyFriendsAround.WP7/Utils/SerializationHelper.cs create mode 100644 main/MyFriendsAround.WP7/ViewModel/MainViewModel.cs create mode 100644 main/MyFriendsAround.WP7/ViewModel/PushPinModel.cs create mode 100644 main/MyFriendsAround.WP7/ViewModel/ViewModelLocator.cs create mode 100644 main/MyFriendsAround.WP7/packages.config create mode 100644 main/MyFriendsAround.WcfREST/Global.asax create mode 100644 main/MyFriendsAround.WcfREST/Global.asax.cs create mode 100644 main/MyFriendsAround.WcfREST/MyFriendsAround.WcfREST.csproj create mode 100644 main/MyFriendsAround.WcfREST/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.WcfREST/SampleItem.cs create mode 100644 main/MyFriendsAround.WcfREST/Service1.cs create mode 100644 main/MyFriendsAround.WcfREST/Web.Debug.config create mode 100644 main/MyFriendsAround.WcfREST/Web.Release.config create mode 100644 main/MyFriendsAround.WcfREST/Web.config create mode 100644 main/MyFriendsAround.Web.Tests/App.config create mode 100644 main/MyFriendsAround.Web.Tests/Controllers/AccountControllerTest.cs create mode 100644 main/MyFriendsAround.Web.Tests/Controllers/HomeControllerTest.cs create mode 100644 main/MyFriendsAround.Web.Tests/MyFriendsAround.Web.Tests.csproj create mode 100644 main/MyFriendsAround.Web.Tests/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.Web/Content/Site.css create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_222222_256x240.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_2e83ff_256x240.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_454545_256x240.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_888888_256x240.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_cd0a0a_256x240.png create mode 100644 main/MyFriendsAround.Web/Content/themes/base/jquery-ui.css create mode 100644 main/MyFriendsAround.Web/Controllers/AccountController.cs create mode 100644 main/MyFriendsAround.Web/Controllers/HomeController.cs create mode 100644 main/MyFriendsAround.Web/Global.asax create mode 100644 main/MyFriendsAround.Web/Global.asax.cs create mode 100644 main/MyFriendsAround.Web/Models/AccountModels.cs create mode 100644 main/MyFriendsAround.Web/Models/MapsHelper.cs create mode 100644 main/MyFriendsAround.Web/Models/Markers.cs create mode 100644 main/MyFriendsAround.Web/MyFriendsAround.Web.csproj create mode 100644 main/MyFriendsAround.Web/Properties/AssemblyInfo.cs create mode 100644 main/MyFriendsAround.Web/Scripts/GoogleMapping.js create mode 100644 main/MyFriendsAround.Web/Scripts/GoogleMapping.min.js create mode 100644 main/MyFriendsAround.Web/Scripts/MicrosoftAjax.debug.js create mode 100644 main/MyFriendsAround.Web/Scripts/MicrosoftAjax.js create mode 100644 main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.debug.js create mode 100644 main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.js create mode 100644 main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.debug.js create mode 100644 main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery-1.4.4-vsdoc.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery-1.4.4.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery-1.4.4.min.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery-ui.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery-ui.min.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.unobtrusive-ajax.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.unobtrusive-ajax.min.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.validate-vsdoc.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.validate.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.validate.min.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.validate.unobtrusive.js create mode 100644 main/MyFriendsAround.Web/Scripts/jquery.validate.unobtrusive.min.js create mode 100644 main/MyFriendsAround.Web/Views/Account/ChangePassword.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Account/ChangePasswordSuccess.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Account/LogOn.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Account/Register.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Home/About.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Home/Index.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Shared/Error.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Shared/_Layout.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Shared/_LogOnPartial.cshtml create mode 100644 main/MyFriendsAround.Web/Views/Web.config create mode 100644 main/MyFriendsAround.Web/Views/_ViewStart.cshtml create mode 100644 main/MyFriendsAround.Web/Web.Debug.config create mode 100644 main/MyFriendsAround.Web/Web.Release.config create mode 100644 main/MyFriendsAround.Web/Web.config create mode 100644 main/MyFriendsAround.Web/myfriends.svc create mode 100644 main/MyFriendsAround.Web/myfriends.svc.cs create mode 100644 main/MyFriendsAround.sln create mode 100644 main/packages/SilverlightToolkitWP.4.2011.2.1/SilverlightToolkitWP.4.2011.2.1.nupkg create mode 100644 main/packages/SilverlightToolkitWP.4.2011.2.1/content/README_FIRST.txt create mode 100644 main/packages/SilverlightToolkitWP.4.2011.2.1/content/Toolkit.Content/ApplicationBar.Cancel.png create mode 100644 main/packages/SilverlightToolkitWP.4.2011.2.1/content/Toolkit.Content/ApplicationBar.Check.png create mode 100644 main/packages/SilverlightToolkitWP.4.2011.2.1/lib/sl4/Microsoft.Phone.Controls.Toolkit.dll create mode 100644 main/packages/repositories.config diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..1286153 --- /dev/null +++ b/.hgignore @@ -0,0 +1,5 @@ +syntax: glob +*.suo +*/bin/* +*.user +*/obj/* diff --git a/main/Libs/GpsEmulator/GpsEmulator.sln b/main/Libs/GpsEmulator/GpsEmulator.sln new file mode 100644 index 0000000..408e291 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator.sln @@ -0,0 +1,60 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GpsEmulator", "GpsEmulator\GpsEmulator.csproj", "{566AEE14-134C-4EE4-93B5-1FFB021DE678}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{736B4E0E-21AD-4357-A730-917438B61875}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GpsEmulatorClient", "GpsEmulatorClient\GpsEmulatorClient.csproj", "{A128812A-1249-4562-BDF4-5E17951B8434}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GpsEmulatorPhoneTestClient", "GpsEmulatorPhoneTestClient\GpsEmulatorPhoneTestClient.csproj", "{BF7316A8-A2C5-4176-8D7F-672AD12F474D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|Any CPU.ActiveCfg = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|x86.ActiveCfg = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|x86.Build.0 = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|Any CPU.ActiveCfg = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|Mixed Platforms.Build.0 = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|x86.ActiveCfg = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|x86.Build.0 = Release|x86 + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|x86.ActiveCfg = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Any CPU.Build.0 = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|x86.ActiveCfg = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|x86.ActiveCfg = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Any CPU.Build.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Any CPU.Deploy.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|x86.ActiveCfg = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/main/Libs/GpsEmulator/GpsEmulator/App.config b/main/Libs/GpsEmulator/GpsEmulator/App.config new file mode 100644 index 0000000..90cb373 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/App.config @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/main/Libs/GpsEmulator/GpsEmulator/App.xaml b/main/Libs/GpsEmulator/GpsEmulator/App.xaml new file mode 100644 index 0000000..78d5e8a --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/App.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/main/Libs/GpsEmulator/GpsEmulator/App.xaml.cs b/main/Libs/GpsEmulator/GpsEmulator/App.xaml.cs new file mode 100644 index 0000000..eb645d7 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/App.xaml.cs @@ -0,0 +1,34 @@ +using System.Windows; +using System.Diagnostics; +using System.Security.Principal; + +namespace GpsEmulator +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + App() + { + WindowsPrincipal pricipal = new WindowsPrincipal(WindowsIdentity.GetCurrent()); + if (!pricipal.IsInRole(WindowsBuiltInRole.Administrator)) + { + ProcessStartInfo processInfo = new ProcessStartInfo(); + processInfo.Verb = "runas"; + string appStartPath = System.IO.Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName); + Process p = Process.GetCurrentProcess(); + processInfo.FileName = appStartPath + "\\" + p.ProcessName + ".exe"; + try + { + Process.Start(processInfo); + } + catch + { + //Do nothing. Probably the user canceled the UAC window + } + Application.Current.Shutdown(); + } + } + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/BingApis/BingMapsClient.cs b/main/Libs/GpsEmulator/GpsEmulator/BingApis/BingMapsClient.cs new file mode 100644 index 0000000..ef68271 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/BingApis/BingMapsClient.cs @@ -0,0 +1,252 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Threading.Tasks; +using System.Windows.Media.Imaging; +using dev.virtualearth.net.webservices.v1.common; +using dev.virtualearth.net.webservices.v1.geocode; +using dev.virtualearth.net.webservices.v1.route; +using GpsEmulator.Utilities; + +namespace GpsEmulator.BingApis +{ + public class BingMapsClient + { + Credentials creds = new Credentials(); + RouteServiceClient routeService = new RouteServiceClient("CustomBinding_IRouteService"); + ImageryServiceClient imageryService = new ImageryServiceClient("CustomBinding_IImageryService"); + + #region Properties + + string apiKey = null; + public string ApiKey + { + get { return apiKey; } + set + { + apiKey = value; + creds.ApplicationId = apiKey; + } + } + + public int MaxServiceRetries = 5; + + #endregion + + public BingMapsClient(string bingApiKey) + { + creds.ApplicationId = bingApiKey; + } + + public bool QueryLocation(string queryString, out double lat, out double lng) + { + lat = 0; + lng = 0; + + GeocodeRequest geocodeRequest = new GeocodeRequest(); + geocodeRequest.Query = queryString; + geocodeRequest.Options = new GeocodeOptions() { Filters = new FilterBase[] { new ConfidenceFilter() { MinimumConfidence = Confidence.High } }, Count = 1 }; + geocodeRequest.Credentials = creds; + + GeocodeServiceClient geocodeServiceClient = new GeocodeServiceClient("CustomBinding_IGeocodeService"); + GeocodeResponse geocodeResponse = geocodeServiceClient.Geocode(geocodeRequest); + + bool locationFound = geocodeResponse.Results.Count() > 0; + if (locationFound) + { + lat = geocodeResponse.Results[0].Locations[0].Latitude; + lng = geocodeResponse.Results[0].Locations[0].Longitude; + } + return locationFound; + } + + public List GetRoute(TimeSpan startTime, double startLat, double startLong, double endLat, double endLong) + { + RouteRequest routeRequest = new RouteRequest(); + routeRequest.Credentials = creds; + routeRequest.Options = new RouteOptions() { RoutePathType = RoutePathType.Points }; + + Waypoint wp1 = new Waypoint() + { + Description = "Start", + Location = new Location() { Latitude = startLat, Longitude = startLong } + }; + Waypoint wp2 = new Waypoint() + { + Description = "End", + Location = new Location() { Latitude = endLat, Longitude = endLong } + }; + routeRequest.Waypoints = new Waypoint[] { wp1, wp2 }; + + // Make the calculate route request + int attempts = 0; + RouteResponse routeResponse = null; + while (routeResponse == null && attempts < MaxServiceRetries) + { + try + { + routeResponse = routeService.CalculateRoute(routeRequest); + } + finally + { + attempts++; + } + } + if (attempts == MaxServiceRetries | routeResponse.Result.RoutePath.Points.Length < 2) return null; + + List path = new List(); + + for (int i = 0; i < routeResponse.Result.RoutePath.Points.Length; i++) + { + if (i > 0) + { + routeRequest.Waypoints = new Waypoint[] { + new Waypoint() { + Location = new Location() { + Longitude = routeResponse.Result.RoutePath.Points[i-1].Longitude, + Latitude= routeResponse.Result.RoutePath.Points[i-1].Latitude + } + }, + new Waypoint() { + Location = new Location() { + Longitude = routeResponse.Result.RoutePath.Points[i].Longitude, + Latitude= routeResponse.Result.RoutePath.Points[i].Latitude + } + } + }; + RouteResponse subRouteResponse = routeService.CalculateRoute(routeRequest); + startTime = startTime.Add(TimeSpan.FromSeconds(subRouteResponse.Result.Summary.TimeInSeconds)); + } + path.Add(new TimedPosition(startTime, routeResponse.Result.RoutePath.Points[i].Latitude, routeResponse.Result.RoutePath.Points[i].Longitude)); + } + + return path; + } + + public List GetRoute(TimeSpan startTime, double startLat, double startLong, double endLat, double endLong, double speedOfTravel) + { + RouteRequest routeRequest = new RouteRequest(); + routeRequest.Credentials = creds; + routeRequest.Options = new RouteOptions() { RoutePathType = RoutePathType.Points }; + + Waypoint wp1 = new Waypoint() + { + Description = "Start", + Location = new Location() { Latitude = startLat, Longitude = startLong } + }; + Waypoint wp2 = new Waypoint() + { + Description = "End", + Location = new Location() { Latitude = endLat, Longitude = endLong } + }; + routeRequest.Waypoints = new Waypoint[] { wp1, wp2 }; + + // Make the calculate route request + int attempts = 0; + RouteResponse routeResponse = null; + while (routeResponse == null && attempts < MaxServiceRetries) + { + try + { + routeResponse = routeService.CalculateRoute(routeRequest); + } + finally + { + attempts++; + } + } + if (attempts == MaxServiceRetries | routeResponse.Result.RoutePath.Points.Length <2) return null; + + List path = new List(routeResponse.Result.RoutePath.Points.Length); + System.Windows.Point startPoint, endPoint; + + startPoint = new System.Windows.Point( + routeResponse.Result.RoutePath.Points[0].Longitude, + routeResponse.Result.RoutePath.Points[0].Latitude); + TimeSpan time = startTime; + + for (int i = 1; i < routeResponse.Result.RoutePath.Points.Length; i++) + { + endPoint = new System.Windows.Point( + routeResponse.Result.RoutePath.Points[i].Longitude, + routeResponse.Result.RoutePath.Points[i].Latitude); + double distance = MapUtils.GetDistance(startPoint, endPoint); + time = time.Add(TimeSpan.FromMilliseconds(100 * distance / speedOfTravel)); + path.Add(new TimedPosition(time, routeResponse.Result.RoutePath.Points[i].Latitude, routeResponse.Result.RoutePath.Points[i].Longitude)); + startPoint = endPoint; + } + return path; + } + + internal BitmapImage GetTile(int zoom, int tileX, int tileY, MapType type) + { + string tileUrl = GetTileUrl(zoom, tileX, tileY, type); + BitmapImage image = new BitmapImage(); + + // Make the image request on a different thread, but create the actual image on the current one + Task.Factory.StartNew(delegate() + { + WebClient client = new WebClient(); + int attempts = 0; + byte[] tileBytes = null; + while (attempts < MaxServiceRetries) + { + try + { + tileBytes = client.DownloadData(tileUrl); + return new MemoryStream(tileBytes); + } + catch + { + attempts++; + } + } + return null; + }) + .ContinueWith((t) => + { + if (!t.IsFaulted && t.Result!=null) + { + image.BeginInit(); + image.CacheOption = BitmapCacheOption.OnLoad; + image.StreamSource = t.Result; + image.EndInit(); + t.Result.Close(); + } + }, TaskScheduler.FromCurrentSynchronizationContext()); + return image; + } + + internal string GetTileUrl(int zoom, int tileX, int tileY, MapType type, string language="en-US") + { + const string VersionBingMaps = "517"; + + string key = MapUtils.TileXYToQuadKey(tileX, tileY, zoom); + + int serverNum = ((int) (tileX + 2 * tileY)) % 4; + + switch (type) + { + case MapType.Road: + { + return string.Format("http://ecn.t{0}.tiles.virtualearth.net/tiles/r{1}.png?g={2}&mkt={3}{4}", serverNum, key, VersionBingMaps, language, (!string.IsNullOrEmpty(creds.ApplicationId) ? "&token=" + creds.ApplicationId : string.Empty)); + // If you want lower image quality, change this to: return string.Format("http://ecn.t{0}.tiles.virtualearth.net/tiles/r{1}.png?g={2}&mkt={3}{4}", serverNum, key, VersionBingMaps, language, (!string.IsNullOrEmpty(creds.ApplicationId) ? "&token=" + creds.ApplicationId : string.Empty)); + } + + case MapType.Aerial: + { + return string.Format("http://ecn.t{0}.tiles.virtualearth.net/tiles/a{1}.jpeg?g={2}&mkt={3}{4}", serverNum, key, VersionBingMaps, language, (!string.IsNullOrEmpty(creds.ApplicationId) ? "&token=" + creds.ApplicationId : string.Empty)); + } + + case MapType.Hybrid: + { + return string.Format("http://ecn.t{0}.tiles.virtualearth.net/tiles/h{1}.jpeg?g={2}&mkt={3}{4}", serverNum, key, VersionBingMaps, language, (!string.IsNullOrEmpty(creds.ApplicationId) ? "&token=" + creds.ApplicationId : string.Empty)); + } + } + + return null; + } + } +} \ No newline at end of file diff --git a/main/Libs/GpsEmulator/GpsEmulator/BingApis/TimedPosition.cs b/main/Libs/GpsEmulator/GpsEmulator/BingApis/TimedPosition.cs new file mode 100644 index 0000000..8330633 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/BingApis/TimedPosition.cs @@ -0,0 +1,23 @@ +using System; +using System.Runtime.Serialization; +using System.Windows; +using GpsEmulator.MapControl; + +namespace GpsEmulator.BingApis +{ + [DataContract] + public class TimedPosition + { + [DataMember] + public TimeSpan Time { get; set; } + [DataMember] + public Point Position { get; set; } + public MapMarker MapMarker { get; set; } + + public TimedPosition(TimeSpan time, double lat, double lng) + { + this.Time = time; + this.Position = new Point(lat, lng); + } + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/BingApis/VirtualEarthWebServices.cs b/main/Libs/GpsEmulator/GpsEmulator/BingApis/VirtualEarthWebServices.cs new file mode 100644 index 0000000..6c99b58 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/BingApis/VirtualEarthWebServices.cs @@ -0,0 +1,5616 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.1 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +[assembly: System.Runtime.Serialization.ContractNamespaceAttribute("http://dev.virtualearth.net/webservices/v1/common", ClrNamespace="dev.virtualearth.net.webservices.v1.common")] +[assembly: System.Runtime.Serialization.ContractNamespaceAttribute("http://dev.virtualearth.net/webservices/v1/geocode", ClrNamespace="dev.virtualearth.net.webservices.v1.geocode")] +[assembly: System.Runtime.Serialization.ContractNamespaceAttribute("http://dev.virtualearth.net/webservices/v1/imagery", ClrNamespace="dev.virtualearth.net.webservices.v1.imagery")] +[assembly: System.Runtime.Serialization.ContractNamespaceAttribute("http://dev.virtualearth.net/webservices/v1/route", ClrNamespace="dev.virtualearth.net.webservices.v1.route")] +[assembly: System.Runtime.Serialization.ContractNamespaceAttribute("http://dev.virtualearth.net/webservices/v1/search", ClrNamespace="dev.virtualearth.net.webservices.v1.search")] + +namespace dev.virtualearth.net.webservices.v1.common +{ + using System.Runtime.Serialization; + + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RequestBase", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ReverseGeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRequest))] + public partial class RequestBase : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Credentials CredentialsField; + + private string CultureField; + + private dev.virtualearth.net.webservices.v1.common.ExecutionOptions ExecutionOptionsField; + + private dev.virtualearth.net.webservices.v1.common.UserProfile UserProfileField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Credentials Credentials + { + get + { + return this.CredentialsField; + } + set + { + this.CredentialsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Culture + { + get + { + return this.CultureField; + } + set + { + this.CultureField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.ExecutionOptions ExecutionOptions + { + get + { + return this.ExecutionOptionsField; + } + set + { + this.ExecutionOptionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.UserProfile UserProfile + { + get + { + return this.UserProfileField; + } + set + { + this.UserProfileField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Credentials", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Credentials : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string ApplicationIdField; + + private string TokenField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ApplicationId + { + get + { + return this.ApplicationIdField; + } + set + { + this.ApplicationIdField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Token + { + get + { + return this.TokenField; + } + set + { + this.TokenField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ExecutionOptions", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class ExecutionOptions : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private bool SuppressFaultsField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool SuppressFaults + { + get + { + return this.SuppressFaultsField; + } + set + { + this.SuppressFaultsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="UserProfile", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class UserProfile : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Heading CurrentHeadingField; + + private dev.virtualearth.net.webservices.v1.common.UserLocation CurrentLocationField; + + private dev.virtualearth.net.webservices.v1.common.DeviceType DeviceTypeField; + + private dev.virtualearth.net.webservices.v1.common.DistanceUnit DistanceUnitField; + + private string IPAddressField; + + private dev.virtualearth.net.webservices.v1.common.ShapeBase MapViewField; + + private dev.virtualearth.net.webservices.v1.common.SizeOfint ScreenSizeField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Heading CurrentHeading + { + get + { + return this.CurrentHeadingField; + } + set + { + this.CurrentHeadingField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.UserLocation CurrentLocation + { + get + { + return this.CurrentLocationField; + } + set + { + this.CurrentLocationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.DeviceType DeviceType + { + get + { + return this.DeviceTypeField; + } + set + { + this.DeviceTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.DistanceUnit DistanceUnit + { + get + { + return this.DistanceUnitField; + } + set + { + this.DistanceUnitField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string IPAddress + { + get + { + return this.IPAddressField; + } + set + { + this.IPAddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.ShapeBase MapView + { + get + { + return this.MapViewField; + } + set + { + this.MapViewField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.SizeOfint ScreenSize + { + get + { + return this.ScreenSizeField; + } + set + { + this.ScreenSizeField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Heading", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Heading : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private double OrientationField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Orientation + { + get + { + return this.OrientationField; + } + set + { + this.OrientationField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="UserLocation", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class UserLocation : dev.virtualearth.net.webservices.v1.common.Location + { + + private dev.virtualearth.net.webservices.v1.common.Confidence ConfidenceField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Confidence Confidence + { + get + { + return this.ConfidenceField; + } + set + { + this.ConfidenceField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ShapeBase", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Rectangle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Polygon))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Circle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchPoint))] + public partial class ShapeBase : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SizeOfint", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class SizeOfint : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private int HeightField; + + private int WidthField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int Height + { + get + { + return this.HeightField; + } + set + { + this.HeightField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int Width + { + get + { + return this.WidthField; + } + set + { + this.WidthField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="DeviceType", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum DeviceType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Desktop = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Mobile = 1, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="DistanceUnit", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum DistanceUnit : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Kilometer = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Mile = 1, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Location", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserLocation))] + public partial class Location : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private double AltitudeField; + + private double LatitudeField; + + private double LongitudeField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Altitude + { + get + { + return this.AltitudeField; + } + set + { + this.AltitudeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Latitude + { + get + { + return this.LatitudeField; + } + set + { + this.LatitudeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Longitude + { + get + { + return this.LongitudeField; + } + set + { + this.LongitudeField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="GeocodeLocation", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class GeocodeLocation : dev.virtualearth.net.webservices.v1.common.Location + { + + private string CalculationMethodField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CalculationMethod + { + get + { + return this.CalculationMethodField; + } + set + { + this.CalculationMethodField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Confidence", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum Confidence : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + High = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Medium = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Low = 2, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Rectangle", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Rectangle : dev.virtualearth.net.webservices.v1.common.ShapeBase + { + + private dev.virtualearth.net.webservices.v1.common.Location NortheastField; + + private dev.virtualearth.net.webservices.v1.common.Location SouthwestField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Northeast + { + get + { + return this.NortheastField; + } + set + { + this.NortheastField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Southwest + { + get + { + return this.SouthwestField; + } + set + { + this.SouthwestField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Polygon", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Polygon : dev.virtualearth.net.webservices.v1.common.ShapeBase + { + + private dev.virtualearth.net.webservices.v1.common.Location[] VerticesField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location[] Vertices + { + get + { + return this.VerticesField; + } + set + { + this.VerticesField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Circle", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Circle : dev.virtualearth.net.webservices.v1.common.ShapeBase + { + + private dev.virtualearth.net.webservices.v1.common.Location CenterField; + + private dev.virtualearth.net.webservices.v1.common.DistanceUnit DistanceUnitField; + + private double RadiusField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Center + { + get + { + return this.CenterField; + } + set + { + this.CenterField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.DistanceUnit DistanceUnit + { + get + { + return this.DistanceUnitField; + } + set + { + this.DistanceUnitField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Radius + { + get + { + return this.RadiusField; + } + set + { + this.RadiusField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Address", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Address : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string AddressLineField; + + private string AdminDistrictField; + + private string CountryRegionField; + + private string DistrictField; + + private string FormattedAddressField; + + private string LocalityField; + + private string PostalCodeField; + + private string PostalTownField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AddressLine + { + get + { + return this.AddressLineField; + } + set + { + this.AddressLineField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string AdminDistrict + { + get + { + return this.AdminDistrictField; + } + set + { + this.AdminDistrictField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CountryRegion + { + get + { + return this.CountryRegionField; + } + set + { + this.CountryRegionField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string District + { + get + { + return this.DistrictField; + } + set + { + this.DistrictField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FormattedAddress + { + get + { + return this.FormattedAddressField; + } + set + { + this.FormattedAddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Locality + { + get + { + return this.LocalityField; + } + set + { + this.LocalityField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostalCode + { + get + { + return this.PostalCodeField; + } + set + { + this.PostalCodeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PostalTown + { + get + { + return this.PostalTownField; + } + set + { + this.PostalTownField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MapStyle", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum MapStyle : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Road = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Aerial = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + AerialWithLabels = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Birdseye = 3, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BirdseyeWithLabels = 4, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="UriScheme", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum UriScheme : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Http = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Https = 1, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Pushpin", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class Pushpin : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string IconStyleField; + + private string LabelField; + + private dev.virtualearth.net.webservices.v1.common.Location LocationField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string IconStyle + { + get + { + return this.IconStyleField; + } + set + { + this.IconStyleField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Label + { + get + { + return this.LabelField; + } + set + { + this.LabelField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Location + { + get + { + return this.LocationField; + } + set + { + this.LocationField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageType", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum ImageType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Default = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Png = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Jpeg = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Gif = 3, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="FilterExpressionBase", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpression))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionClause))] + public partial class FilterExpressionBase : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="FilterExpression", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.ListingType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SortOrder))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.QuerySuggestion))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultSet[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultSet))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRegion[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRegion))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.AvailableFilter[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.AvailableFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.ValueListFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Neighborhood))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.FilterValue))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Category))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.RangeFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategoryCount[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategoryCount))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Parse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.LocationData))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CommunityContentSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.BusinessSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Category[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategorySpecificPropertySet))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Neighborhood[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.PersonSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(object[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(string[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RequestBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Credentials))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ExecutionOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserProfile))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Heading))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Location))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Confidence))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.DeviceType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.DistanceUnit))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ShapeBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Rectangle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Polygon))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Location[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Circle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.SizeOfint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.LogicalOperator))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.CompareOperator))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionClause))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.AuthenticationResultCode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseStatusCode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Address))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.FilterBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.FilterBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ConfidenceFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ReverseGeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeResult[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UriScheme))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.MapStyle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RangeOfint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RangeOfdateTime))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ImageType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Pushpin[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Pushpin))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryProvider[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryProvider))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.CoverageArea[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.CoverageArea))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataBirdseyeResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchPoint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.TravelMode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteOptimization))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RoutePathType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.TrafficUsage))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.Waypoint[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.Waypoint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteLeg[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteLeg))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItem[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItem))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHint[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHintType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ManeuverType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteSummary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryWarningSeverity))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryWarningType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RoutePath))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResult[]))] + public partial class FilterExpression : dev.virtualearth.net.webservices.v1.common.FilterExpressionBase + { + + private dev.virtualearth.net.webservices.v1.common.CompareOperator CompareOperatorField; + + private object FilterValueField; + + private int PropertyIdField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.CompareOperator CompareOperator + { + get + { + return this.CompareOperatorField; + } + set + { + this.CompareOperatorField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public object FilterValue + { + get + { + return this.FilterValueField; + } + set + { + this.FilterValueField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int PropertyId + { + get + { + return this.PropertyIdField; + } + set + { + this.PropertyIdField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="FilterExpressionClause", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class FilterExpressionClause : dev.virtualearth.net.webservices.v1.common.FilterExpressionBase + { + + private dev.virtualearth.net.webservices.v1.common.FilterExpressionBase[] ExpressionsField; + + private dev.virtualearth.net.webservices.v1.common.LogicalOperator LogicalOperatorField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.FilterExpressionBase[] Expressions + { + get + { + return this.ExpressionsField; + } + set + { + this.ExpressionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.LogicalOperator LogicalOperator + { + get + { + return this.LogicalOperatorField; + } + set + { + this.LogicalOperatorField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="LogicalOperator", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum LogicalOperator : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + And = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Or = 1, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="CompareOperator", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum CompareOperator : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Equals = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + GreaterThan = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + GreaterThanOrEquals = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + LessThan = 3, + + [System.Runtime.Serialization.EnumMemberAttribute()] + LessThanOrEquals = 4, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ResponseBase", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResponse))] + public partial class ResponseBase : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private System.Uri BrandLogoUriField; + + private dev.virtualearth.net.webservices.v1.common.ResponseSummary ResponseSummaryField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Uri BrandLogoUri + { + get + { + return this.BrandLogoUriField; + } + set + { + this.BrandLogoUriField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.ResponseSummary ResponseSummary + { + get + { + return this.ResponseSummaryField; + } + set + { + this.ResponseSummaryField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class ResponseSummary : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.AuthenticationResultCode AuthenticationResultCodeField; + + private string CopyrightField; + + private string FaultReasonField; + + private dev.virtualearth.net.webservices.v1.common.ResponseStatusCode StatusCodeField; + + private string TraceIdField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.AuthenticationResultCode AuthenticationResultCode + { + get + { + return this.AuthenticationResultCodeField; + } + set + { + this.AuthenticationResultCodeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Copyright + { + get + { + return this.CopyrightField; + } + set + { + this.CopyrightField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FaultReason + { + get + { + return this.FaultReasonField; + } + set + { + this.FaultReasonField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.ResponseStatusCode StatusCode + { + get + { + return this.StatusCodeField; + } + set + { + this.StatusCodeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string TraceId + { + get + { + return this.TraceIdField; + } + set + { + this.TraceIdField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="AuthenticationResultCode", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum AuthenticationResultCode : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + None = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + NoCredentials = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + ValidCredentials = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + InvalidCredentials = 3, + + [System.Runtime.Serialization.EnumMemberAttribute()] + CredentialsExpired = 4, + + [System.Runtime.Serialization.EnumMemberAttribute()] + NotAuthorized = 7, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ResponseStatusCode", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public enum ResponseStatusCode : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Success = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BadRequest = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + ServerError = 2, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="GeocodeResult", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class GeocodeResult : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Address AddressField; + + private dev.virtualearth.net.webservices.v1.common.Rectangle BestViewField; + + private dev.virtualearth.net.webservices.v1.common.Confidence ConfidenceField; + + private string DisplayNameField; + + private string EntityTypeField; + + private dev.virtualearth.net.webservices.v1.common.GeocodeLocation[] LocationsField; + + private string[] MatchCodesField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Address Address + { + get + { + return this.AddressField; + } + set + { + this.AddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Rectangle BestView + { + get + { + return this.BestViewField; + } + set + { + this.BestViewField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Confidence Confidence + { + get + { + return this.ConfidenceField; + } + set + { + this.ConfidenceField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string DisplayName + { + get + { + return this.DisplayNameField; + } + set + { + this.DisplayNameField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string EntityType + { + get + { + return this.EntityTypeField; + } + set + { + this.EntityTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.GeocodeLocation[] Locations + { + get + { + return this.LocationsField; + } + set + { + this.LocationsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string[] MatchCodes + { + get + { + return this.MatchCodesField; + } + set + { + this.MatchCodesField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RangeOfint", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class RangeOfint : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private int FromField; + + private int ToField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int From + { + get + { + return this.FromField; + } + set + { + this.FromField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int To + { + get + { + return this.ToField; + } + set + { + this.ToField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RangeOfdateTime", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + public partial class RangeOfdateTime : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private System.DateTime FromField; + + private System.DateTime ToField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.DateTime From + { + get + { + return this.FromField; + } + set + { + this.FromField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.DateTime To + { + get + { + return this.ToField; + } + set + { + this.ToField = value; + } + } + } +} +namespace dev.virtualearth.net.webservices.v1.geocode +{ + using System.Runtime.Serialization; + + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="GeocodeRequest", Namespace="http://dev.virtualearth.net/webservices/v1/geocode")] + public partial class GeocodeRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private dev.virtualearth.net.webservices.v1.common.Address AddressField; + + private dev.virtualearth.net.webservices.v1.geocode.GeocodeOptions OptionsField; + + private string QueryField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Address Address + { + get + { + return this.AddressField; + } + set + { + this.AddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.geocode.GeocodeOptions Options + { + get + { + return this.OptionsField; + } + set + { + this.OptionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Query + { + get + { + return this.QueryField; + } + set + { + this.QueryField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ReverseGeocodeRequest", Namespace="http://dev.virtualearth.net/webservices/v1/geocode")] + public partial class ReverseGeocodeRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private dev.virtualearth.net.webservices.v1.common.Location LocationField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Location + { + get + { + return this.LocationField; + } + set + { + this.LocationField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="GeocodeOptions", Namespace="http://dev.virtualearth.net/webservices/v1/geocode")] + public partial class GeocodeOptions : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private System.Nullable CountField; + + private dev.virtualearth.net.webservices.v1.geocode.FilterBase[] FiltersField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Count + { + get + { + return this.CountField; + } + set + { + this.CountField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.geocode.FilterBase[] Filters + { + get + { + return this.FiltersField; + } + set + { + this.FiltersField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="FilterBase", Namespace="http://dev.virtualearth.net/webservices/v1/geocode")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ConfidenceFilter))] + public partial class FilterBase : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ConfidenceFilter", Namespace="http://dev.virtualearth.net/webservices/v1/geocode")] + public partial class ConfidenceFilter : dev.virtualearth.net.webservices.v1.geocode.FilterBase + { + + private dev.virtualearth.net.webservices.v1.common.Confidence MinimumConfidenceField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Confidence MinimumConfidence + { + get + { + return this.MinimumConfidenceField; + } + set + { + this.MinimumConfidenceField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="GeocodeResponse", Namespace="http://dev.virtualearth.net/webservices/v1/geocode")] + public partial class GeocodeResponse : dev.virtualearth.net.webservices.v1.common.ResponseBase + { + + private dev.virtualearth.net.webservices.v1.common.GeocodeResult[] ResultsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.GeocodeResult[] Results + { + get + { + return this.ResultsField; + } + set + { + this.ResultsField = value; + } + } + } +} +namespace dev.virtualearth.net.webservices.v1.imagery +{ + using System.Runtime.Serialization; + + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageryMetadataRequest", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class ImageryMetadataRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataOptions OptionsField; + + private dev.virtualearth.net.webservices.v1.common.MapStyle StyleField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataOptions Options + { + get + { + return this.OptionsField; + } + set + { + this.OptionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.MapStyle Style + { + get + { + return this.StyleField; + } + set + { + this.StyleField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MapUriRequest", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class MapUriRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private dev.virtualearth.net.webservices.v1.common.Location CenterField; + + private dev.virtualearth.net.webservices.v1.common.Location MajorRoutesDestinationField; + + private dev.virtualearth.net.webservices.v1.imagery.MapUriOptions OptionsField; + + private dev.virtualearth.net.webservices.v1.common.Pushpin[] PushpinsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Center + { + get + { + return this.CenterField; + } + set + { + this.CenterField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location MajorRoutesDestination + { + get + { + return this.MajorRoutesDestinationField; + } + set + { + this.MajorRoutesDestinationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.imagery.MapUriOptions Options + { + get + { + return this.OptionsField; + } + set + { + this.OptionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Pushpin[] Pushpins + { + get + { + return this.PushpinsField; + } + set + { + this.PushpinsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageryMetadataOptions", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class ImageryMetadataOptions : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Heading HeadingField; + + private dev.virtualearth.net.webservices.v1.common.Location LocationField; + + private bool ReturnImageryProvidersField; + + private dev.virtualearth.net.webservices.v1.common.UriScheme UriSchemeField; + + private System.Nullable ZoomLevelField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Heading Heading + { + get + { + return this.HeadingField; + } + set + { + this.HeadingField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Location + { + get + { + return this.LocationField; + } + set + { + this.LocationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool ReturnImageryProviders + { + get + { + return this.ReturnImageryProvidersField; + } + set + { + this.ReturnImageryProvidersField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.UriScheme UriScheme + { + get + { + return this.UriSchemeField; + } + set + { + this.UriSchemeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ZoomLevel + { + get + { + return this.ZoomLevelField; + } + set + { + this.ZoomLevelField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MapUriOptions", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class MapUriOptions : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string[] DisplayLayersField; + + private dev.virtualearth.net.webservices.v1.common.SizeOfint ImageSizeField; + + private dev.virtualearth.net.webservices.v1.common.ImageType ImageTypeField; + + private bool PreventIconCollisionField; + + private dev.virtualearth.net.webservices.v1.common.MapStyle StyleField; + + private dev.virtualearth.net.webservices.v1.common.UriScheme UriSchemeField; + + private System.Nullable ZoomLevelField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string[] DisplayLayers + { + get + { + return this.DisplayLayersField; + } + set + { + this.DisplayLayersField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.SizeOfint ImageSize + { + get + { + return this.ImageSizeField; + } + set + { + this.ImageSizeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.ImageType ImageType + { + get + { + return this.ImageTypeField; + } + set + { + this.ImageTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool PreventIconCollision + { + get + { + return this.PreventIconCollisionField; + } + set + { + this.PreventIconCollisionField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.MapStyle Style + { + get + { + return this.StyleField; + } + set + { + this.StyleField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.UriScheme UriScheme + { + get + { + return this.UriSchemeField; + } + set + { + this.UriSchemeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable ZoomLevel + { + get + { + return this.ZoomLevelField; + } + set + { + this.ZoomLevelField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageryMetadataResponse", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class ImageryMetadataResponse : dev.virtualearth.net.webservices.v1.common.ResponseBase + { + + private dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult[] ResultsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult[] Results + { + get + { + return this.ResultsField; + } + set + { + this.ResultsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageryMetadataResult", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataBirdseyeResult))] + public partial class ImageryMetadataResult : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.SizeOfint ImageSizeField; + + private string ImageUriField; + + private string[] ImageUriSubdomainsField; + + private dev.virtualearth.net.webservices.v1.imagery.ImageryProvider[] ImageryProvidersField; + + private dev.virtualearth.net.webservices.v1.common.RangeOfdateTime VintageField; + + private dev.virtualearth.net.webservices.v1.common.RangeOfint ZoomRangeField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.SizeOfint ImageSize + { + get + { + return this.ImageSizeField; + } + set + { + this.ImageSizeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ImageUri + { + get + { + return this.ImageUriField; + } + set + { + this.ImageUriField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string[] ImageUriSubdomains + { + get + { + return this.ImageUriSubdomainsField; + } + set + { + this.ImageUriSubdomainsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.imagery.ImageryProvider[] ImageryProviders + { + get + { + return this.ImageryProvidersField; + } + set + { + this.ImageryProvidersField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.RangeOfdateTime Vintage + { + get + { + return this.VintageField; + } + set + { + this.VintageField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.RangeOfint ZoomRange + { + get + { + return this.ZoomRangeField; + } + set + { + this.ZoomRangeField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageryProvider", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class ImageryProvider : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string AttributionField; + + private dev.virtualearth.net.webservices.v1.imagery.CoverageArea[] CoverageAreasField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Attribution + { + get + { + return this.AttributionField; + } + set + { + this.AttributionField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.imagery.CoverageArea[] CoverageAreas + { + get + { + return this.CoverageAreasField; + } + set + { + this.CoverageAreasField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="CoverageArea", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class CoverageArea : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Rectangle BoundingRectangleField; + + private dev.virtualearth.net.webservices.v1.common.RangeOfint ZoomRangeField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Rectangle BoundingRectangle + { + get + { + return this.BoundingRectangleField; + } + set + { + this.BoundingRectangleField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.RangeOfint ZoomRange + { + get + { + return this.ZoomRangeField; + } + set + { + this.ZoomRangeField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ImageryMetadataBirdseyeResult", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class ImageryMetadataBirdseyeResult : dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult + { + + private dev.virtualearth.net.webservices.v1.common.Heading HeadingField; + + private int TilesXField; + + private int TilesYField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Heading Heading + { + get + { + return this.HeadingField; + } + set + { + this.HeadingField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int TilesX + { + get + { + return this.TilesXField; + } + set + { + this.TilesXField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int TilesY + { + get + { + return this.TilesYField; + } + set + { + this.TilesYField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MapUriResponse", Namespace="http://dev.virtualearth.net/webservices/v1/imagery")] + public partial class MapUriResponse : dev.virtualearth.net.webservices.v1.common.ResponseBase + { + + private string UriField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Uri + { + get + { + return this.UriField; + } + set + { + this.UriField = value; + } + } + } +} +namespace dev.virtualearth.net.webservices.v1.route +{ + using System.Runtime.Serialization; + + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteRequest", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class RouteRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private dev.virtualearth.net.webservices.v1.route.RouteOptions OptionsField; + + private dev.virtualearth.net.webservices.v1.route.Waypoint[] WaypointsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteOptions Options + { + get + { + return this.OptionsField; + } + set + { + this.OptionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.Waypoint[] Waypoints + { + get + { + return this.WaypointsField; + } + set + { + this.WaypointsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MajorRoutesRequest", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class MajorRoutesRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private dev.virtualearth.net.webservices.v1.route.Waypoint DestinationField; + + private dev.virtualearth.net.webservices.v1.route.MajorRoutesOptions OptionsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.Waypoint Destination + { + get + { + return this.DestinationField; + } + set + { + this.DestinationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.MajorRoutesOptions Options + { + get + { + return this.OptionsField; + } + set + { + this.OptionsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteOptions", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesOptions))] + public partial class RouteOptions : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.route.TravelMode ModeField; + + private dev.virtualearth.net.webservices.v1.route.RouteOptimization OptimizationField; + + private dev.virtualearth.net.webservices.v1.route.RoutePathType RoutePathTypeField; + + private dev.virtualearth.net.webservices.v1.route.TrafficUsage TrafficUsageField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.TravelMode Mode + { + get + { + return this.ModeField; + } + set + { + this.ModeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteOptimization Optimization + { + get + { + return this.OptimizationField; + } + set + { + this.OptimizationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RoutePathType RoutePathType + { + get + { + return this.RoutePathTypeField; + } + set + { + this.RoutePathTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.TrafficUsage TrafficUsage + { + get + { + return this.TrafficUsageField; + } + set + { + this.TrafficUsageField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Waypoint", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class Waypoint : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string DescriptionField; + + private dev.virtualearth.net.webservices.v1.common.Location LocationField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Description + { + get + { + return this.DescriptionField; + } + set + { + this.DescriptionField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Location + { + get + { + return this.LocationField; + } + set + { + this.LocationField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MajorRoutesOptions", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class MajorRoutesOptions : dev.virtualearth.net.webservices.v1.route.RouteOptions + { + + private bool ReturnRoutesField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool ReturnRoutes + { + get + { + return this.ReturnRoutesField; + } + set + { + this.ReturnRoutesField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="TravelMode", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum TravelMode : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Driving = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Walking = 1, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteOptimization", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum RouteOptimization : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + MinimizeTime = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + MinimizeDistance = 1, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RoutePathType", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum RoutePathType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + None = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Points = 1, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="TrafficUsage", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum TrafficUsage : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + None = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TrafficBasedTime = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TrafficBasedRouteAndTime = 2, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteResponse", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class RouteResponse : dev.virtualearth.net.webservices.v1.common.ResponseBase + { + + private dev.virtualearth.net.webservices.v1.route.RouteResult ResultField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteResult Result + { + get + { + return this.ResultField; + } + set + { + this.ResultField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteResult", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class RouteResult : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.route.RouteLeg[] LegsField; + + private dev.virtualearth.net.webservices.v1.route.RoutePath RoutePathField; + + private dev.virtualearth.net.webservices.v1.route.RouteSummary SummaryField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteLeg[] Legs + { + get + { + return this.LegsField; + } + set + { + this.LegsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RoutePath RoutePath + { + get + { + return this.RoutePathField; + } + set + { + this.RoutePathField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteSummary Summary + { + get + { + return this.SummaryField; + } + set + { + this.SummaryField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteLeg", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class RouteLeg : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Location ActualEndField; + + private dev.virtualearth.net.webservices.v1.common.Location ActualStartField; + + private dev.virtualearth.net.webservices.v1.route.ItineraryItem[] ItineraryField; + + private dev.virtualearth.net.webservices.v1.route.RouteSummary SummaryField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location ActualEnd + { + get + { + return this.ActualEndField; + } + set + { + this.ActualEndField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location ActualStart + { + get + { + return this.ActualStartField; + } + set + { + this.ActualStartField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ItineraryItem[] Itinerary + { + get + { + return this.ItineraryField; + } + set + { + this.ItineraryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteSummary Summary + { + get + { + return this.SummaryField; + } + set + { + this.SummaryField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ItineraryItem", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class ItineraryItem : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string CompassDirectionField; + + private dev.virtualearth.net.webservices.v1.route.ItineraryItemHint[] HintsField; + + private dev.virtualearth.net.webservices.v1.common.Location LocationField; + + private dev.virtualearth.net.webservices.v1.route.ManeuverType ManeuverTypeField; + + private dev.virtualearth.net.webservices.v1.route.RouteSummary SummaryField; + + private string TextField; + + private dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning[] WarningsField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CompassDirection + { + get + { + return this.CompassDirectionField; + } + set + { + this.CompassDirectionField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ItineraryItemHint[] Hints + { + get + { + return this.HintsField; + } + set + { + this.HintsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Location + { + get + { + return this.LocationField; + } + set + { + this.LocationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ManeuverType ManeuverType + { + get + { + return this.ManeuverTypeField; + } + set + { + this.ManeuverTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteSummary Summary + { + get + { + return this.SummaryField; + } + set + { + this.SummaryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Text + { + get + { + return this.TextField; + } + set + { + this.TextField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning[] Warnings + { + get + { + return this.WarningsField; + } + set + { + this.WarningsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ItineraryItemHint", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class ItineraryItemHint : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.route.ItineraryItemHintType HintTypeField; + + private string TextField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ItineraryItemHintType HintType + { + get + { + return this.HintTypeField; + } + set + { + this.HintTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Text + { + get + { + return this.TextField; + } + set + { + this.TextField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ItineraryItemHintType", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum ItineraryItemHintType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + PreviousIntersection = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + NextIntersection = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Landmark = 2, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ManeuverType", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum ManeuverType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + None = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Unknown = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + DepartStart = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + DepartIntermediateStop = 3, + + [System.Runtime.Serialization.EnumMemberAttribute()] + DepartIntermediateStopReturning = 4, + + [System.Runtime.Serialization.EnumMemberAttribute()] + ArriveFinish = 5, + + [System.Runtime.Serialization.EnumMemberAttribute()] + ArriveIntermediateStop = 6, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnLeft = 7, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnRight = 8, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnBack = 9, + + [System.Runtime.Serialization.EnumMemberAttribute()] + UTurn = 10, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnToStayLeft = 11, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnToStayRight = 12, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearLeft = 13, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearRight = 14, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepToStayLeft = 15, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepToStayRight = 16, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepToStayStraight = 17, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepLeft = 18, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepRight = 19, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepStraight = 20, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Take = 21, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TakeRampLeft = 22, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TakeRampRight = 23, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TakeRampStraight = 24, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepOnrampLeft = 25, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepOnrampRight = 26, + + [System.Runtime.Serialization.EnumMemberAttribute()] + KeepOnrampStraight = 27, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Merge = 28, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Continue = 29, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RoadNameChange = 30, + + [System.Runtime.Serialization.EnumMemberAttribute()] + EnterRoundabout = 31, + + [System.Runtime.Serialization.EnumMemberAttribute()] + ExitRoundabout = 32, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnRightThenTurnRight = 33, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnRightThenTurnLeft = 34, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnRightThenBearRight = 35, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnRightThenBearLeft = 36, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnLeftThenTurnLeft = 37, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnLeftThenTurnRight = 38, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnLeftThenBearLeft = 39, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnLeftThenBearRight = 40, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearRightThenTurnRight = 41, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearRightThenTurnLeft = 42, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearRightThenBearRight = 43, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearRightThenBearLeft = 44, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearLeftThenTurnLeft = 45, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearLeftThenTurnRight = 46, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearLeftThenBearRight = 47, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearLeftThenBearLeft = 48, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RampThenHighwayRight = 49, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RampThenHighwayLeft = 50, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RampToHighwayStraight = 51, + + [System.Runtime.Serialization.EnumMemberAttribute()] + EnterThenExitRoundabout = 52, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearThenMerge = 53, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TurnThenMerge = 54, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BearThenKeep = 55, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Transfer = 56, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Wait = 57, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TakeTransit = 58, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Walk = 59, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RouteSummary", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class RouteSummary : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Rectangle BoundingRectangleField; + + private double DistanceField; + + private long TimeInSecondsField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Rectangle BoundingRectangle + { + get + { + return this.BoundingRectangleField; + } + set + { + this.BoundingRectangleField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Distance + { + get + { + return this.DistanceField; + } + set + { + this.DistanceField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public long TimeInSeconds + { + get + { + return this.TimeInSecondsField; + } + set + { + this.TimeInSecondsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ItineraryItemWarning", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class ItineraryItemWarning : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.route.ItineraryWarningSeverity SeverityField; + + private string TextField; + + private dev.virtualearth.net.webservices.v1.route.ItineraryWarningType WarningTypeField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ItineraryWarningSeverity Severity + { + get + { + return this.SeverityField; + } + set + { + this.SeverityField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Text + { + get + { + return this.TextField; + } + set + { + this.TextField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.ItineraryWarningType WarningType + { + get + { + return this.WarningTypeField; + } + set + { + this.WarningTypeField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ItineraryWarningSeverity", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum ItineraryWarningSeverity : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + None = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + LowImpact = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Minor = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Moderate = 3, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Serious = 4, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ItineraryWarningType", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public enum ItineraryWarningType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Accident = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + AdminDivisionChange = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + BlockedRoad = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + CheckTimetable = 3, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Congestion = 4, + + [System.Runtime.Serialization.EnumMemberAttribute()] + CountryChange = 5, + + [System.Runtime.Serialization.EnumMemberAttribute()] + DisabledVehicle = 6, + + [System.Runtime.Serialization.EnumMemberAttribute()] + GateAccess = 7, + + [System.Runtime.Serialization.EnumMemberAttribute()] + GetOffTransit = 8, + + [System.Runtime.Serialization.EnumMemberAttribute()] + GetOnTransit = 9, + + [System.Runtime.Serialization.EnumMemberAttribute()] + IllegalUTurn = 10, + + [System.Runtime.Serialization.EnumMemberAttribute()] + MassTransit = 11, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Miscellaneous = 12, + + [System.Runtime.Serialization.EnumMemberAttribute()] + NoIncident = 13, + + [System.Runtime.Serialization.EnumMemberAttribute()] + None = 14, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Other = 15, + + [System.Runtime.Serialization.EnumMemberAttribute()] + OtherNews = 16, + + [System.Runtime.Serialization.EnumMemberAttribute()] + OtherTrafficIncidents = 17, + + [System.Runtime.Serialization.EnumMemberAttribute()] + PlannedEvent = 18, + + [System.Runtime.Serialization.EnumMemberAttribute()] + PrivateRoad = 19, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RestrictedTurn = 20, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RoadClosures = 21, + + [System.Runtime.Serialization.EnumMemberAttribute()] + RoadHazard = 22, + + [System.Runtime.Serialization.EnumMemberAttribute()] + ScheduledConstruction = 23, + + [System.Runtime.Serialization.EnumMemberAttribute()] + SeasonalClosures = 24, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Tollbooth = 25, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TollRoad = 26, + + [System.Runtime.Serialization.EnumMemberAttribute()] + TrafficFlow = 27, + + [System.Runtime.Serialization.EnumMemberAttribute()] + UnpavedRoad = 28, + + [System.Runtime.Serialization.EnumMemberAttribute()] + UnscheduledConstruction = 29, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Weather = 30, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RoutePath", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class RoutePath : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Location[] PointsField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location[] Points + { + get + { + return this.PointsField; + } + set + { + this.PointsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="MajorRoutesResponse", Namespace="http://dev.virtualearth.net/webservices/v1/route")] + public partial class MajorRoutesResponse : dev.virtualearth.net.webservices.v1.common.ResponseBase + { + + private dev.virtualearth.net.webservices.v1.route.RouteResult[] RoutesField; + + private dev.virtualearth.net.webservices.v1.route.Waypoint[] StartingPointsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.RouteResult[] Routes + { + get + { + return this.RoutesField; + } + set + { + this.RoutesField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.route.Waypoint[] StartingPoints + { + get + { + return this.StartingPointsField; + } + set + { + this.StartingPointsField = value; + } + } + } +} +namespace dev.virtualearth.net.webservices.v1.search +{ + using System.Runtime.Serialization; + + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchRequest", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class SearchRequest : dev.virtualearth.net.webservices.v1.common.RequestBase + { + + private string QueryField; + + private dev.virtualearth.net.webservices.v1.search.SearchOptions SearchOptionsField; + + private dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery StructuredQueryField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Query + { + get + { + return this.QueryField; + } + set + { + this.QueryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.SearchOptions SearchOptions + { + get + { + return this.SearchOptionsField; + } + set + { + this.SearchOptionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery StructuredQuery + { + get + { + return this.StructuredQueryField; + } + set + { + this.StructuredQueryField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchOptions", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class SearchOptions : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private System.Nullable AutocorrectQueryField; + + private System.Nullable CountField; + + private dev.virtualearth.net.webservices.v1.common.FilterExpressionBase FiltersField; + + private dev.virtualearth.net.webservices.v1.search.ListingType ListingTypeField; + + private bool ParseOnlyField; + + private System.Nullable RadiusField; + + private dev.virtualearth.net.webservices.v1.search.SortOrder SortOrderField; + + private int StartingIndexField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable AutocorrectQuery + { + get + { + return this.AutocorrectQueryField; + } + set + { + this.AutocorrectQueryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Count + { + get + { + return this.CountField; + } + set + { + this.CountField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.FilterExpressionBase Filters + { + get + { + return this.FiltersField; + } + set + { + this.FiltersField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.ListingType ListingType + { + get + { + return this.ListingTypeField; + } + set + { + this.ListingTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool ParseOnly + { + get + { + return this.ParseOnlyField; + } + set + { + this.ParseOnlyField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Nullable Radius + { + get + { + return this.RadiusField; + } + set + { + this.RadiusField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.SortOrder SortOrder + { + get + { + return this.SortOrderField; + } + set + { + this.SortOrderField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int StartingIndex + { + get + { + return this.StartingIndexField; + } + set + { + this.StartingIndexField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="StructuredSearchQuery", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class StructuredSearchQuery : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string KeywordField; + + private string LocationField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Keyword + { + get + { + return this.KeywordField; + } + set + { + this.KeywordField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Location + { + get + { + return this.LocationField; + } + set + { + this.LocationField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchPoint", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class SearchPoint : dev.virtualearth.net.webservices.v1.common.ShapeBase + { + + private dev.virtualearth.net.webservices.v1.common.Location PointField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Location Point + { + get + { + return this.PointField; + } + set + { + this.PointField = value; + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ListingType", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public enum ListingType : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Business = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + CommunityContent = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Person = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Unknown = 3, + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SortOrder", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public enum SortOrder : int + { + + [System.Runtime.Serialization.EnumMemberAttribute()] + Relevance = 0, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Distance = 1, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Rating = 2, + + [System.Runtime.Serialization.EnumMemberAttribute()] + Popularity = 3, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchResponse", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class SearchResponse : dev.virtualearth.net.webservices.v1.common.ResponseBase + { + + private dev.virtualearth.net.webservices.v1.search.QuerySuggestion QuerySuggestionField; + + private dev.virtualearth.net.webservices.v1.search.SearchResultSet[] ResultSetsField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.QuerySuggestion QuerySuggestion + { + get + { + return this.QuerySuggestionField; + } + set + { + this.QuerySuggestionField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.SearchResultSet[] ResultSets + { + get + { + return this.ResultSetsField; + } + set + { + this.ResultSetsField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="QuerySuggestion", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class QuerySuggestion : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string QueryField; + + private dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery StructuredQueryField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Query + { + get + { + return this.QueryField; + } + set + { + this.QueryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery StructuredQuery + { + get + { + return this.StructuredQueryField; + } + set + { + this.StructuredQueryField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchResultSet", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class SearchResultSet : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.search.SearchRegion[] AlternateSearchRegionsField; + + private dev.virtualearth.net.webservices.v1.search.AvailableFilter[] AvailableFiltersField; + + private dev.virtualearth.net.webservices.v1.search.CategoryCount[] CategoryCountsField; + + private int EstimatedMatchesField; + + private string ListingTypeField; + + private dev.virtualearth.net.webservices.v1.search.Parse ParseField; + + private dev.virtualearth.net.webservices.v1.search.Category QueryCategoryField; + + private bool QueryCorrectedField; + + private dev.virtualearth.net.webservices.v1.search.SearchResultBase[] ResultsField; + + private dev.virtualearth.net.webservices.v1.search.SearchRegion SearchRegionField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.SearchRegion[] AlternateSearchRegions + { + get + { + return this.AlternateSearchRegionsField; + } + set + { + this.AlternateSearchRegionsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.AvailableFilter[] AvailableFilters + { + get + { + return this.AvailableFiltersField; + } + set + { + this.AvailableFiltersField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.CategoryCount[] CategoryCounts + { + get + { + return this.CategoryCountsField; + } + set + { + this.CategoryCountsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int EstimatedMatches + { + get + { + return this.EstimatedMatchesField; + } + set + { + this.EstimatedMatchesField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string ListingType + { + get + { + return this.ListingTypeField; + } + set + { + this.ListingTypeField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.Parse Parse + { + get + { + return this.ParseField; + } + set + { + this.ParseField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.Category QueryCategory + { + get + { + return this.QueryCategoryField; + } + set + { + this.QueryCategoryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool QueryCorrected + { + get + { + return this.QueryCorrectedField; + } + set + { + this.QueryCorrectedField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.SearchResultBase[] Results + { + get + { + return this.ResultsField; + } + set + { + this.ResultsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.SearchRegion SearchRegion + { + get + { + return this.SearchRegionField; + } + set + { + this.SearchRegionField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchRegion", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class SearchRegion : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.ShapeBase BoundingAreaField; + + private dev.virtualearth.net.webservices.v1.common.GeocodeResult GeocodeLocationField; + + private string SourceField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.ShapeBase BoundingArea + { + get + { + return this.BoundingAreaField; + } + set + { + this.BoundingAreaField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.GeocodeResult GeocodeLocation + { + get + { + return this.GeocodeLocationField; + } + set + { + this.GeocodeLocationField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Source + { + get + { + return this.SourceField; + } + set + { + this.SourceField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="AvailableFilter", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.ValueListFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.RangeFilter))] + public partial class AvailableFilter : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private int PropertyIdField; + + private string PropertyNameField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int PropertyId + { + get + { + return this.PropertyIdField; + } + set + { + this.PropertyIdField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PropertyName + { + get + { + return this.PropertyNameField; + } + set + { + this.PropertyNameField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="ValueListFilter", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.ListingType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SortOrder))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.QuerySuggestion))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultSet[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultSet))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRegion[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRegion))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.AvailableFilter[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.AvailableFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Neighborhood))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.FilterValue))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Category))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.RangeFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategoryCount[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategoryCount))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Parse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.LocationData))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CommunityContentSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.BusinessSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Category[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategorySpecificPropertySet))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Neighborhood[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.PersonSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(object[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(string[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RequestBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Credentials))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ExecutionOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserProfile))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Heading))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Location))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Confidence))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.DeviceType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.DistanceUnit))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ShapeBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Rectangle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Polygon))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Location[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Circle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.SizeOfint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.LogicalOperator))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpression))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.CompareOperator))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionClause))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.AuthenticationResultCode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseStatusCode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Address))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.FilterBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.FilterBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ConfidenceFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ReverseGeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeResult[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UriScheme))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.MapStyle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RangeOfint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RangeOfdateTime))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ImageType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Pushpin[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Pushpin))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryProvider[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryProvider))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.CoverageArea[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.CoverageArea))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataBirdseyeResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchPoint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.TravelMode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteOptimization))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RoutePathType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.TrafficUsage))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.Waypoint[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.Waypoint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteLeg[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteLeg))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItem[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItem))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHint[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHintType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ManeuverType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteSummary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryWarningSeverity))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryWarningType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RoutePath))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResult[]))] + public partial class ValueListFilter : dev.virtualearth.net.webservices.v1.search.AvailableFilter + { + + private object[] ValuesField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public object[] Values + { + get + { + return this.ValuesField; + } + set + { + this.ValuesField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Neighborhood", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class Neighborhood : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string CityField; + + private int IdField; + + private string NameField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string City + { + get + { + return this.CityField; + } + set + { + this.CityField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int Id + { + get + { + return this.IdField; + } + set + { + this.IdField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name + { + get + { + return this.NameField; + } + set + { + this.NameField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="FilterValue", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class FilterValue : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private int IdField; + + private string NameField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int Id + { + get + { + return this.IdField; + } + set + { + this.IdField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name + { + get + { + return this.NameField; + } + set + { + this.NameField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Category", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class Category : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private int IdField; + + private string NameField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int Id + { + get + { + return this.IdField; + } + set + { + this.IdField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name + { + get + { + return this.NameField; + } + set + { + this.NameField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="RangeFilter", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.ListingType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SortOrder))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.StructuredSearchQuery))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.QuerySuggestion))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultSet[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultSet))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRegion[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchRegion))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.AvailableFilter[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.AvailableFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.ValueListFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Neighborhood))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.FilterValue))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Category))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategoryCount[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategoryCount))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Parse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchResultBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.LocationData))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CommunityContentSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.BusinessSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Category[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CategorySpecificPropertySet))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.Neighborhood[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.PersonSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(object[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(string[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(System.Collections.Generic.Dictionary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RequestBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Credentials))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ExecutionOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserProfile))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Heading))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UserLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Location))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Confidence))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.DeviceType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.DistanceUnit))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ShapeBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Rectangle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Polygon))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Location[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Circle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.SizeOfint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.LogicalOperator))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpression))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.CompareOperator))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionClause))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.FilterExpressionBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.AuthenticationResultCode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseStatusCode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Address))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeLocation[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.FilterBase[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.FilterBase))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ConfidenceFilter))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.geocode.ReverseGeocodeRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.GeocodeResult[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.UriScheme))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.MapStyle))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RangeOfint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.RangeOfdateTime))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ImageType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Pushpin[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.common.Pushpin))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryProvider[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryProvider))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.CoverageArea[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.CoverageArea))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataBirdseyeResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.imagery.MapUriResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.SearchPoint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.TravelMode))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteOptimization))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RoutePathType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.TrafficUsage))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.Waypoint[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.Waypoint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteLeg[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteLeg))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItem[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItem))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHint[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHint))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemHintType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ManeuverType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteSummary))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning[]))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryItemWarning))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryWarningSeverity))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.ItineraryWarningType))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RoutePath))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesRequest))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesOptions))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.MajorRoutesResponse))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.route.RouteResult[]))] + public partial class RangeFilter : dev.virtualearth.net.webservices.v1.search.AvailableFilter + { + + private object MaximumValueField; + + private object MinimumValueField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public object MaximumValue + { + get + { + return this.MaximumValueField; + } + set + { + this.MaximumValueField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public object MinimumValue + { + get + { + return this.MinimumValueField; + } + set + { + this.MinimumValueField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="CategoryCount", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class CategoryCount : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.search.Category CategoryField; + + private int CountField; + + private System.Collections.Generic.Dictionary CountByNeighborhoodField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.Category Category + { + get + { + return this.CategoryField; + } + set + { + this.CategoryField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int Count + { + get + { + return this.CountField; + } + set + { + this.CountField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Collections.Generic.Dictionary CountByNeighborhood + { + get + { + return this.CountByNeighborhoodField; + } + set + { + this.CountByNeighborhoodField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Parse", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class Parse : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Address AddressField; + + private string KeywordField; + + private string LandmarkField; + + private string LocationSeparatorField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Address Address + { + get + { + return this.AddressField; + } + set + { + this.AddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Keyword + { + get + { + return this.KeywordField; + } + set + { + this.KeywordField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Landmark + { + get + { + return this.LandmarkField; + } + set + { + this.LandmarkField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LocationSeparator + { + get + { + return this.LocationSeparatorField; + } + set + { + this.LocationSeparatorField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="SearchResultBase", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.CommunityContentSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.BusinessSearchResult))] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(dev.virtualearth.net.webservices.v1.search.PersonSearchResult))] + public partial class SearchResultBase : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private double DistanceField; + + private string IdField; + + private dev.virtualearth.net.webservices.v1.search.LocationData LocationDataField; + + private string NameField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double Distance + { + get + { + return this.DistanceField; + } + set + { + this.DistanceField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Id + { + get + { + return this.IdField; + } + set + { + this.IdField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.LocationData LocationData + { + get + { + return this.LocationDataField; + } + set + { + this.LocationDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name + { + get + { + return this.NameField; + } + set + { + this.NameField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="LocationData", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class LocationData : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private dev.virtualearth.net.webservices.v1.common.Confidence ConfidenceField; + + private dev.virtualearth.net.webservices.v1.common.GeocodeLocation[] LocationsField; + + private string[] MatchCodesField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Confidence Confidence + { + get + { + return this.ConfidenceField; + } + set + { + this.ConfidenceField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.GeocodeLocation[] Locations + { + get + { + return this.LocationsField; + } + set + { + this.LocationsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string[] MatchCodes + { + get + { + return this.MatchCodesField; + } + set + { + this.MatchCodesField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="CommunityContentSearchResult", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class CommunityContentSearchResult : dev.virtualearth.net.webservices.v1.search.SearchResultBase + { + + private System.Collections.Generic.Dictionary AdditionalPropertiesField; + + private string DescriptionField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Collections.Generic.Dictionary AdditionalProperties + { + get + { + return this.AdditionalPropertiesField; + } + set + { + this.AdditionalPropertiesField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Description + { + get + { + return this.DescriptionField; + } + set + { + this.DescriptionField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="BusinessSearchResult", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class BusinessSearchResult : dev.virtualearth.net.webservices.v1.search.SearchResultBase + { + + private System.Collections.Generic.Dictionary AdditionalPropertiesField; + + private dev.virtualearth.net.webservices.v1.common.Address AddressField; + + private dev.virtualearth.net.webservices.v1.search.Category[] CategoriesField; + + private System.Collections.Generic.Dictionary CategorySpecificPropertiesField; + + private dev.virtualearth.net.webservices.v1.search.Neighborhood[] NeighborhoodsField; + + private string PhoneNumberField; + + private int RatingCountField; + + private int ReviewCountField; + + private double UserRatingField; + + private System.Uri WebsiteField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Collections.Generic.Dictionary AdditionalProperties + { + get + { + return this.AdditionalPropertiesField; + } + set + { + this.AdditionalPropertiesField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Address Address + { + get + { + return this.AddressField; + } + set + { + this.AddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.Category[] Categories + { + get + { + return this.CategoriesField; + } + set + { + this.CategoriesField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Collections.Generic.Dictionary CategorySpecificProperties + { + get + { + return this.CategorySpecificPropertiesField; + } + set + { + this.CategorySpecificPropertiesField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.search.Neighborhood[] Neighborhoods + { + get + { + return this.NeighborhoodsField; + } + set + { + this.NeighborhoodsField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PhoneNumber + { + get + { + return this.PhoneNumberField; + } + set + { + this.PhoneNumberField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int RatingCount + { + get + { + return this.RatingCountField; + } + set + { + this.RatingCountField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int ReviewCount + { + get + { + return this.ReviewCountField; + } + set + { + this.ReviewCountField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public double UserRating + { + get + { + return this.UserRatingField; + } + set + { + this.UserRatingField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Uri Website + { + get + { + return this.WebsiteField; + } + set + { + this.WebsiteField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="CategorySpecificPropertySet", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class CategorySpecificPropertySet : object, System.Runtime.Serialization.IExtensibleDataObject + { + + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + private string CategoryNameField; + + private System.Collections.Generic.Dictionary PropertiesField; + + public System.Runtime.Serialization.ExtensionDataObject ExtensionData + { + get + { + return this.extensionDataField; + } + set + { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string CategoryName + { + get + { + return this.CategoryNameField; + } + set + { + this.CategoryNameField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.Collections.Generic.Dictionary Properties + { + get + { + return this.PropertiesField; + } + set + { + this.PropertiesField = value; + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="PersonSearchResult", Namespace="http://dev.virtualearth.net/webservices/v1/search")] + public partial class PersonSearchResult : dev.virtualearth.net.webservices.v1.search.SearchResultBase + { + + private dev.virtualearth.net.webservices.v1.common.Address AddressField; + + private string PhoneNumberField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public dev.virtualearth.net.webservices.v1.common.Address Address + { + get + { + return this.AddressField; + } + set + { + this.AddressField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string PhoneNumber + { + get + { + return this.PhoneNumberField; + } + set + { + this.PhoneNumberField = value; + } + } + } +} + + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +[System.ServiceModel.ServiceContractAttribute(Namespace="http://dev.virtualearth.net/webservices/v1/search/contracts", ConfigurationName="ISearchService")] +public interface ISearchService +{ + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/search/contracts/ISearchService/Search" + + "", ReplyAction="http://dev.virtualearth.net/webservices/v1/search/contracts/ISearchService/Search" + + "Response")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/search/contracts/ISearchService/Search" + + "ResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.search.SearchResponse Search(dev.virtualearth.net.webservices.v1.search.SearchRequest request); +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public interface ISearchServiceChannel : ISearchService, System.ServiceModel.IClientChannel +{ +} + +[System.Diagnostics.DebuggerStepThroughAttribute()] +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public partial class SearchServiceClient : System.ServiceModel.ClientBase, ISearchService +{ + + public SearchServiceClient() + { + } + + public SearchServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) + { + } + + public SearchServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public SearchServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public SearchServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) + { + } + + public dev.virtualearth.net.webservices.v1.search.SearchResponse Search(dev.virtualearth.net.webservices.v1.search.SearchRequest request) + { + return base.Channel.Search(request); + } +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +[System.ServiceModel.ServiceContractAttribute(Namespace="http://dev.virtualearth.net/webservices/v1/geocode/contracts", ConfigurationName="IGeocodeService")] +public interface IGeocodeService +{ + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Geoc" + + "ode", ReplyAction="http://dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Geoc" + + "odeResponse")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Geoc" + + "odeResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse Geocode(dev.virtualearth.net.webservices.v1.geocode.GeocodeRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Reve" + + "rseGeocode", ReplyAction="http://dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Reve" + + "rseGeocodeResponse")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/geocode/contracts/IGeocodeService/Reve" + + "rseGeocodeResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse ReverseGeocode(dev.virtualearth.net.webservices.v1.geocode.ReverseGeocodeRequest request); +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public interface IGeocodeServiceChannel : IGeocodeService, System.ServiceModel.IClientChannel +{ +} + +[System.Diagnostics.DebuggerStepThroughAttribute()] +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public partial class GeocodeServiceClient : System.ServiceModel.ClientBase, IGeocodeService +{ + + public GeocodeServiceClient() + { + } + + public GeocodeServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) + { + } + + public GeocodeServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public GeocodeServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public GeocodeServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) + { + } + + public dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse Geocode(dev.virtualearth.net.webservices.v1.geocode.GeocodeRequest request) + { + return base.Channel.Geocode(request); + } + + public dev.virtualearth.net.webservices.v1.geocode.GeocodeResponse ReverseGeocode(dev.virtualearth.net.webservices.v1.geocode.ReverseGeocodeRequest request) + { + return base.Channel.ReverseGeocode(request); + } +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +[System.ServiceModel.ServiceContractAttribute(Namespace="http://dev.virtualearth.net/webservices/v1/imagery/contracts", ConfigurationName="IImageryService")] +public interface IImageryService +{ + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/imagery/contracts/IImageryService/GetI" + + "mageryMetadata", ReplyAction="http://dev.virtualearth.net/webservices/v1/imagery/contracts/IImageryService/GetI" + + "mageryMetadataResponse")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/imagery/contracts/IImageryService/GetI" + + "mageryMetadataResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResponse GetImageryMetadata(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/imagery/contracts/IImageryService/GetM" + + "apUri", ReplyAction="http://dev.virtualearth.net/webservices/v1/imagery/contracts/IImageryService/GetM" + + "apUriResponse")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/imagery/contracts/IImageryService/GetM" + + "apUriResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.imagery.MapUriResponse GetMapUri(dev.virtualearth.net.webservices.v1.imagery.MapUriRequest request); +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public interface IImageryServiceChannel : IImageryService, System.ServiceModel.IClientChannel +{ +} + +[System.Diagnostics.DebuggerStepThroughAttribute()] +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public partial class ImageryServiceClient : System.ServiceModel.ClientBase, IImageryService +{ + + public ImageryServiceClient() + { + } + + public ImageryServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) + { + } + + public ImageryServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public ImageryServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public ImageryServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) + { + } + + public dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataResponse GetImageryMetadata(dev.virtualearth.net.webservices.v1.imagery.ImageryMetadataRequest request) + { + return base.Channel.GetImageryMetadata(request); + } + + public dev.virtualearth.net.webservices.v1.imagery.MapUriResponse GetMapUri(dev.virtualearth.net.webservices.v1.imagery.MapUriRequest request) + { + return base.Channel.GetMapUri(request); + } +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +[System.ServiceModel.ServiceContractAttribute(Namespace="http://dev.virtualearth.net/webservices/v1/route/contracts", ConfigurationName="IRouteService")] +public interface IRouteService +{ + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/route/contracts/IRouteService/Calculat" + + "eRoute", ReplyAction="http://dev.virtualearth.net/webservices/v1/route/contracts/IRouteService/Calculat" + + "eRouteResponse")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/route/contracts/IRouteService/Calculat" + + "eRouteResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.route.RouteResponse CalculateRoute(dev.virtualearth.net.webservices.v1.route.RouteRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="http://dev.virtualearth.net/webservices/v1/route/contracts/IRouteService/Calculat" + + "eRoutesFromMajorRoads", ReplyAction="http://dev.virtualearth.net/webservices/v1/route/contracts/IRouteService/Calculat" + + "eRoutesFromMajorRoadsResponse")] + [System.ServiceModel.FaultContractAttribute(typeof(dev.virtualearth.net.webservices.v1.common.ResponseSummary), Action="http://dev.virtualearth.net/webservices/v1/route/contracts/IRouteService/Calculat" + + "eRoutesFromMajorRoadsResponseSummaryFault", Name="ResponseSummary", Namespace="http://dev.virtualearth.net/webservices/v1/common")] + dev.virtualearth.net.webservices.v1.route.MajorRoutesResponse CalculateRoutesFromMajorRoads(dev.virtualearth.net.webservices.v1.route.MajorRoutesRequest request); +} + +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public interface IRouteServiceChannel : IRouteService, System.ServiceModel.IClientChannel +{ +} + +[System.Diagnostics.DebuggerStepThroughAttribute()] +[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] +public partial class RouteServiceClient : System.ServiceModel.ClientBase, IRouteService +{ + + public RouteServiceClient() + { + } + + public RouteServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) + { + } + + public RouteServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public RouteServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) + { + } + + public RouteServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) + { + } + + public dev.virtualearth.net.webservices.v1.route.RouteResponse CalculateRoute(dev.virtualearth.net.webservices.v1.route.RouteRequest request) + { + return base.Channel.CalculateRoute(request); + } + + public dev.virtualearth.net.webservices.v1.route.MajorRoutesResponse CalculateRoutesFromMajorRoads(dev.virtualearth.net.webservices.v1.route.MajorRoutesRequest request) + { + return base.Channel.CalculateRoutesFromMajorRoads(request); + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml new file mode 100644 index 0000000..73979d6 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml @@ -0,0 +1,20 @@ + + + + + + + Windows® Phone 7 GPS Emulator + + Community Edition + + + Shy Cohen Consulting + + www.ShyCohen.com + + + diff --git a/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml.cs b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml.cs new file mode 100644 index 0000000..bff20ad --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml.cs @@ -0,0 +1,27 @@ +using System.Diagnostics; +using System.Windows; + +namespace GpsEmulator.DialogWindows +{ + /// + /// Interaction logic for About.xaml + /// + public partial class AboutDialog : Window + { + public AboutDialog() + { + InitializeComponent(); + } + + private void Button_Click(object sender, RoutedEventArgs e) + { + this.Close(); + } + + private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e) + { + Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri)); + e.Handled = true; + } + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml new file mode 100644 index 0000000..1a077c6 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml @@ -0,0 +1,21 @@ + + + + + + Enter your Bing Maps API Key + + (If you don't have a key, click + here to obtain one) + + + + + + + + + diff --git a/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml.cs b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml.cs new file mode 100644 index 0000000..8fe9a38 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/BingApiKeyDialog.xaml.cs @@ -0,0 +1,39 @@ +using System.Diagnostics; +using System.Windows; + +namespace GpsEmulator.DialogWindows +{ + /// + /// Interaction logic for BingApiKeyDialog.xaml + /// + public partial class BingApiKeyDialog : Window + { + public bool cancelled = true; + public bool Cancelled + { + get { return cancelled; } + } + + public BingApiKeyDialog() + { + InitializeComponent(); + } + + private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e) + { + Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri)); + e.Handled = true; + } + + private void btnOk_Click(object sender, RoutedEventArgs e) + { + cancelled = false; + this.Close(); + } + + private void btnCancel_Click(object sender, RoutedEventArgs e) + { + this.Close(); + } + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml new file mode 100644 index 0000000..f4395b9 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + Default Settings + Path Color + + Speed (in m/sec) of Travel to a New Point + + Use real-time traffic data + + + + + + + diff --git a/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml.cs b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml.cs new file mode 100644 index 0000000..80060b2 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/OptionsDialog.xaml.cs @@ -0,0 +1,35 @@ +using System; +using System.Windows; + +namespace GpsEmulator.DialogWindows +{ + /// + /// Interaction logic for OptionsDialog.xaml + /// + public partial class OptionsDialog : Window + { + bool cancelled = false; + + public bool Cancelled + { + get { return cancelled; } + } + + public OptionsDialog() + { + InitializeComponent(); + cmbPathColor.ItemsSource = new string[] { "Red", "Blue", "Green" }; + } + + private void btnOk_Click(object sender, RoutedEventArgs e) + { + cancelled = false; + this.Close(); + } + + private void btnCancel_Click(object sender, RoutedEventArgs e) + { + this.Close(); + } + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/GpsEmulator.csproj b/main/Libs/GpsEmulator/GpsEmulator/GpsEmulator.csproj new file mode 100644 index 0000000..cb23919 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/GpsEmulator.csproj @@ -0,0 +1,224 @@ + + + + Debug + x86 + 8.0.30703 + 2.0 + {566AEE14-134C-4EE4-93B5-1FFB021DE678} + WinExe + Properties + GpsEmulator + GpsEmulator + v4.0 + Client + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + Resources\GpsEmulator.ico + + + true + bin\x86\Tests\ + DEBUG;TRACE + full + x86 + bin\Debug\GpsEmulator.exe.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules + + + + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + + BingApiKeyDialog.xaml + + + OptionsDialog.xaml + + + + + + SelectionMarker.xaml + + + DirectionalMarker.xaml + + + AboutDialog.xaml + + + + + + MapControl.xaml + + + MapTile.xaml + + + + + + WaypointMarker.xaml + + + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + Designer + MSBuild:Compile + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + PreserveNewest + Designer + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/main/Libs/GpsEmulator/GpsEmulator/GpsService/IGpsEmulatorService.cs b/main/Libs/GpsEmulator/GpsEmulator/GpsService/IGpsEmulatorService.cs new file mode 100644 index 0000000..a31229d --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/GpsService/IGpsEmulatorService.cs @@ -0,0 +1,11 @@ +using System.ServiceModel; + +namespace GpsEmulator.GpsService +{ + [ServiceContract] + interface IGpsEmulatorService + { + [OperationContract] + string GetCurrentPosition(); + } +} diff --git a/main/Libs/GpsEmulator/GpsEmulator/MainWindow.xaml b/main/Libs/GpsEmulator/GpsEmulator/MainWindow.xaml new file mode 100644 index 0000000..7260592 --- /dev/null +++ b/main/Libs/GpsEmulator/GpsEmulator/MainWindow.xaml @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 47.6395454 + + -122.130699 + + + + + + + + + + + + + + + + + + Simulation + Speed : x1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WP7/MainPage.xaml.cs b/main/MyFriendsAround.WP7/MainPage.xaml.cs new file mode 100644 index 0000000..64b0306 --- /dev/null +++ b/main/MyFriendsAround.WP7/MainPage.xaml.cs @@ -0,0 +1,58 @@ +using System; +using System.Windows; +using GalaSoft.MvvmLight.Messaging; +using GalaSoft.MvvmLight.Threading; +using Microsoft.Phone.Controls; +using Microsoft.Silverlight.Testing; + +namespace MyFriendsAround.WP7 +{ + public partial class MainPage : PhoneApplicationPage + { + // Constructor + public MainPage() + { + + DispatcherHelper.Initialize(); + InitializeComponent(); + + Messenger.Default.Register( + this, + msg => + { + DispatcherHelper.CheckBeginInvokeOnUI(() => + { + + var result = MessageBox.Show( + msg.Content, + msg.Caption, + msg.Button); + + // Send callback + msg.ProcessCallback(result); + }); + }); + + this.Loaded += new RoutedEventHandler(MainPage_Loaded); + + } + + void MainPage_Loaded(object sender, RoutedEventArgs e) + { +#if TESTING + DoTests(); +#endif + } + + private void DoTests() + { + var testPage = UnitTestSystem.CreateTestPage(); + IMobileTestPage imobileTPage = testPage as IMobileTestPage; + BackKeyPress += (s, arg) => + { + bool navigateBackSuccessfull = imobileTPage.NavigateBack(); arg.Cancel = navigateBackSuccessfull; + }; (Application.Current.RootVisual as PhoneApplicationFrame).Content = testPage; + } + + } +} diff --git a/main/MyFriendsAround.WP7/MyFriendsAround.WP7.csproj b/main/MyFriendsAround.WP7/MyFriendsAround.WP7.csproj new file mode 100644 index 0000000..5da52f8 --- /dev/null +++ b/main/MyFriendsAround.WP7/MyFriendsAround.WP7.csproj @@ -0,0 +1,178 @@ + + + + Debug + AnyCPU + 10.0.20506 + 2.0 + {B690843F-9163-4292-9450-8855AAA3FD5B} + {C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + MyFriendsAround.WP7 + MyFriendsAround.WP7 + v4.0 + $(TargetFrameworkVersion) + WindowsPhone + Silverlight + true + + + true + true + MyFriendsAround.WP7.xap + Properties\AppManifest.xml + MyFriendsAround.WP7.App + true + true + + + true + full + false + Bin\Debug + DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE + true + true + prompt + 4 + + + pdbonly + true + Bin\Release + TRACE;SILVERLIGHT + true + true + prompt + 4 + + + true + bin\Tests\ + TRACE;DEBUG;SILVERLIGHT;WINDOWS_PHONE;TESTING + true + full + AnyCPU + Bin\Debug\MyFriendsAround.WP7.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules + + + + False + C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WP7\GalaSoft.MvvmLight.WP7.dll + + + False + C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WP7\GalaSoft.MvvmLight.Extras.WP7.dll + + + ..\Libs\Hammock-Binaries\.NET 4.0\Windows Phone 7\Hammock.WindowsPhone.dll + + + ..\Libs\Hammock-Binaries\.NET 4.0\Windows Phone 7\ICSharpCode.SharpZipLib.WindowsPhone.dll + + + + ..\packages\SilverlightToolkitWP.4.2011.2.1\lib\sl4\Microsoft.Phone.Controls.Toolkit.dll + + + ..\Libs\SL3_UTF_May\Microsoft.Silverlight.Testing.dll + + + ..\Libs\SL3_UTF_May\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll + + + ..\Libs\Json40r1\WindowsPhone\Newtonsoft.Json.WindowsPhone.dll + + + + + + False + C:\Program Files\Laurent Bugnion (GalaSoft)\Mvvm Light Toolkit\Binaries\WP7\System.Windows.Interactivity.dll + + + + + + + + + + + + + Entities\Friend.cs + + + Entities\FriendExt.cs + + + App.xaml + + + MainPage.xaml + + + + + + + + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + + PreserveNewest + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WP7/Properties/AppManifest.xml b/main/MyFriendsAround.WP7/Properties/AppManifest.xml new file mode 100644 index 0000000..a955232 --- /dev/null +++ b/main/MyFriendsAround.WP7/Properties/AppManifest.xml @@ -0,0 +1,6 @@ + + + + diff --git a/main/MyFriendsAround.WP7/Properties/AssemblyInfo.cs b/main/MyFriendsAround.WP7/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..772b267 --- /dev/null +++ b/main/MyFriendsAround.WP7/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MyFriendsAround.WP7")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MyFriendsAround.WP7")] +[assembly: AssemblyCopyright("Copyright © 2010")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("a0a54828-3abd-482f-a7ef-2f416a2a4ebb")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/main/MyFriendsAround.WP7/Properties/WMAppManifest.xml b/main/MyFriendsAround.WP7/Properties/WMAppManifest.xml new file mode 100644 index 0000000..4a43b8c --- /dev/null +++ b/main/MyFriendsAround.WP7/Properties/WMAppManifest.xml @@ -0,0 +1,32 @@ + + + + + ApplicationIcon.png + + + + + + + + + + + + + + + + + + + + Background.png + 0 + MyFriendsAround.WP7 + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WP7/README_FIRST.txt b/main/MyFriendsAround.WP7/README_FIRST.txt new file mode 100644 index 0000000..02b8f61 --- /dev/null +++ b/main/MyFriendsAround.WP7/README_FIRST.txt @@ -0,0 +1,3 @@ +For the Silverlight for Windows Phone Toolkit make sure that you have +marked the icons in the "Toolkit.Content" folder as content. That way they +can be used as the icons for the ApplicationBar control. \ No newline at end of file diff --git a/main/MyFriendsAround.WP7/Service/FriendsListEventArgs.cs b/main/MyFriendsAround.WP7/Service/FriendsListEventArgs.cs new file mode 100644 index 0000000..4fd4612 --- /dev/null +++ b/main/MyFriendsAround.WP7/Service/FriendsListEventArgs.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Net; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Shapes; +using MyFriendsAround.Common.Entities; + +namespace MyFriendsAround.WP7.Service +{ + public class FriendsListEventArgs: EventArgs + { + public List Friends { get; set; } + } +} diff --git a/main/MyFriendsAround.WP7/Service/PublishLocationEventArgs.cs b/main/MyFriendsAround.WP7/Service/PublishLocationEventArgs.cs new file mode 100644 index 0000000..3c304a0 --- /dev/null +++ b/main/MyFriendsAround.WP7/Service/PublishLocationEventArgs.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace MyFriendsAround.WP7.Service +{ + public class PublishLocationEventArgs: EventArgs + { + public bool IsSuccess { get; set; } + } +} diff --git a/main/MyFriendsAround.WP7/Service/ServiceAgent.cs b/main/MyFriendsAround.WP7/Service/ServiceAgent.cs new file mode 100644 index 0000000..7e9a62b --- /dev/null +++ b/main/MyFriendsAround.WP7/Service/ServiceAgent.cs @@ -0,0 +1,93 @@ +using System; +using System.Collections.Generic; +using System.Net; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Shapes; +using Hammock; +using Hammock.Streaming; +using Hammock.Tasks; +using Hammock.Web; +using MyFriendsAround.Common.Entities; +using Hammock.Caching; +using CacheMode = Hammock.Caching.CacheMode; + +namespace MyFriendsAround.WP7.Service +{ + public static class ServiceAgent + { + + #region GetFriends + + private static EventHandler friendscallback; + + public static void GetFriends(EventHandler callback) + { + var serializer = new Hammock.Serialization.HammockDataContractJsonSerializer(); + RestClient client = new RestClient + { + Authority = "http://localhost.:55672/myfriends", + Serializer = serializer, + Deserializer = serializer + }; + RestRequest request = new RestRequest + { + Path = "GetFriends" + "?timestamp=" + DateTime.Now.Ticks.ToString() + }; + friendscallback = callback; + client.BeginRequest(request, new RestCallback>(GetFriendsCallback)); + } + + public static void GetFriendsCallback(RestRequest request, RestResponse> response, object userState) + { + if (response.StatusCode == HttpStatusCode.OK) + { + List list = response.ContentEntity; + friendscallback.Invoke(null, new FriendsListEventArgs() { Friends = list }); + } + } + + #endregion + + + + #region PublishLocation + + + public static EventHandler publishlocationcallback; + public static void PublishLocation(Friend friend, EventHandler callback) + { + var serializer = new Hammock.Serialization.HammockDataContractJsonSerializer(); + RestClient client = new RestClient + { + Authority = "http://localhost.:55672/myfriends", + Serializer = serializer, + Deserializer = serializer + }; + RestRequest request = new RestRequest + { + Method = WebMethod.Post, + Path = "PublishLocation", + Entity = friend + }; + publishlocationcallback = callback; + client.BeginRequest(request, new RestCallback(PublishLocationCallback)); + } + + public static void PublishLocationCallback(RestRequest request, RestResponse response, object userState) + { + if (response.StatusCode == HttpStatusCode.OK) + { + bool success = response.ContentEntity; + publishlocationcallback.Invoke(null, new PublishLocationEventArgs() { IsSuccess = success }); + } + } + + #endregion + } +} diff --git a/main/MyFriendsAround.WP7/SplashScreenImage.jpg b/main/MyFriendsAround.WP7/SplashScreenImage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..353b1927b9d397aac7f23098e427739615db19fd GIT binary patch literal 9417 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 UfQSJR10n`Q4E%c;KnlnH2jCM6ivR!s literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.WP7/Tests/Tests1.cs b/main/MyFriendsAround.WP7/Tests/Tests1.cs new file mode 100644 index 0000000..e1d7364 --- /dev/null +++ b/main/MyFriendsAround.WP7/Tests/Tests1.cs @@ -0,0 +1,32 @@ +using System; +using System.Net; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Shapes; +using Microsoft.Silverlight.Testing; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace MyFriendsAround.WP7.Tests +{ + [TestClass] + public class Tests1 + { + [TestMethod] + public void Test_If_This_One_Is_Correct() + { + Assert.IsTrue(true, "this method always pass"); + } + + [TestMethod] + [ExpectedException(typeof(Exception))] + public void Test_Must_Throw_Error() + { + // + } + } +} diff --git a/main/MyFriendsAround.WP7/Toolkit.Content/ApplicationBar.Cancel.png b/main/MyFriendsAround.WP7/Toolkit.Content/ApplicationBar.Cancel.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd724f087fca227e7ee7ceefd19649c5b9a0351 GIT binary patch literal 350 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@j0~PGjv*Dd-pstndsuh8nf>utOJ$E-| zFMsKu(zG#v;j7MF|Bk8EhY|vq1bJt~%r2K|N*h>MBE_mo8I)a0re`rF7#CSG>=3>0W57K1`hkcQ(~r!$GJ9*p z?7J^}*Zj7-P^!Ld*7+GL)%c2oK8M@g*FW_)Q8xIRi*ftTeeam9og;U5O?&)R@IyN& fc;MjbBjp1O$7bzju+Ww91&MmP`njxgN@xNA$Y_JF literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.WP7/Toolkit.Content/ApplicationBar.Check.png b/main/MyFriendsAround.WP7/Toolkit.Content/ApplicationBar.Check.png new file mode 100644 index 0000000000000000000000000000000000000000..7a074666878744c35a6e72079704f59854bcd0f6 GIT binary patch literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@j1HbIjv*Dd-ppv^ZB`I)JigUd?>+BXY}mz^(R1xr>8d*3 z9hUEcPwQ#LFnr&Y`fQK+yeI9Up%a-6qFb~CA3XDn^MCp|ok65`dD97xPq7IXPhH)2 zgki@rHDlw|J3|DMQ};1WW_oD2+B0_JxrUu=PncYU4YgypY>fa vyGFQQU`yqNo#K29|GeN{1u_!ktGEmprf?gTe~DWM4f^R}GR literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.WP7/Utils/Identification.cs b/main/MyFriendsAround.WP7/Utils/Identification.cs new file mode 100644 index 0000000..97aa30d --- /dev/null +++ b/main/MyFriendsAround.WP7/Utils/Identification.cs @@ -0,0 +1,68 @@ +using System; +using System.Net; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Shapes; +using Microsoft.Phone.Info; + +namespace MyFriendsAround.WP7.Utils +{ + public class Identification + { + public static String GetDeviceId() + { + byte[] id = (byte[])DeviceExtendedProperties.GetValue("DeviceUniqueId"); + return Convert.ToBase64String(id); + } + + + private static readonly int ANIDLength = 32; + private static readonly int ANIDOffset = 2; + public static string GetManufacturer() + { + string result = string.Empty; + object manufacturer; + if (DeviceExtendedProperties.TryGetValue("DeviceManufacturer", out manufacturer)) + result = manufacturer.ToString(); + + return result; + } + + //Note: to get a result requires ID_CAP_IDENTITY_DEVICE + // to be added to the capabilities of the WMAppManifest + // this will then warn users in marketplace + public static byte[] GetDeviceUniqueID() + { + byte[] result = null; + object uniqueId; + if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId)) + result = (byte[])uniqueId; + + return result; + } + + // NOTE: to get a result requires ID_CAP_IDENTITY_USER + // to be added to the capabilities of the WMAppManifest + // this will then warn users in marketplace + public static string GetWindowsLiveAnonymousID() + { + string result = string.Empty; + object anid; + if (UserExtendedProperties.TryGetValue("ANID", out anid)) + { + if (anid != null && anid.ToString().Length >= (ANIDLength + ANIDOffset)) + { + result = anid.ToString().Substring(ANIDOffset, ANIDLength); + } + } + + return result; + } + + } +} diff --git a/main/MyFriendsAround.WP7/Utils/SerializationHelper.cs b/main/MyFriendsAround.WP7/Utils/SerializationHelper.cs new file mode 100644 index 0000000..6525be6 --- /dev/null +++ b/main/MyFriendsAround.WP7/Utils/SerializationHelper.cs @@ -0,0 +1,32 @@ +using System; +using System.IO; +using System.Net; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Shapes; +using Newtonsoft.Json; + +namespace MyFriendsAround.WP7.Utils +{ + public static class SerializationHelper + { + public static T Deserialize(string serialized) + { + if (string.IsNullOrEmpty(serialized)) + return default(T); + + return JsonConvert.DeserializeObject(serialized); + } + + public static string Serialize(T obj) + { + return JsonConvert.SerializeObject(obj); + } + } +} diff --git a/main/MyFriendsAround.WP7/ViewModel/MainViewModel.cs b/main/MyFriendsAround.WP7/ViewModel/MainViewModel.cs new file mode 100644 index 0000000..7307362 --- /dev/null +++ b/main/MyFriendsAround.WP7/ViewModel/MainViewModel.cs @@ -0,0 +1,228 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Device.Location; +using System.Net; +using System.ServiceModel.Channels; +using System.Windows; +using System.Windows.Input; +using GalaSoft.MvvmLight; +using GalaSoft.MvvmLight.Command; +using GalaSoft.MvvmLight.Messaging; +using GalaSoft.MvvmLight.Threading; +using Hammock; +using Hammock.Serialization; +using Microsoft.Phone.Controls; +using Microsoft.Silverlight.Testing; +using MyFriendsAround.Common.Entities; +using MyFriendsAround.WP7.Service; +using MyFriendsAround.WP7.Utils; +using Newtonsoft.Json; + +namespace MyFriendsAround.WP7.ViewModel +{ + /// + /// This class contains properties that the main View can data bind to. + /// + /// Use the mvvminpc snippet to add bindable properties to this ViewModel. + /// + /// + /// You can also use Blend to data bind with the tool's support. + /// + /// + /// See http://www.galasoft.ch/mvvm/getstarted + /// + /// + public class MainViewModel : ViewModelBase + { + public string ApplicationTitle + { + get + { + return "MVVM LIGHT"; + } + } + + public string PageName + { + get + { + //myfriendsservice + return "My page:"; + } + } + + public string Welcome + { + get + { + return "Welcome to MVVM Light"; + } + } + + /// + /// Initializes a new instance of the MainViewModel class. + /// + public MainViewModel() + { + MyName = "Guest"; + PublishLocationCommand = new RelayCommand(() => PublishLocationAction()); + if (IsInDesignMode) + { + // Code runs in Blend --> create design time data. + } + else + { + // Code runs "for real" + ServiceAgent.GetFriends(this.GetFriendsResult); + } + + } + + private void PopulatePushPins(List list) + { + ObservableCollection result = new ObservableCollection(); + list.ForEach((f) => + { + //f.LocationStr + result.Add(new PushPinModel() + { + PinSource = "ApplicationIcon.png", + Location = new GeoCoordinate(f.Latitude, f.Longitude) + }); + }); + PushPins = result; + + } + + + private void PublishLocationAction() + { + Friend myInfo = new Friend(); + myInfo.Id = Identification.GetDeviceId(); + myInfo.FriendName = MyName; + myInfo.LastUpdated = DateTime.UtcNow; + myInfo.LocationStr = string.Format("POINT({0} {1})", MapCenter.Latitude, MapCenter.Longitude); + ServiceAgent.PublishLocation(myInfo, new EventHandler(PublishLocationResult)); + } + + public void GetFriendsResult(object sender, FriendsListEventArgs args) + { + List list = args.Friends; + DispatcherHelper.CheckBeginInvokeOnUI(() => + { + PopulatePushPins(list); + } + ); + } + + public void PublishLocationResult(object sender, PublishLocationEventArgs args) + { + if (!args.IsSuccess) + { + var message = new DialogMessage("Communication error!", DialogMessageCallback) + { + Button = MessageBoxButton.OK, + Caption = "Error!" + }; + + Messenger.Default.Send(message); + } + // + //update + ServiceAgent.GetFriends(this.GetFriendsResult); + } + + private void DialogMessageCallback(MessageBoxResult result) + { + if (result == MessageBoxResult.OK) + { + //Message = "Continue"; + } + else + { + //Message = "Stop"; + } + } + + public RelayCommand PublishLocationCommand { get; set; } + public string MyName { get; set; } + + ////public override void Cleanup() + ////{ + //// // Clean up if needed + + //// base.Cleanup(); + ////} + + + /// + /// The property's name. + /// + public const string PushPinsPropertyName = "PushPins"; + private ObservableCollection _PushPins = new ObservableCollection(); + /// + /// Gets the PushPins property. + /// + public ObservableCollection PushPins + { + get + { + return _PushPins; + } + + set + { + if (_PushPins == value) + { + return; + } + + var oldValue = _PushPins; + _PushPins = value; + + // Update bindings, no broadcast + RaisePropertyChanged(PushPinsPropertyName); + + //// Update bindings and broadcast change using GalaSoft.MvvmLight.Messenging + //RaisePropertyChanged(PushPinsPropertyName, oldValue, value, true); + } + } + + + + + /// + /// The property's name. + /// + public const string MapCenterPropertyName = "MapCenter"; + private GeoCoordinate _mapCenter = new GeoCoordinate(0,0); + + /// + /// Gets the MapCenter property. + /// + public GeoCoordinate MapCenter + { + get + { + return _mapCenter; + } + + set + { + if (_mapCenter == value) + { + return; + } + + var oldValue = _mapCenter; + _mapCenter = value; + + // Update bindings, no broadcast + RaisePropertyChanged(MapCenterPropertyName); + //// Update bindings and broadcast change using GalaSoft.MvvmLight.Messenging + //RaisePropertyChanged(MapCenterPropertyName, oldValue, value, true); + } + } + } +} \ No newline at end of file diff --git a/main/MyFriendsAround.WP7/ViewModel/PushPinModel.cs b/main/MyFriendsAround.WP7/ViewModel/PushPinModel.cs new file mode 100644 index 0000000..715dc27 --- /dev/null +++ b/main/MyFriendsAround.WP7/ViewModel/PushPinModel.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Device.Location; +using System.Linq; +using System.Text; + +namespace MyFriendsAround.WP7.ViewModel +{ + public class PushPinModel : INotifyPropertyChanged + { + public PushPinModel() { ; } + private GeoCoordinate _location; + + private string _pinSource; + + public string PinSource + { + get { return _pinSource; } + set + { + if (_pinSource != value) + { + _pinSource = value; + OnPropertyChanged("PinSource"); + } + } + } + + public GeoCoordinate Location + { + get { return _location; } + set + { + if (_location != value) + { + _location = value; + OnPropertyChanged("Location"); + } + } + } + + public event PropertyChangedEventHandler PropertyChanged; + + public void OnPropertyChanged(string propertyName) + { + if (PropertyChanged != null) + { + PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); + } + } + } + +} diff --git a/main/MyFriendsAround.WP7/ViewModel/ViewModelLocator.cs b/main/MyFriendsAround.WP7/ViewModel/ViewModelLocator.cs new file mode 100644 index 0000000..df60273 --- /dev/null +++ b/main/MyFriendsAround.WP7/ViewModel/ViewModelLocator.cs @@ -0,0 +1,135 @@ +/* + In App.xaml: + + + + + In the View: + DataContext="{Binding Source={StaticResource Locator}, Path=ViewModelName}" + + OR (WPF only): + + xmlns:vm="clr-namespace:MyFriendsAround.WP7.ViewModel" + DataContext="{Binding Source={x:Static vm:ViewModelLocatorTemplate.ViewModelNameStatic}}" +*/ + +namespace MyFriendsAround.WP7.ViewModel +{ + /// + /// This class contains static references to all the view models in the + /// application and provides an entry point for the bindings. + /// + /// Use the mvvmlocatorproperty snippet to add ViewModels + /// to this locator. + /// + /// + /// In Silverlight and WPF, place the ViewModelLocatorTemplate in the App.xaml resources: + /// + /// + /// <Application.Resources> + /// <vm:ViewModelLocatorTemplate xmlns:vm="clr-namespace:MyFriendsAround.WP7.ViewModel" + /// x:Key="Locator" /> + /// </Application.Resources> + /// + /// + /// Then use: + /// + /// + /// DataContext="{Binding Source={StaticResource Locator}, Path=ViewModelName}" + /// + /// + /// You can also use Blend to do all this with the tool's support. + /// + /// + /// See http://www.galasoft.ch/mvvm/getstarted + /// + /// + /// In *WPF only* (and if databinding in Blend is not relevant), you can delete + /// the Main property and bind to the ViewModelNameStatic property instead: + /// + /// + /// xmlns:vm="clr-namespace:MyFriendsAround.WP7.ViewModel" + /// DataContext="{Binding Source={x:Static vm:ViewModelLocatorTemplate.ViewModelNameStatic}}" + /// + /// + public class ViewModelLocator + { + private static MainViewModel _main; + + /// + /// Initializes a new instance of the ViewModelLocator class. + /// + public ViewModelLocator() + { + ////if (ViewModelBase.IsInDesignModeStatic) + ////{ + //// // Create design time view models + ////} + ////else + ////{ + //// // Create run time view models + ////} + + CreateMain(); + } + + /// + /// Gets the Main property. + /// + public static MainViewModel MainStatic + { + get + { + if (_main == null) + { + CreateMain(); + } + + return _main; + } + } + + /// + /// Gets the Main property. + /// + [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", + "CA1822:MarkMembersAsStatic", + Justification = "This non-static member is needed for data binding purposes.")] + public MainViewModel Main + { + get + { + return MainStatic; + } + } + + /// + /// Provides a deterministic way to delete the Main property. + /// + public static void ClearMain() + { + _main.Cleanup(); + _main = null; + } + + /// + /// Provides a deterministic way to create the Main property. + /// + public static void CreateMain() + { + if (_main == null) + { + _main = new MainViewModel(); + } + } + + /// + /// Cleans up all the resources. + /// + public static void Cleanup() + { + ClearMain(); + } + } +} \ No newline at end of file diff --git a/main/MyFriendsAround.WP7/packages.config b/main/MyFriendsAround.WP7/packages.config new file mode 100644 index 0000000..2be0aa0 --- /dev/null +++ b/main/MyFriendsAround.WP7/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WcfREST/Global.asax b/main/MyFriendsAround.WcfREST/Global.asax new file mode 100644 index 0000000..3703583 --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="MyFriendsAround.WcfREST.Global" Language="C#" %> \ No newline at end of file diff --git a/main/MyFriendsAround.WcfREST/Global.asax.cs b/main/MyFriendsAround.WcfREST/Global.asax.cs new file mode 100644 index 0000000..5a7f8d9 --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Global.asax.cs @@ -0,0 +1,21 @@ +using System; +using System.ServiceModel.Activation; +using System.Web; +using System.Web.Routing; + +namespace MyFriendsAround.WcfREST +{ + public class Global : HttpApplication + { + void Application_Start(object sender, EventArgs e) + { + RegisterRoutes(); + } + + private void RegisterRoutes() + { + // Edit the base address of Service1 by replacing the "Service1" string below + RouteTable.Routes.Add(new ServiceRoute("Service1", new WebServiceHostFactory(), typeof(Service1))); + } + } +} diff --git a/main/MyFriendsAround.WcfREST/MyFriendsAround.WcfREST.csproj b/main/MyFriendsAround.WcfREST/MyFriendsAround.WcfREST.csproj new file mode 100644 index 0000000..b109a82 --- /dev/null +++ b/main/MyFriendsAround.WcfREST/MyFriendsAround.WcfREST.csproj @@ -0,0 +1,114 @@ + + + + Debug + AnyCPU + + + 2.0 + {3C17B729-9737-446A-81F5-6862C98AACE0} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + MyFriendsAround.WcfREST + MyFriendsAround.WcfREST + v4.0 + false + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + + + Web.config + + + Web.config + + + + + + + Global.asax + + + + + + + + + {80664694-C63F-4653-B3FC-617AEC468B3C} + MyFriendsAround.Common + + + {C78D400C-204A-4FAE-B63E-4D86A9871641} + MyFriendsAround.BLL + + + + + + + + + False + True + 38284 + / + + + False + False + + + False + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WcfREST/Properties/AssemblyInfo.cs b/main/MyFriendsAround.WcfREST/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..bfa5a1c --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MyFriendsAround.WcfREST")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("MyFriendsAround.WcfREST")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("dbb48f14-e281-4d34-b051-53e129936a26")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/main/MyFriendsAround.WcfREST/SampleItem.cs b/main/MyFriendsAround.WcfREST/SampleItem.cs new file mode 100644 index 0000000..c8f037d --- /dev/null +++ b/main/MyFriendsAround.WcfREST/SampleItem.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; + +namespace MyFriendsAround.WcfREST +{ + // TODO: Edit the SampleItem class + public class SampleItem + { + public int Id { get; set; } + public string StringValue { get; set; } + } +} diff --git a/main/MyFriendsAround.WcfREST/Service1.cs b/main/MyFriendsAround.WcfREST/Service1.cs new file mode 100644 index 0000000..77accfd --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Service1.cs @@ -0,0 +1,76 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.ServiceModel; +using System.ServiceModel.Activation; +using System.ServiceModel.Web; +using System.Text; +using MyFriendsAround.Common.Entities; +using MyFriendsAround.Data.BLL; + +namespace MyFriendsAround.WcfREST +{ + // Start the service and browse to http://:/Service1/help to view the service's generated help page + // NOTE: By default, a new instance of the service is created for each call; change the InstanceContextMode to Single if you want + // a single instance of the service to process all calls. + [ServiceContract] + [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] + [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)] + // NOTE: If the service is renamed, remember to update the global.asax.cs file + public class Service1 + { + // TODO: Implement the collection resource that will contain the SampleItem instances + + [WebGet(UriTemplate = "")] + public List GetCollection() + { + // TODO: Replace the current implementation to return a collection of SampleItem instances + return new List() { new SampleItem() { Id = 1, StringValue = "Hello" } }; + } + + [WebInvoke(UriTemplate = "", Method = "POST")] + public SampleItem Create(SampleItem instance) + { + // TODO: Add the new instance of SampleItem to the collection + throw new NotImplementedException(); + } + + [WebGet(UriTemplate = "{id}")] + public SampleItem Get(string id) + { + // TODO: Return the instance of SampleItem with the given id + throw new NotImplementedException(); + } + + [WebInvoke(UriTemplate = "{id}", Method = "PUT")] + public SampleItem Update(string id, SampleItem instance) + { + // TODO: Update the given instance of SampleItem in the collection + throw new NotImplementedException(); + } + + [WebInvoke(UriTemplate = "{id}", Method = "DELETE")] + public void Delete(string id) + { + // TODO: Remove the instance of SampleItem with the given id from the collection + throw new NotImplementedException(); + } + + + [WebGet(UriTemplate = "GetFriends", ResponseFormat = WebMessageFormat.Json)] + public List GetFriends() + { + List list = FriendsRepository.GetFriends(); + return list; + } + + + [OperationContract] + [WebInvoke] + public bool PublishLocation(Friend friend) + { + return FriendsRepository.PublishLocation(friend); + } + + } +} diff --git a/main/MyFriendsAround.WcfREST/Web.Debug.config b/main/MyFriendsAround.WcfREST/Web.Debug.config new file mode 100644 index 0000000..030492c --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Web.Debug.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WcfREST/Web.Release.config b/main/MyFriendsAround.WcfREST/Web.Release.config new file mode 100644 index 0000000..465e58f --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Web.Release.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.WcfREST/Web.config b/main/MyFriendsAround.WcfREST/Web.config new file mode 100644 index 0000000..eda0d51 --- /dev/null +++ b/main/MyFriendsAround.WcfREST/Web.config @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/main/MyFriendsAround.Web.Tests/App.config b/main/MyFriendsAround.Web.Tests/App.config new file mode 100644 index 0000000..5a526f8 --- /dev/null +++ b/main/MyFriendsAround.Web.Tests/App.config @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/main/MyFriendsAround.Web.Tests/Controllers/AccountControllerTest.cs b/main/MyFriendsAround.Web.Tests/Controllers/AccountControllerTest.cs new file mode 100644 index 0000000..bfe89e4 --- /dev/null +++ b/main/MyFriendsAround.Web.Tests/Controllers/AccountControllerTest.cs @@ -0,0 +1,449 @@ +using System; +using System.Security.Principal; +using System.Web; +using System.Web.Mvc; +using System.Web.Routing; +using System.Web.Security; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using MyFriendsAround.Web; +using MyFriendsAround.Web.Controllers; +using MyFriendsAround.Web.Models; + +namespace MyFriendsAround.Web.Tests.Controllers +{ + + [TestClass] + public class AccountControllerTest + { + + [TestMethod] + public void ChangePassword_Get_ReturnsView() + { + // Arrange + AccountController controller = GetAccountController(); + + // Act + ActionResult result = controller.ChangePassword(); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + Assert.AreEqual(10, ((ViewResult)result).ViewData["PasswordLength"]); + } + + [TestMethod] + public void ChangePassword_Post_ReturnsRedirectOnSuccess() + { + // Arrange + AccountController controller = GetAccountController(); + ChangePasswordModel model = new ChangePasswordModel() + { + OldPassword = "goodOldPassword", + NewPassword = "goodNewPassword", + ConfirmPassword = "goodNewPassword" + }; + + // Act + ActionResult result = controller.ChangePassword(model); + + // Assert + Assert.IsInstanceOfType(result, typeof(RedirectToRouteResult)); + RedirectToRouteResult redirectResult = (RedirectToRouteResult)result; + Assert.AreEqual("ChangePasswordSuccess", redirectResult.RouteValues["action"]); + } + + [TestMethod] + public void ChangePassword_Post_ReturnsViewIfChangePasswordFails() + { + // Arrange + AccountController controller = GetAccountController(); + ChangePasswordModel model = new ChangePasswordModel() + { + OldPassword = "goodOldPassword", + NewPassword = "badNewPassword", + ConfirmPassword = "badNewPassword" + }; + + // Act + ActionResult result = controller.ChangePassword(model); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + ViewResult viewResult = (ViewResult)result; + Assert.AreEqual(model, viewResult.ViewData.Model); + Assert.AreEqual("The current password is incorrect or the new password is invalid.", controller.ModelState[""].Errors[0].ErrorMessage); + Assert.AreEqual(10, viewResult.ViewData["PasswordLength"]); + } + + [TestMethod] + public void ChangePassword_Post_ReturnsViewIfModelStateIsInvalid() + { + // Arrange + AccountController controller = GetAccountController(); + ChangePasswordModel model = new ChangePasswordModel() + { + OldPassword = "goodOldPassword", + NewPassword = "goodNewPassword", + ConfirmPassword = "goodNewPassword" + }; + controller.ModelState.AddModelError("", "Dummy error message."); + + // Act + ActionResult result = controller.ChangePassword(model); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + ViewResult viewResult = (ViewResult)result; + Assert.AreEqual(model, viewResult.ViewData.Model); + Assert.AreEqual(10, viewResult.ViewData["PasswordLength"]); + } + + [TestMethod] + public void ChangePasswordSuccess_ReturnsView() + { + // Arrange + AccountController controller = GetAccountController(); + + // Act + ActionResult result = controller.ChangePasswordSuccess(); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + } + + [TestMethod] + public void LogOff_LogsOutAndRedirects() + { + // Arrange + AccountController controller = GetAccountController(); + + // Act + ActionResult result = controller.LogOff(); + + // Assert + Assert.IsInstanceOfType(result, typeof(RedirectToRouteResult)); + RedirectToRouteResult redirectResult = (RedirectToRouteResult)result; + Assert.AreEqual("Home", redirectResult.RouteValues["controller"]); + Assert.AreEqual("Index", redirectResult.RouteValues["action"]); + Assert.IsTrue(((MockFormsAuthenticationService)controller.FormsService).SignOut_WasCalled); + } + + [TestMethod] + public void LogOn_Get_ReturnsView() + { + // Arrange + AccountController controller = GetAccountController(); + + // Act + ActionResult result = controller.LogOn(); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + } + + [TestMethod] + public void LogOn_Post_ReturnsRedirectOnSuccess_WithoutReturnUrl() + { + // Arrange + AccountController controller = GetAccountController(); + LogOnModel model = new LogOnModel() + { + UserName = "someUser", + Password = "goodPassword", + RememberMe = false + }; + + // Act + ActionResult result = controller.LogOn(model, null); + + // Assert + Assert.IsInstanceOfType(result, typeof(RedirectToRouteResult)); + RedirectToRouteResult redirectResult = (RedirectToRouteResult)result; + Assert.AreEqual("Home", redirectResult.RouteValues["controller"]); + Assert.AreEqual("Index", redirectResult.RouteValues["action"]); + Assert.IsTrue(((MockFormsAuthenticationService)controller.FormsService).SignIn_WasCalled); + } + + [TestMethod] + public void LogOn_Post_ReturnsRedirectOnSuccess_WithLocalReturnUrl() + { + // Arrange + AccountController controller = GetAccountController(); + LogOnModel model = new LogOnModel() + { + UserName = "someUser", + Password = "goodPassword", + RememberMe = false + }; + + // Act + ActionResult result = controller.LogOn(model, "/someUrl"); + + // Assert + Assert.IsInstanceOfType(result, typeof(RedirectResult)); + RedirectResult redirectResult = (RedirectResult)result; + Assert.AreEqual("/someUrl", redirectResult.Url); + Assert.IsTrue(((MockFormsAuthenticationService)controller.FormsService).SignIn_WasCalled); + } + + [TestMethod] + public void LogOn_Post_ReturnsRedirectToHomeOnSuccess_WithExternalReturnUrl() + { + // Arrange + AccountController controller = GetAccountController(); + LogOnModel model = new LogOnModel() + { + UserName = "someUser", + Password = "goodPassword", + RememberMe = false + }; + + // Act + ActionResult result = controller.LogOn(model, "http://malicious.example.net"); + + // Assert + Assert.IsInstanceOfType(result, typeof(RedirectToRouteResult)); + RedirectToRouteResult redirectResult = (RedirectToRouteResult)result; + Assert.AreEqual("Home", redirectResult.RouteValues["controller"]); + Assert.AreEqual("Index", redirectResult.RouteValues["action"]); + Assert.IsTrue(((MockFormsAuthenticationService)controller.FormsService).SignIn_WasCalled); + } + + [TestMethod] + public void LogOn_Post_ReturnsViewIfModelStateIsInvalid() + { + // Arrange + AccountController controller = GetAccountController(); + LogOnModel model = new LogOnModel() + { + UserName = "someUser", + Password = "goodPassword", + RememberMe = false + }; + controller.ModelState.AddModelError("", "Dummy error message."); + + // Act + ActionResult result = controller.LogOn(model, null); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + ViewResult viewResult = (ViewResult)result; + Assert.AreEqual(model, viewResult.ViewData.Model); + } + + [TestMethod] + public void LogOn_Post_ReturnsViewIfValidateUserFails() + { + // Arrange + AccountController controller = GetAccountController(); + LogOnModel model = new LogOnModel() + { + UserName = "someUser", + Password = "badPassword", + RememberMe = false + }; + + // Act + ActionResult result = controller.LogOn(model, null); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + ViewResult viewResult = (ViewResult)result; + Assert.AreEqual(model, viewResult.ViewData.Model); + Assert.AreEqual("The user name or password provided is incorrect.", controller.ModelState[""].Errors[0].ErrorMessage); + } + + [TestMethod] + public void Register_Get_ReturnsView() + { + // Arrange + AccountController controller = GetAccountController(); + + // Act + ActionResult result = controller.Register(); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + Assert.AreEqual(10, ((ViewResult)result).ViewData["PasswordLength"]); + } + + [TestMethod] + public void Register_Post_ReturnsRedirectOnSuccess() + { + // Arrange + AccountController controller = GetAccountController(); + RegisterModel model = new RegisterModel() + { + UserName = "someUser", + Email = "goodEmail", + Password = "goodPassword", + ConfirmPassword = "goodPassword" + }; + + // Act + ActionResult result = controller.Register(model); + + // Assert + Assert.IsInstanceOfType(result, typeof(RedirectToRouteResult)); + RedirectToRouteResult redirectResult = (RedirectToRouteResult)result; + Assert.AreEqual("Home", redirectResult.RouteValues["controller"]); + Assert.AreEqual("Index", redirectResult.RouteValues["action"]); + } + + [TestMethod] + public void Register_Post_ReturnsViewIfRegistrationFails() + { + // Arrange + AccountController controller = GetAccountController(); + RegisterModel model = new RegisterModel() + { + UserName = "duplicateUser", + Email = "goodEmail", + Password = "goodPassword", + ConfirmPassword = "goodPassword" + }; + + // Act + ActionResult result = controller.Register(model); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + ViewResult viewResult = (ViewResult)result; + Assert.AreEqual(model, viewResult.ViewData.Model); + Assert.AreEqual("Username already exists. Please enter a different user name.", controller.ModelState[""].Errors[0].ErrorMessage); + Assert.AreEqual(10, viewResult.ViewData["PasswordLength"]); + } + + [TestMethod] + public void Register_Post_ReturnsViewIfModelStateIsInvalid() + { + // Arrange + AccountController controller = GetAccountController(); + RegisterModel model = new RegisterModel() + { + UserName = "someUser", + Email = "goodEmail", + Password = "goodPassword", + ConfirmPassword = "goodPassword" + }; + controller.ModelState.AddModelError("", "Dummy error message."); + + // Act + ActionResult result = controller.Register(model); + + // Assert + Assert.IsInstanceOfType(result, typeof(ViewResult)); + ViewResult viewResult = (ViewResult)result; + Assert.AreEqual(model, viewResult.ViewData.Model); + Assert.AreEqual(10, viewResult.ViewData["PasswordLength"]); + } + + private static AccountController GetAccountController() + { + RequestContext requestContext = new RequestContext(new MockHttpContext(), new RouteData()); + AccountController controller = new AccountController() + { + FormsService = new MockFormsAuthenticationService(), + MembershipService = new MockMembershipService(), + Url = new UrlHelper(requestContext), + }; + controller.ControllerContext = new ControllerContext() + { + Controller = controller, + RequestContext = requestContext + }; + return controller; + } + + private class MockFormsAuthenticationService : IFormsAuthenticationService + { + public bool SignIn_WasCalled; + public bool SignOut_WasCalled; + + public void SignIn(string userName, bool createPersistentCookie) + { + // verify that the arguments are what we expected + Assert.AreEqual("someUser", userName); + Assert.IsFalse(createPersistentCookie); + + SignIn_WasCalled = true; + } + + public void SignOut() + { + SignOut_WasCalled = true; + } + } + + private class MockHttpContext : HttpContextBase + { + private readonly IPrincipal _user = new GenericPrincipal(new GenericIdentity("someUser"), null /* roles */); + private readonly HttpRequestBase _request = new MockHttpRequest(); + + public override IPrincipal User + { + get + { + return _user; + } + set + { + base.User = value; + } + } + + public override HttpRequestBase Request + { + get + { + return _request; + } + } + } + + private class MockHttpRequest : HttpRequestBase + { + private readonly Uri _url = new Uri("http://mysite.example.com/"); + + public override Uri Url + { + get + { + return _url; + } + } + } + + private class MockMembershipService : IMembershipService + { + public int MinPasswordLength + { + get { return 10; } + } + + public bool ValidateUser(string userName, string password) + { + return (userName == "someUser" && password == "goodPassword"); + } + + public MembershipCreateStatus CreateUser(string userName, string password, string email) + { + if (userName == "duplicateUser") + { + return MembershipCreateStatus.DuplicateUserName; + } + + // verify that values are what we expected + Assert.AreEqual("goodPassword", password); + Assert.AreEqual("goodEmail", email); + + return MembershipCreateStatus.Success; + } + + public bool ChangePassword(string userName, string oldPassword, string newPassword) + { + return (userName == "someUser" && oldPassword == "goodOldPassword" && newPassword == "goodNewPassword"); + } + } + + } +} diff --git a/main/MyFriendsAround.Web.Tests/Controllers/HomeControllerTest.cs b/main/MyFriendsAround.Web.Tests/Controllers/HomeControllerTest.cs new file mode 100644 index 0000000..4127bd0 --- /dev/null +++ b/main/MyFriendsAround.Web.Tests/Controllers/HomeControllerTest.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Web.Mvc; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using MyFriendsAround.Web; +using MyFriendsAround.Web.Controllers; + +namespace MyFriendsAround.Web.Tests.Controllers +{ + [TestClass] + public class HomeControllerTest + { + [TestMethod] + public void Index() + { + // Arrange + HomeController controller = new HomeController(); + + // Act + ViewResult result = controller.Index() as ViewResult; + + // Assert + Assert.AreEqual("Welcome to ASP.NET MVC!", result.ViewBag.Message); + } + + [TestMethod] + public void About() + { + // Arrange + HomeController controller = new HomeController(); + + // Act + ViewResult result = controller.About() as ViewResult; + + // Assert + Assert.IsNotNull(result); + } + } +} diff --git a/main/MyFriendsAround.Web.Tests/MyFriendsAround.Web.Tests.csproj b/main/MyFriendsAround.Web.Tests/MyFriendsAround.Web.Tests.csproj new file mode 100644 index 0000000..b55806b --- /dev/null +++ b/main/MyFriendsAround.Web.Tests/MyFriendsAround.Web.Tests.csproj @@ -0,0 +1,90 @@ + + + + Debug + AnyCPU + + + 2.0 + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F} + Library + Properties + MyFriendsAround.Web.Tests + MyFriendsAround.Web.Tests + v4.0 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + true + bin\Tests\ + DEBUG;TRACE + full + AnyCPU + bin\Debug\MyFriendsAround.Web.Tests.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets + true + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D} + MyFriendsAround.Web + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.Web.Tests/Properties/AssemblyInfo.cs b/main/MyFriendsAround.Web.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2fe96ec --- /dev/null +++ b/main/MyFriendsAround.Web.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MyFriendsAround.Web.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("MyFriendsAround.Web.Tests")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("f496bfd5-1473-4070-bbed-57cd23844621")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/main/MyFriendsAround.Web/Content/Site.css b/main/MyFriendsAround.Web/Content/Site.css new file mode 100644 index 0000000..fd3a71f --- /dev/null +++ b/main/MyFriendsAround.Web/Content/Site.css @@ -0,0 +1,349 @@ +/*---------------------------------------------------------- +The base color for this template is #5c87b2. If you'd like +to use a different color start by replacing all instances of +#5c87b2 with your new color. +----------------------------------------------------------*/ +body +{ + background-color: #5c87b2; + font-size: 75%; + font-family: Verdana, Tahoma, Arial, "Helvetica Neue", Helvetica, Sans-Serif; + margin: 0; + padding: 0; + color: #696969; +} + +a:link +{ + color: #034af3; + text-decoration: underline; +} +a:visited +{ + color: #505abc; +} +a:hover +{ + color: #1d60ff; + text-decoration: none; +} +a:active +{ + color: #12eb87; +} + +p, ul +{ + margin-bottom: 20px; + line-height: 1.6em; +} + +/* HEADINGS +----------------------------------------------------------*/ +h1, h2, h3, h4, h5, h6 +{ + font-size: 1.5em; + color: #000; + clear: both; +} + +h1 +{ + font-size: 2em; + padding-bottom: 0; + margin-bottom: 0; +} +h2 +{ + padding: 0 0 0 0; +} +h3 +{ + font-size: 1.2em; +} +h4 +{ + font-size: 1.1em; +} +h5, h6 +{ + font-size: 1em; +} + +/* this rule styles

tags that are the +first child of the left and right table columns */ +.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 +{ + margin-top: 0; +} + +/* PRIMARY LAYOUT ELEMENTS +----------------------------------------------------------*/ + +/* you can specify a greater or lesser percentage for the +page width. Or, you can specify an exact pixel width. */ +.page +{ + width: 90%; + margin: 0px; + margin-left: auto; + margin-right: auto; +} + +#header +{ + position: relative; + margin-bottom: 0px; + color: #000; + padding: 0; +} + +#header h1 +{ + font-weight: bold; + padding: 5px 0; + margin: 0; + color: #fff; + border: none; + line-height: 2em; + font-size: 32px !important; +} + +#main +{ + padding: 10px 30px 0px 30px; + background-color: #fff; + margin-bottom: 30px; + _height: 1px; /* only IE6 applies CSS properties starting with an underscore */ +} + +#footer +{ + color: #999; + padding: 10px 0; + text-align: center; + line-height: normal; + margin: 0; + font-size: .9em; +} + +/* TAB MENU +----------------------------------------------------------*/ +ul#menu +{ + border-bottom: 1px #5C87B2 solid; + padding: 0 0 2px; + position: relative; + margin: 0; + text-align: right; +} + +ul#menu li +{ + display: inline; + list-style: none; +} + +ul#menu li#greeting +{ + padding: 10px 20px; + font-weight: bold; + text-decoration: none; + line-height: 2.8em; + color: #fff; +} + +ul#menu li a +{ + padding: 10px 20px; + font-weight: bold; + text-decoration: none; + line-height: 2.8em; + background-color: #e8eef4; + color: #034af3; +} + +ul#menu li a:hover +{ + background-color: #fff; + text-decoration: none; +} + +ul#menu li a:active +{ + background-color: #a6e2a6; + text-decoration: none; +} + +ul#menu li.selected a +{ + background-color: #fff; + color: #000; +} + +/* FORM LAYOUT ELEMENTS +----------------------------------------------------------*/ + +fieldset +{ + border:1px solid #ddd; + padding:0 1.4em 1.4em 1.4em; + margin:0 0 1.5em 0; +} + +legend +{ + font-size:1.2em; + font-weight: bold; +} + +textarea +{ + min-height: 75px; +} + +input[type="text"] +{ + width: 200px; + border: 1px solid #CCC; +} + +input[type="password"] +{ + width: 200px; + border: 1px solid #CCC; +} + +/* TABLE +----------------------------------------------------------*/ + +table +{ + border: solid 1px #e8eef4; + border-collapse: collapse; +} + +table td +{ + padding: 5px; + border: solid 1px #e8eef4; +} + +table th +{ + padding: 6px 5px; + text-align: left; + background-color: #e8eef4; + border: solid 1px #e8eef4; +} + +/* MISC +----------------------------------------------------------*/ +.clear +{ + clear: both; +} + +.error +{ + color:Red; +} + +#menucontainer +{ + margin-top:40px; +} + +div#title +{ + display:block; + float:left; + text-align:left; + position: relative; + top: -30px; +} + +#logindisplay +{ + font-size:1.1em; + display:block; + text-align:right; + margin:10px; + color:White; +} + +#logindisplay a:link +{ + color: white; + text-decoration: underline; +} + +#logindisplay a:visited +{ + color: white; + text-decoration: underline; +} + +#logindisplay a:hover +{ + color: white; + text-decoration: none; +} + +/* Styles for validation helpers +-----------------------------------------------------------*/ +.field-validation-error +{ + color: #ff0000; +} + +.field-validation-valid +{ + display: none; +} + +.input-validation-error +{ + border: 1px solid #ff0000; + background-color: #ffeeee; +} + +.validation-summary-errors +{ + font-weight: bold; + color: #ff0000; +} + +.validation-summary-valid +{ + display: none; +} + +/* Styles for editor and display helpers +----------------------------------------------------------*/ +.display-label, +.editor-label +{ + margin: 1em 0 0 0; +} + +.display-field, +.editor-field +{ + margin:0.5em 0 0 0; +} + +.text-box +{ + width: 30em; +} + +.text-box.multi-line +{ + height: 6.5em; +} + +.tri-state +{ + width: 6em; +} diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png new file mode 100644 index 0000000000000000000000000000000000000000..5b5dab2ab7b1c50dea9cfe73dc5a269a92d2d4b4 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^8bF-F!3HG1q!d*FscKIb$B>N1x91EQ4=4yQ7#`R^ z$vje}bP0l+XkK DSH>_4 literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png new file mode 100644 index 0000000000000000000000000000000000000000..ac8b229af950c29356abf64a6c4aa894575445f0 GIT binary patch literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^8bF-F!3HG1q!d*FsY*{5$B>N1x91EQ4=4yQYz+E8 zPo9&<{J;c_6SHRil>2s{Zw^OT)6@jj2u|u!(plXsM>LJD`vD!n;OXk;vd$@?2>^GI BH@yG= literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..ad3d6346e00f246102f72f2e026ed0491988b394 GIT binary patch literal 120 zcmeAS@N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnour0hLi978O6-<~(*I$*%ybaDOn z{W;e!B}_MSUQoPXhYd^Y6RUoS1yepnPx`2Kz)7OXQG!!=-jY=F+d2OOy?#DnJ32>z UEim$g7SJdLPgg&ebxsLQ09~*s;{X5v literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..42ccba269b6e91bef12ad0fa18be651b5ef0ee68 GIT binary patch literal 105 zcmeAS@N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnouqzpV=978O6-=0?FV^9z|eBtf= z|7WztIJ;WT>{+tN>ySr~=F{k$>;_x^_y?afmf9pRKH0)6?eSP?3s5hEr>mdKI;Vst E0O;M1& literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..5a46b47cb16631068aee9e0bd61269fc4e95e5cd GIT binary patch literal 111 zcmeAS@N?(olHy`uVBq!ia0vp^j6gJjgAK^akKnouq|7{B978O6lPf+wIa#m9#>Unb zm^4K~wN3Zq+uP{vDV26o)#~38k_!`W=^oo1w6ixmPC4R1b Tyd6G3lNdZ*{an^LB{Ts5`idse literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9fa6c6edcfcdd3e5b77e6f547b719e6fc66e30 GIT binary patch literal 101 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 literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_2e83ff_256x240.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_2e83ff_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..45e8928e5284adacea3f9ec07b9b50667d2ac65f GIT binary patch literal 4369 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 literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_454545_256x240.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_454545_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec70d11bfb2f77374dfd00ef61ba0c3647b5a0c GIT binary patch literal 4369 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 k*Kv;w;*%(i9W@fAqs5i2wiq literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_888888_256x240.png b/main/MyFriendsAround.Web/Content/themes/base/images/ui-icons_888888_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba708c39172a69e069136bd1309c4322c61f571 GIT binary patch literal 4369 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 literal 0 HcmV?d00001 diff --git a/main/MyFriendsAround.Web/Content/themes/base/jquery-ui.css b/main/MyFriendsAround.Web/Content/themes/base/jquery-ui.css new file mode 100644 index 0000000..522b77f --- /dev/null +++ b/main/MyFriendsAround.Web/Content/themes/base/jquery-ui.css @@ -0,0 +1,635 @@ +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI CSS Framework 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Theming/API + */ + +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { display: none; } +.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } +.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } +.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } +.ui-helper-clearfix { display: inline-block; } +/* required comment for clearfix to work in Opera \*/ +* html .ui-helper-clearfix { height:1%; } +.ui-helper-clearfix { display:block; } +/* end clearfix */ +.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } + + +/* Interaction Cues +----------------------------------*/ +.ui-state-disabled { cursor: default !important; } + + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } + + +/* Misc visuals +----------------------------------*/ + +/* Overlays */ +.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Accordion 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Accordion#theming + */ +/* IE/Win - Fix animation bug - #4615 */ +.ui-accordion { width: 100%; } +.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } +.ui-accordion .ui-accordion-li-fix { display: inline; } +.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } +.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } +.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } +.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } +.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } +.ui-accordion .ui-accordion-content-active { display: block; }/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Autocomplete 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Autocomplete#theming + */ +.ui-autocomplete { position: absolute; cursor: default; } + +/* workarounds */ +* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ + +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Menu 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Menu#theming + */ +.ui-menu { + list-style:none; + padding: 2px; + margin: 0; + display:block; + float: left; +} +.ui-menu .ui-menu { + margin-top: -3px; +} +.ui-menu .ui-menu-item { + margin:0; + padding: 0; + zoom: 1; + float: left; + clear: left; + width: 100%; +} +.ui-menu .ui-menu-item a { + text-decoration:none; + display:block; + padding:.2em .4em; + line-height:1.5; + zoom:1; +} +.ui-menu .ui-menu-item a.ui-state-hover, +.ui-menu .ui-menu-item a.ui-state-active { + font-weight: normal; + margin: -1px; +} +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Button 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Button#theming + */ +.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */ +.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */ +button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */ +.ui-button-icons-only { width: 3.4em; } +button.ui-button-icons-only { width: 3.7em; } + +/*button text element */ +.ui-button .ui-button-text { display: block; line-height: 1.4; } +.ui-button-text-only .ui-button-text { padding: .4em 1em; } +.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; } +.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; } +.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; } +.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; } +/* no icon support for input elements, provide padding by default */ +input.ui-button { padding: .4em 1em; } + +/*button icon element(s) */ +.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; } +.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; } +.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; } +.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } +.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; } + +/*button sets*/ +.ui-buttonset { margin-right: 7px; } +.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; } + +/* workarounds */ +button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */ +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Datepicker 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Datepicker#theming + */ +.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; } +.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } +.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } +.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } +.ui-datepicker .ui-datepicker-prev { left:2px; } +.ui-datepicker .ui-datepicker-next { right:2px; } +.ui-datepicker .ui-datepicker-prev-hover { left:1px; } +.ui-datepicker .ui-datepicker-next-hover { right:1px; } +.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } +.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } +.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; } +.ui-datepicker select.ui-datepicker-month-year {width: 100%;} +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { width: 49%;} +.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } +.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } +.ui-datepicker td { border: 0; padding: 1px; } +.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } +.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } +.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } + +/* with multiple calendars */ +.ui-datepicker.ui-datepicker-multi { width:auto; } +.ui-datepicker-multi .ui-datepicker-group { float:left; } +.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } +.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } +.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } +.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } +.ui-datepicker-row-break { clear:both; width:100%; } + +/* RTL support */ +.ui-datepicker-rtl { direction: rtl; } +.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } +.ui-datepicker-rtl .ui-datepicker-group { float:right; } +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } + +/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ +.ui-datepicker-cover { + display: none; /*sorry for IE5*/ + display/**/: block; /*sorry for IE5*/ + position: absolute; /*must have*/ + z-index: -1; /*must have*/ + filter: mask(); /*must have*/ + top: -4px; /*must have*/ + left: -4px; /*must have*/ + width: 200px; /*must have*/ + height: 200px; /*must have*/ +}/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Dialog 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Dialog#theming + */ +.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } +.ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; } +.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; } +.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } +.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } +.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } +.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } +.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } +.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } +.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } +.ui-draggable .ui-dialog-titlebar { cursor: move; } +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Progressbar 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Progressbar#theming + */ +.ui-progressbar { height:2em; text-align: left; } +.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Resizable 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Resizable#theming + */ +.ui-resizable { position: relative;} +.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} +.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } +.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } +.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } +.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } +.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } +.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } +.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } +.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } +.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Selectable 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Selectable#theming + */ +.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Slider 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Slider#theming + */ +.ui-slider { position: relative; text-align: left; } +.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } +.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } + +.ui-slider-horizontal { height: .8em; } +.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } +.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } +.ui-slider-horizontal .ui-slider-range-min { left: 0; } +.ui-slider-horizontal .ui-slider-range-max { right: 0; } + +.ui-slider-vertical { width: .8em; height: 100px; } +.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } +.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } +.ui-slider-vertical .ui-slider-range-min { bottom: 0; } +.ui-slider-vertical .ui-slider-range-max { top: 0; }/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI Tabs 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Tabs#theming + */ +.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ +.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } +.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } +.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } +.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ +.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } +.ui-tabs .ui-tabs-hide { display: none !important; } +/* + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery UI CSS Framework 1.8.7 + * + * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) + * + * http://docs.jquery.com/UI/Theming/API + * + * To view and modify this theme, visit http://jqueryui.com/themeroller/ + */ + + +/* Component containers +----------------------------------*/ +.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } +.ui-widget .ui-widget { font-size: 1em; } +.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } +.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } +.ui-widget-content a { color: #222222/*{fcContent}*/; } +.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; } +.ui-widget-header a { color: #222222/*{fcHeader}*/; } + +/* Interaction states +----------------------------------*/ +.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; } +.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; } +.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; } +.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; } +.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; } +.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; } +.ui-widget :active { outline: none; } + +/* Interaction Cues +----------------------------------*/ +.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; } +.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } +.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } +.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; } +.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } +.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; } +.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } +.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } +.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } +.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; } +.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; } +.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; } +.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; } +.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; } +.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; } + +/* positioning */ +.ui-icon-carat-1-n { background-position: 0 0; } +.ui-icon-carat-1-ne { background-position: -16px 0; } +.ui-icon-carat-1-e { background-position: -32px 0; } +.ui-icon-carat-1-se { background-position: -48px 0; } +.ui-icon-carat-1-s { background-position: -64px 0; } +.ui-icon-carat-1-sw { background-position: -80px 0; } +.ui-icon-carat-1-w { background-position: -96px 0; } +.ui-icon-carat-1-nw { background-position: -112px 0; } +.ui-icon-carat-2-n-s { background-position: -128px 0; } +.ui-icon-carat-2-e-w { background-position: -144px 0; } +.ui-icon-triangle-1-n { background-position: 0 -16px; } +.ui-icon-triangle-1-ne { background-position: -16px -16px; } +.ui-icon-triangle-1-e { background-position: -32px -16px; } +.ui-icon-triangle-1-se { background-position: -48px -16px; } +.ui-icon-triangle-1-s { background-position: -64px -16px; } +.ui-icon-triangle-1-sw { background-position: -80px -16px; } +.ui-icon-triangle-1-w { background-position: -96px -16px; } +.ui-icon-triangle-1-nw { background-position: -112px -16px; } +.ui-icon-triangle-2-n-s { background-position: -128px -16px; } +.ui-icon-triangle-2-e-w { background-position: -144px -16px; } +.ui-icon-arrow-1-n { background-position: 0 -32px; } +.ui-icon-arrow-1-ne { background-position: -16px -32px; } +.ui-icon-arrow-1-e { background-position: -32px -32px; } +.ui-icon-arrow-1-se { background-position: -48px -32px; } +.ui-icon-arrow-1-s { background-position: -64px -32px; } +.ui-icon-arrow-1-sw { background-position: -80px -32px; } +.ui-icon-arrow-1-w { background-position: -96px -32px; } +.ui-icon-arrow-1-nw { background-position: -112px -32px; } +.ui-icon-arrow-2-n-s { background-position: -128px -32px; } +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } +.ui-icon-arrow-2-e-w { background-position: -160px -32px; } +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } +.ui-icon-arrowstop-1-n { background-position: -192px -32px; } +.ui-icon-arrowstop-1-e { background-position: -208px -32px; } +.ui-icon-arrowstop-1-s { background-position: -224px -32px; } +.ui-icon-arrowstop-1-w { background-position: -240px -32px; } +.ui-icon-arrowthick-1-n { background-position: 0 -48px; } +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } +.ui-icon-arrowthick-1-e { background-position: -32px -48px; } +.ui-icon-arrowthick-1-se { background-position: -48px -48px; } +.ui-icon-arrowthick-1-s { background-position: -64px -48px; } +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } +.ui-icon-arrowthick-1-w { background-position: -96px -48px; } +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } +.ui-icon-arrow-4 { background-position: 0 -80px; } +.ui-icon-arrow-4-diag { background-position: -16px -80px; } +.ui-icon-extlink { background-position: -32px -80px; } +.ui-icon-newwin { background-position: -48px -80px; } +.ui-icon-refresh { background-position: -64px -80px; } +.ui-icon-shuffle { background-position: -80px -80px; } +.ui-icon-transfer-e-w { background-position: -96px -80px; } +.ui-icon-transferthick-e-w { background-position: -112px -80px; } +.ui-icon-folder-collapsed { background-position: 0 -96px; } +.ui-icon-folder-open { background-position: -16px -96px; } +.ui-icon-document { background-position: -32px -96px; } +.ui-icon-document-b { background-position: -48px -96px; } +.ui-icon-note { background-position: -64px -96px; } +.ui-icon-mail-closed { background-position: -80px -96px; } +.ui-icon-mail-open { background-position: -96px -96px; } +.ui-icon-suitcase { background-position: -112px -96px; } +.ui-icon-comment { background-position: -128px -96px; } +.ui-icon-person { background-position: -144px -96px; } +.ui-icon-print { background-position: -160px -96px; } +.ui-icon-trash { background-position: -176px -96px; } +.ui-icon-locked { background-position: -192px -96px; } +.ui-icon-unlocked { background-position: -208px -96px; } +.ui-icon-bookmark { background-position: -224px -96px; } +.ui-icon-tag { background-position: -240px -96px; } +.ui-icon-home { background-position: 0 -112px; } +.ui-icon-flag { background-position: -16px -112px; } +.ui-icon-calendar { background-position: -32px -112px; } +.ui-icon-cart { background-position: -48px -112px; } +.ui-icon-pencil { background-position: -64px -112px; } +.ui-icon-clock { background-position: -80px -112px; } +.ui-icon-disk { background-position: -96px -112px; } +.ui-icon-calculator { background-position: -112px -112px; } +.ui-icon-zoomin { background-position: -128px -112px; } +.ui-icon-zoomout { background-position: -144px -112px; } +.ui-icon-search { background-position: -160px -112px; } +.ui-icon-wrench { background-position: -176px -112px; } +.ui-icon-gear { background-position: -192px -112px; } +.ui-icon-heart { background-position: -208px -112px; } +.ui-icon-star { background-position: -224px -112px; } +.ui-icon-link { background-position: -240px -112px; } +.ui-icon-cancel { background-position: 0 -128px; } +.ui-icon-plus { background-position: -16px -128px; } +.ui-icon-plusthick { background-position: -32px -128px; } +.ui-icon-minus { background-position: -48px -128px; } +.ui-icon-minusthick { background-position: -64px -128px; } +.ui-icon-close { background-position: -80px -128px; } +.ui-icon-closethick { background-position: -96px -128px; } +.ui-icon-key { background-position: -112px -128px; } +.ui-icon-lightbulb { background-position: -128px -128px; } +.ui-icon-scissors { background-position: -144px -128px; } +.ui-icon-clipboard { background-position: -160px -128px; } +.ui-icon-copy { background-position: -176px -128px; } +.ui-icon-contact { background-position: -192px -128px; } +.ui-icon-image { background-position: -208px -128px; } +.ui-icon-video { background-position: -224px -128px; } +.ui-icon-script { background-position: -240px -128px; } +.ui-icon-alert { background-position: 0 -144px; } +.ui-icon-info { background-position: -16px -144px; } +.ui-icon-notice { background-position: -32px -144px; } +.ui-icon-help { background-position: -48px -144px; } +.ui-icon-check { background-position: -64px -144px; } +.ui-icon-bullet { background-position: -80px -144px; } +.ui-icon-radio-off { background-position: -96px -144px; } +.ui-icon-radio-on { background-position: -112px -144px; } +.ui-icon-pin-w { background-position: -128px -144px; } +.ui-icon-pin-s { background-position: -144px -144px; } +.ui-icon-play { background-position: 0 -160px; } +.ui-icon-pause { background-position: -16px -160px; } +.ui-icon-seek-next { background-position: -32px -160px; } +.ui-icon-seek-prev { background-position: -48px -160px; } +.ui-icon-seek-end { background-position: -64px -160px; } +.ui-icon-seek-start { background-position: -80px -160px; } +/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ +.ui-icon-seek-first { background-position: -80px -160px; } +.ui-icon-stop { background-position: -96px -160px; } +.ui-icon-eject { background-position: -112px -160px; } +.ui-icon-volume-off { background-position: -128px -160px; } +.ui-icon-volume-on { background-position: -144px -160px; } +.ui-icon-power { background-position: 0 -176px; } +.ui-icon-signal-diag { background-position: -16px -176px; } +.ui-icon-signal { background-position: -32px -176px; } +.ui-icon-battery-0 { background-position: -48px -176px; } +.ui-icon-battery-1 { background-position: -64px -176px; } +.ui-icon-battery-2 { background-position: -80px -176px; } +.ui-icon-battery-3 { background-position: -96px -176px; } +.ui-icon-circle-plus { background-position: 0 -192px; } +.ui-icon-circle-minus { background-position: -16px -192px; } +.ui-icon-circle-close { background-position: -32px -192px; } +.ui-icon-circle-triangle-e { background-position: -48px -192px; } +.ui-icon-circle-triangle-s { background-position: -64px -192px; } +.ui-icon-circle-triangle-w { background-position: -80px -192px; } +.ui-icon-circle-triangle-n { background-position: -96px -192px; } +.ui-icon-circle-arrow-e { background-position: -112px -192px; } +.ui-icon-circle-arrow-s { background-position: -128px -192px; } +.ui-icon-circle-arrow-w { background-position: -144px -192px; } +.ui-icon-circle-arrow-n { background-position: -160px -192px; } +.ui-icon-circle-zoomin { background-position: -176px -192px; } +.ui-icon-circle-zoomout { background-position: -192px -192px; } +.ui-icon-circle-check { background-position: -208px -192px; } +.ui-icon-circlesmall-plus { background-position: 0 -208px; } +.ui-icon-circlesmall-minus { background-position: -16px -208px; } +.ui-icon-circlesmall-close { background-position: -32px -208px; } +.ui-icon-squaresmall-plus { background-position: -48px -208px; } +.ui-icon-squaresmall-minus { background-position: -64px -208px; } +.ui-icon-squaresmall-close { background-position: -80px -208px; } +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } +.ui-icon-grip-solid-vertical { background-position: -32px -224px; } +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } +.ui-icon-grip-diagonal-se { background-position: -80px -224px; } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +.ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-right { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; border-radius: 4px/*{cornerRadius}*/; } + +/* Overlays */ +.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; } +.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; } \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Controllers/AccountController.cs b/main/MyFriendsAround.Web/Controllers/AccountController.cs new file mode 100644 index 0000000..028b2c9 --- /dev/null +++ b/main/MyFriendsAround.Web/Controllers/AccountController.cs @@ -0,0 +1,151 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.Linq; +using System.Security.Principal; +using System.Web; +using System.Web.Mvc; +using System.Web.Routing; +using System.Web.Security; +using MyFriendsAround.Web.Models; + +namespace MyFriendsAround.Web.Controllers +{ + public class AccountController : Controller + { + + public IFormsAuthenticationService FormsService { get; set; } + public IMembershipService MembershipService { get; set; } + + protected override void Initialize(RequestContext requestContext) + { + if (FormsService == null) { FormsService = new FormsAuthenticationService(); } + if (MembershipService == null) { MembershipService = new AccountMembershipService(); } + + base.Initialize(requestContext); + } + + // ************************************** + // URL: /Account/LogOn + // ************************************** + + public ActionResult LogOn() + { + return View(); + } + + [HttpPost] + public ActionResult LogOn(LogOnModel model, string returnUrl) + { + if (ModelState.IsValid) + { + if (MembershipService.ValidateUser(model.UserName, model.Password)) + { + FormsService.SignIn(model.UserName, model.RememberMe); + if (Url.IsLocalUrl(returnUrl)) + { + return Redirect(returnUrl); + } + else + { + return RedirectToAction("Index", "Home"); + } + } + else + { + ModelState.AddModelError("", "The user name or password provided is incorrect."); + } + } + + // If we got this far, something failed, redisplay form + return View(model); + } + + // ************************************** + // URL: /Account/LogOff + // ************************************** + + public ActionResult LogOff() + { + FormsService.SignOut(); + + return RedirectToAction("Index", "Home"); + } + + // ************************************** + // URL: /Account/Register + // ************************************** + + public ActionResult Register() + { + ViewBag.PasswordLength = MembershipService.MinPasswordLength; + return View(); + } + + [HttpPost] + public ActionResult Register(RegisterModel model) + { + if (ModelState.IsValid) + { + // Attempt to register the user + MembershipCreateStatus createStatus = MembershipService.CreateUser(model.UserName, model.Password, model.Email); + + if (createStatus == MembershipCreateStatus.Success) + { + FormsService.SignIn(model.UserName, false /* createPersistentCookie */); + return RedirectToAction("Index", "Home"); + } + else + { + ModelState.AddModelError("", AccountValidation.ErrorCodeToString(createStatus)); + } + } + + // If we got this far, something failed, redisplay form + ViewBag.PasswordLength = MembershipService.MinPasswordLength; + return View(model); + } + + // ************************************** + // URL: /Account/ChangePassword + // ************************************** + + [Authorize] + public ActionResult ChangePassword() + { + ViewBag.PasswordLength = MembershipService.MinPasswordLength; + return View(); + } + + [Authorize] + [HttpPost] + public ActionResult ChangePassword(ChangePasswordModel model) + { + if (ModelState.IsValid) + { + if (MembershipService.ChangePassword(User.Identity.Name, model.OldPassword, model.NewPassword)) + { + return RedirectToAction("ChangePasswordSuccess"); + } + else + { + ModelState.AddModelError("", "The current password is incorrect or the new password is invalid."); + } + } + + // If we got this far, something failed, redisplay form + ViewBag.PasswordLength = MembershipService.MinPasswordLength; + return View(model); + } + + // ************************************** + // URL: /Account/ChangePasswordSuccess + // ************************************** + + public ActionResult ChangePasswordSuccess() + { + return View(); + } + + } +} diff --git a/main/MyFriendsAround.Web/Controllers/HomeController.cs b/main/MyFriendsAround.Web/Controllers/HomeController.cs new file mode 100644 index 0000000..5644890 --- /dev/null +++ b/main/MyFriendsAround.Web/Controllers/HomeController.cs @@ -0,0 +1,62 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using GoogleMaps.Models; +using MyFriendsAround.Data.BLL; + +namespace MyFriendsAround.Web.Controllers +{ + [HandleError] + public class HomeController : Controller + { + public ActionResult Index() + { + ViewBag.Message = "Welcome to My Friends Around community site."; + + return View(); + } + + public ActionResult About() + { + return View(); + } + + [OutputCache(NoStore = true, Duration = 0)] + public ActionResult GetMarkers() + { + // This would normally be our call to the Db, else we could populate this + // with some data as Ive done here. + MarkerList markers = GetMarkersObjects(); + + return Json(markers, JsonRequestBehavior.AllowGet); + } + + + /// + /// Gets the markers. This data could be filled with whatever you + /// set from your DB. + /// + /// + public static MarkerList GetMarkersObjects() + { + MarkerList list = new MarkerList(); + list.markers = new List(); + + FriendsRepository.GetFriends().ForEach(f => + { + Marker marker = new Marker + { + html = f.FriendName, + lat = f.Latitude.ToString(), + lng = f.Longitude.ToString(), + label = f.FriendName + }; + list.markers.Add(marker); + }); + + return list; + } + } +} diff --git a/main/MyFriendsAround.Web/Global.asax b/main/MyFriendsAround.Web/Global.asax new file mode 100644 index 0000000..ac9329c --- /dev/null +++ b/main/MyFriendsAround.Web/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="MyFriendsAround.Web.MvcApplication" Language="C#" %> diff --git a/main/MyFriendsAround.Web/Global.asax.cs b/main/MyFriendsAround.Web/Global.asax.cs new file mode 100644 index 0000000..7390013 --- /dev/null +++ b/main/MyFriendsAround.Web/Global.asax.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.ServiceModel.Activation; +using System.Web; +using System.Web.Mvc; +using System.Web.Routing; + +namespace MyFriendsAround.Web +{ + // Note: For instructions on enabling IIS6 or IIS7 classic mode, + // visit http://go.microsoft.com/?LinkId=9394801 + + public class MvcApplication : System.Web.HttpApplication + { + public static void RegisterGlobalFilters(GlobalFilterCollection filters) + { + filters.Add(new HandleErrorAttribute()); + } + + public static void RegisterRoutes(RouteCollection routes) + { + routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); + + routes.MapRoute( + "Default", // Route name + "{controller}/{action}/{id}", // URL with parameters + new + { + controller = "Home", + action = "Index", + id = UrlParameter.Optional + } // Parameter defaults + ,new { controller = "^(?!myfriends).*" } + ); + + RouteTable.Routes.Add(new ServiceRoute("myfriends", new WebServiceHostFactory(), typeof(myfriends))); + + + } + + protected void Application_Start() + { + AreaRegistration.RegisterAllAreas(); + + RegisterGlobalFilters(GlobalFilters.Filters); + RegisterRoutes(RouteTable.Routes); + } + } +} \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Models/AccountModels.cs b/main/MyFriendsAround.Web/Models/AccountModels.cs new file mode 100644 index 0000000..7776fd6 --- /dev/null +++ b/main/MyFriendsAround.Web/Models/AccountModels.cs @@ -0,0 +1,251 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.ComponentModel.DataAnnotations; +using System.Globalization; +using System.Linq; +using System.Web; +using System.Web.Mvc; +using System.Web.Security; + +namespace MyFriendsAround.Web.Models +{ + + #region Models + + public class ChangePasswordModel + { + [Required] + [DataType(DataType.Password)] + [Display(Name = "Current password")] + public string OldPassword { get; set; } + + [Required] + [ValidatePasswordLength] + [DataType(DataType.Password)] + [Display(Name = "New password")] + public string NewPassword { get; set; } + + [DataType(DataType.Password)] + [Display(Name = "Confirm new password")] + [Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")] + public string ConfirmPassword { get; set; } + } + + public class LogOnModel + { + [Required] + [Display(Name = "User name")] + public string UserName { get; set; } + + [Required] + [DataType(DataType.Password)] + [Display(Name = "Password")] + public string Password { get; set; } + + [Display(Name = "Remember me?")] + public bool RememberMe { get; set; } + } + + + public class RegisterModel + { + [Required] + [Display(Name = "User name")] + public string UserName { get; set; } + + [Required] + [DataType(DataType.EmailAddress)] + [Display(Name = "Email address")] + public string Email { get; set; } + + [Required] + [ValidatePasswordLength] + [DataType(DataType.Password)] + [Display(Name = "Password")] + public string Password { get; set; } + + [DataType(DataType.Password)] + [Display(Name = "Confirm password")] + [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")] + public string ConfirmPassword { get; set; } + } + #endregion + + #region Services + // The FormsAuthentication type is sealed and contains static members, so it is difficult to + // unit test code that calls its members. The interface and helper class below demonstrate + // how to create an abstract wrapper around such a type in order to make the AccountController + // code unit testable. + + public interface IMembershipService + { + int MinPasswordLength { get; } + + bool ValidateUser(string userName, string password); + MembershipCreateStatus CreateUser(string userName, string password, string email); + bool ChangePassword(string userName, string oldPassword, string newPassword); + } + + public class AccountMembershipService : IMembershipService + { + private readonly MembershipProvider _provider; + + public AccountMembershipService() + : this(null) + { + } + + public AccountMembershipService(MembershipProvider provider) + { + _provider = provider ?? Membership.Provider; + } + + public int MinPasswordLength + { + get + { + return _provider.MinRequiredPasswordLength; + } + } + + public bool ValidateUser(string userName, string password) + { + if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName"); + if (String.IsNullOrEmpty(password)) throw new ArgumentException("Value cannot be null or empty.", "password"); + + return _provider.ValidateUser(userName, password); + } + + public MembershipCreateStatus CreateUser(string userName, string password, string email) + { + if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName"); + if (String.IsNullOrEmpty(password)) throw new ArgumentException("Value cannot be null or empty.", "password"); + if (String.IsNullOrEmpty(email)) throw new ArgumentException("Value cannot be null or empty.", "email"); + + MembershipCreateStatus status; + _provider.CreateUser(userName, password, email, null, null, true, null, out status); + return status; + } + + public bool ChangePassword(string userName, string oldPassword, string newPassword) + { + if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName"); + if (String.IsNullOrEmpty(oldPassword)) throw new ArgumentException("Value cannot be null or empty.", "oldPassword"); + if (String.IsNullOrEmpty(newPassword)) throw new ArgumentException("Value cannot be null or empty.", "newPassword"); + + // The underlying ChangePassword() will throw an exception rather + // than return false in certain failure scenarios. + try + { + MembershipUser currentUser = _provider.GetUser(userName, true /* userIsOnline */); + return currentUser.ChangePassword(oldPassword, newPassword); + } + catch (ArgumentException) + { + return false; + } + catch (MembershipPasswordException) + { + return false; + } + } + } + + public interface IFormsAuthenticationService + { + void SignIn(string userName, bool createPersistentCookie); + void SignOut(); + } + + public class FormsAuthenticationService : IFormsAuthenticationService + { + public void SignIn(string userName, bool createPersistentCookie) + { + if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName"); + + FormsAuthentication.SetAuthCookie(userName, createPersistentCookie); + } + + public void SignOut() + { + FormsAuthentication.SignOut(); + } + } + #endregion + + #region Validation + public static class AccountValidation + { + public static string ErrorCodeToString(MembershipCreateStatus createStatus) + { + // See http://go.microsoft.com/fwlink/?LinkID=177550 for + // a full list of status codes. + switch (createStatus) + { + case MembershipCreateStatus.DuplicateUserName: + return "Username already exists. Please enter a different user name."; + + case MembershipCreateStatus.DuplicateEmail: + return "A username for that e-mail address already exists. Please enter a different e-mail address."; + + case MembershipCreateStatus.InvalidPassword: + return "The password provided is invalid. Please enter a valid password value."; + + case MembershipCreateStatus.InvalidEmail: + return "The e-mail address provided is invalid. Please check the value and try again."; + + case MembershipCreateStatus.InvalidAnswer: + return "The password retrieval answer provided is invalid. Please check the value and try again."; + + case MembershipCreateStatus.InvalidQuestion: + return "The password retrieval question provided is invalid. Please check the value and try again."; + + case MembershipCreateStatus.InvalidUserName: + return "The user name provided is invalid. Please check the value and try again."; + + case MembershipCreateStatus.ProviderError: + return "The authentication provider returned an error. Please verify your entry and try again. If the problem persists, please contact your system administrator."; + + case MembershipCreateStatus.UserRejected: + return "The user creation request has been canceled. Please verify your entry and try again. If the problem persists, please contact your system administrator."; + + default: + return "An unknown error occurred. Please verify your entry and try again. If the problem persists, please contact your system administrator."; + } + } + } + + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = true)] + public sealed class ValidatePasswordLengthAttribute : ValidationAttribute, IClientValidatable + { + private const string _defaultErrorMessage = "'{0}' must be at least {1} characters long."; + private readonly int _minCharacters = Membership.Provider.MinRequiredPasswordLength; + + public ValidatePasswordLengthAttribute() + : base(_defaultErrorMessage) + { + } + + public override string FormatErrorMessage(string name) + { + return String.Format(CultureInfo.CurrentCulture, ErrorMessageString, + name, _minCharacters); + } + + public override bool IsValid(object value) + { + string valueAsString = value as string; + return (valueAsString != null && valueAsString.Length >= _minCharacters); + } + + public IEnumerable GetClientValidationRules(ModelMetadata metadata, ControllerContext context) + { + return new[]{ + new ModelClientValidationStringLengthRule(FormatErrorMessage(metadata.GetDisplayName()), _minCharacters, int.MaxValue) + }; + } + } + #endregion + +} diff --git a/main/MyFriendsAround.Web/Models/MapsHelper.cs b/main/MyFriendsAround.Web/Models/MapsHelper.cs new file mode 100644 index 0000000..f8db802 --- /dev/null +++ b/main/MyFriendsAround.Web/Models/MapsHelper.cs @@ -0,0 +1,44 @@ +using System.Text; +using System.Web.Mvc; + +namespace GoogleMaps.Models +{ + public static class MapsHelper + { + /// + /// Draws the map. + /// + /// The helper. + /// The key. + /// The json URL. + /// Width of the map. + /// Height of the map. + /// The html of the map. + public static string DrawMap(this HtmlHelper helper, string key, string jsonUrl, string mapWidth, string mapHeight) + { + StringBuilder mapHtml = new StringBuilder(); + + // Google Maps API Link + mapHtml.Append(""); + + // Hidden value + mapHtml.Append(""); + + // Map Div + mapHtml.Append("
"); + + // Maps javascript file + mapHtml.Append(""); + + return mapHtml.ToString(); + } + } +} diff --git a/main/MyFriendsAround.Web/Models/Markers.cs b/main/MyFriendsAround.Web/Models/Markers.cs new file mode 100644 index 0000000..4d21ec8 --- /dev/null +++ b/main/MyFriendsAround.Web/Models/Markers.cs @@ -0,0 +1,17 @@ +using System.Collections.Generic; + +namespace GoogleMaps.Models +{ + public class MarkerList + { + public List markers { get; set; } + } + + public class Marker + { + public string lat { get; set; } + public string lng { get; set; } + public string html { get; set; } + public string label { get; set; } + } +} diff --git a/main/MyFriendsAround.Web/MyFriendsAround.Web.csproj b/main/MyFriendsAround.Web/MyFriendsAround.Web.csproj new file mode 100644 index 0000000..1f55d36 --- /dev/null +++ b/main/MyFriendsAround.Web/MyFriendsAround.Web.csproj @@ -0,0 +1,202 @@ + + + + Debug + AnyCPU + + + 2.0 + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D} + {E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + MyFriendsAround.Web + MyFriendsAround.Web + v4.0 + false + false + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + true + bin\ + DEBUG;TRACE + full + AnyCPU + bin\MyFriendsAround.Web.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets + true + ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Global.asax + + + + + + myfriends.svc + + + + + + + + + + + Web.config + + + Web.config + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {80664694-C63F-4653-B3FC-617AEC468B3C} + MyFriendsAround.Common + + + {C78D400C-204A-4FAE-B63E-4D86A9871641} + MyFriendsAround.BLL + + + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33} + MyFriendsAround.Data + + + + + + + + + + + + + False + False + 55672 + / + + + False + False + + + False + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Properties/AssemblyInfo.cs b/main/MyFriendsAround.Web/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..dbbabe3 --- /dev/null +++ b/main/MyFriendsAround.Web/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MyFriendsAround.Web")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("MyFriendsAround.Web")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("abe9343c-895e-49d6-b407-4f1255efe297")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/main/MyFriendsAround.Web/Scripts/GoogleMapping.js b/main/MyFriendsAround.Web/Scripts/GoogleMapping.js new file mode 100644 index 0000000..d36672a --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/GoogleMapping.js @@ -0,0 +1,62 @@ +if (GBrowserIsCompatible()) { + + // Build up the map + var map = new GMap(document.getElementById("map")); + map.setCenter(new google.maps.LatLng(51.44, -0.18), 2); + map.addControl(new GLargeMapControl()); + map.addControl(new GMapTypeControl()); + + var gmarkers = []; + var htmls = []; + var i = 0; + + // A function to create the marker and set up the event window + function createMarker(point, name, html) { + var marker = new GMarker(point); + GEvent.addListener(marker, "click", function() { + marker.openInfoWindowHtml(html); + }); + // save the info we need to use later for the side_bar + gmarkers[i] = marker; + htmls[i] = html; + + i++; + return marker; + } + + // This function picks up the click and opens the corresponding info window + function myclick(i) { + gmarkers[i].openInfoWindowHtml(htmls[i]); + } + + // Process the Json file + processJson = function(doc) { + var jsonData = eval('(' + doc + ')'); + + // Plot the markers + for (var i = 0; i < jsonData.markers.length; i++) { + var point = new GLatLng(jsonData.markers[i].lat, jsonData.markers[i].lng); + var marker = createMarker(point, jsonData.markers[i].label, jsonData.markers[i].html); + map.addOverlay(marker); + } + } + + processmarkers = function (jsonData) { + // Plot the markers + map.clearOverlays(); + for (var i = 0; i < jsonData.markers.length; i++) { + var point = new GLatLng(jsonData.markers[i].lat, jsonData.markers[i].lng); + var marker = createMarker(point, jsonData.markers[i].label, jsonData.markers[i].html); + map.addOverlay(marker); + } + } + + // Read from the hidden value and fetch the Json file. + var markerUrl = document.getElementById("MarkerUrl").value; + GDownloadUrl(markerUrl, processJson); + +} + +else { + alert("Sorry, the Google Maps API is not compatible with this browser"); +} \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Scripts/GoogleMapping.min.js b/main/MyFriendsAround.Web/Scripts/GoogleMapping.min.js new file mode 100644 index 0000000..8249847 --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/GoogleMapping.min.js @@ -0,0 +1 @@ +if (GBrowserIsCompatible()) { var map = new GMap(document.getElementById("map")); map.setCenter(new google.maps.LatLng(51.44, -0.18), 5); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); var gmarkers = []; var htmls = []; var i = 0; function createMarker(a, c, d) { var b = new GMarker(a); GEvent.addListener(b, "click", function() { b.openInfoWindowHtml(d) }); gmarkers[i] = b; htmls[i] = d; i++; return b } function myclick(a) { gmarkers[a].openInfoWindowHtml(htmls[a]) } processJson = function(doc) { var jsonData = eval("(" + doc + ")"); for (var i = 0; i < jsonData.markers.length; i++) { var point = new GLatLng(jsonData.markers[i].lat, jsonData.markers[i].lng); var marker = createMarker(point, jsonData.markers[i].label, jsonData.markers[i].html); map.addOverlay(marker) } }; var markerUrl = document.getElementById("MarkerUrl").value; GDownloadUrl(markerUrl, processJson) } else { alert("Sorry, the Google Maps API is not compatible with this browser") }; \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Scripts/MicrosoftAjax.debug.js b/main/MyFriendsAround.Web/Scripts/MicrosoftAjax.debug.js new file mode 100644 index 0000000..51d7b06 --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/MicrosoftAjax.debug.js @@ -0,0 +1,7117 @@ +// Name: MicrosoftAjax.debug.js +// Assembly: System.Web.Extensions +// Version: 4.0.0.0 +// FileVersion: 4.0.20526.0 +//----------------------------------------------------------------------- +// Copyright (C) Microsoft Corporation. All rights reserved. +//----------------------------------------------------------------------- +// MicrosoftAjax.js +// Microsoft AJAX Framework. + +Function.__typeName = 'Function'; +Function.__class = true; +Function.createCallback = function Function$createCallback(method, context) { + ///
+ /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "method", type: Function}, + {name: "context", mayBeNull: true} + ]); + if (e) throw e; + return function() { + var l = arguments.length; + if (l > 0) { + var args = []; + for (var i = 0; i < l; i++) { + args[i] = arguments[i]; + } + args[l] = context; + return method.apply(this, args); + } + return method.call(this, context); + } +} +Function.createDelegate = function Function$createDelegate(instance, method) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance", mayBeNull: true}, + {name: "method", type: Function} + ]); + if (e) throw e; + return function() { + return method.apply(instance, arguments); + } +} +Function.emptyFunction = Function.emptyMethod = function Function$emptyMethod() { + /// +} +Function.validateParameters = function Function$validateParameters(parameters, expectedParameters, validateParameterCount) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "parameters"}, + {name: "expectedParameters"}, + {name: "validateParameterCount", type: Boolean, optional: true} + ]); + if (e) throw e; + return Function._validateParams(parameters, expectedParameters, validateParameterCount); +} +Function._validateParams = function Function$_validateParams(params, expectedParams, validateParameterCount) { + var e, expectedLength = expectedParams.length; + validateParameterCount = validateParameterCount || (typeof(validateParameterCount) === "undefined"); + e = Function._validateParameterCount(params, expectedParams, validateParameterCount); + if (e) { + e.popStackFrame(); + return e; + } + for (var i = 0, l = params.length; i < l; i++) { + var expectedParam = expectedParams[Math.min(i, expectedLength - 1)], + paramName = expectedParam.name; + if (expectedParam.parameterArray) { + paramName += "[" + (i - expectedLength + 1) + "]"; + } + else if (!validateParameterCount && (i >= expectedLength)) { + break; + } + e = Function._validateParameter(params[i], expectedParam, paramName); + if (e) { + e.popStackFrame(); + return e; + } + } + return null; +} +Function._validateParameterCount = function Function$_validateParameterCount(params, expectedParams, validateParameterCount) { + var i, error, + expectedLen = expectedParams.length, + actualLen = params.length; + if (actualLen < expectedLen) { + var minParams = expectedLen; + for (i = 0; i < expectedLen; i++) { + var param = expectedParams[i]; + if (param.optional || param.parameterArray) { + minParams--; + } + } + if (actualLen < minParams) { + error = true; + } + } + else if (validateParameterCount && (actualLen > expectedLen)) { + error = true; + for (i = 0; i < expectedLen; i++) { + if (expectedParams[i].parameterArray) { + error = false; + break; + } + } + } + if (error) { + var e = Error.parameterCount(); + e.popStackFrame(); + return e; + } + return null; +} +Function._validateParameter = function Function$_validateParameter(param, expectedParam, paramName) { + var e, + expectedType = expectedParam.type, + expectedInteger = !!expectedParam.integer, + expectedDomElement = !!expectedParam.domElement, + mayBeNull = !!expectedParam.mayBeNull; + e = Function._validateParameterType(param, expectedType, expectedInteger, expectedDomElement, mayBeNull, paramName); + if (e) { + e.popStackFrame(); + return e; + } + var expectedElementType = expectedParam.elementType, + elementMayBeNull = !!expectedParam.elementMayBeNull; + if (expectedType === Array && typeof(param) !== "undefined" && param !== null && + (expectedElementType || !elementMayBeNull)) { + var expectedElementInteger = !!expectedParam.elementInteger, + expectedElementDomElement = !!expectedParam.elementDomElement; + for (var i=0; i < param.length; i++) { + var elem = param[i]; + e = Function._validateParameterType(elem, expectedElementType, + expectedElementInteger, expectedElementDomElement, elementMayBeNull, + paramName + "[" + i + "]"); + if (e) { + e.popStackFrame(); + return e; + } + } + } + return null; +} +Function._validateParameterType = function Function$_validateParameterType(param, expectedType, expectedInteger, expectedDomElement, mayBeNull, paramName) { + var e, i; + if (typeof(param) === "undefined") { + if (mayBeNull) { + return null; + } + else { + e = Error.argumentUndefined(paramName); + e.popStackFrame(); + return e; + } + } + if (param === null) { + if (mayBeNull) { + return null; + } + else { + e = Error.argumentNull(paramName); + e.popStackFrame(); + return e; + } + } + if (expectedType && expectedType.__enum) { + if (typeof(param) !== 'number') { + e = Error.argumentType(paramName, Object.getType(param), expectedType); + e.popStackFrame(); + return e; + } + if ((param % 1) === 0) { + var values = expectedType.prototype; + if (!expectedType.__flags || (param === 0)) { + for (i in values) { + if (values[i] === param) return null; + } + } + else { + var v = param; + for (i in values) { + var vali = values[i]; + if (vali === 0) continue; + if ((vali & param) === vali) { + v -= vali; + } + if (v === 0) return null; + } + } + } + e = Error.argumentOutOfRange(paramName, param, String.format(Sys.Res.enumInvalidValue, param, expectedType.getName())); + e.popStackFrame(); + return e; + } + if (expectedDomElement && (!Sys._isDomElement(param) || (param.nodeType === 3))) { + e = Error.argument(paramName, Sys.Res.argumentDomElement); + e.popStackFrame(); + return e; + } + if (expectedType && !Sys._isInstanceOfType(expectedType, param)) { + e = Error.argumentType(paramName, Object.getType(param), expectedType); + e.popStackFrame(); + return e; + } + if (expectedType === Number && expectedInteger) { + if ((param % 1) !== 0) { + e = Error.argumentOutOfRange(paramName, param, Sys.Res.argumentInteger); + e.popStackFrame(); + return e; + } + } + return null; +} + +Error.__typeName = 'Error'; +Error.__class = true; +Error.create = function Error$create(message, errorInfo) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "message", type: String, mayBeNull: true, optional: true}, + {name: "errorInfo", mayBeNull: true, optional: true} + ]); + if (e) throw e; + var err = new Error(message); + err.message = message; + if (errorInfo) { + for (var v in errorInfo) { + err[v] = errorInfo[v]; + } + } + err.popStackFrame(); + return err; +} +Error.argument = function Error$argument(paramName, message) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "paramName", type: String, mayBeNull: true, optional: true}, + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.ArgumentException: " + (message ? message : Sys.Res.argument); + if (paramName) { + displayMessage += "\n" + String.format(Sys.Res.paramName, paramName); + } + var err = Error.create(displayMessage, { name: "Sys.ArgumentException", paramName: paramName }); + err.popStackFrame(); + return err; +} +Error.argumentNull = function Error$argumentNull(paramName, message) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "paramName", type: String, mayBeNull: true, optional: true}, + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.ArgumentNullException: " + (message ? message : Sys.Res.argumentNull); + if (paramName) { + displayMessage += "\n" + String.format(Sys.Res.paramName, paramName); + } + var err = Error.create(displayMessage, { name: "Sys.ArgumentNullException", paramName: paramName }); + err.popStackFrame(); + return err; +} +Error.argumentOutOfRange = function Error$argumentOutOfRange(paramName, actualValue, message) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "paramName", type: String, mayBeNull: true, optional: true}, + {name: "actualValue", mayBeNull: true, optional: true}, + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.ArgumentOutOfRangeException: " + (message ? message : Sys.Res.argumentOutOfRange); + if (paramName) { + displayMessage += "\n" + String.format(Sys.Res.paramName, paramName); + } + if (typeof(actualValue) !== "undefined" && actualValue !== null) { + displayMessage += "\n" + String.format(Sys.Res.actualValue, actualValue); + } + var err = Error.create(displayMessage, { + name: "Sys.ArgumentOutOfRangeException", + paramName: paramName, + actualValue: actualValue + }); + err.popStackFrame(); + return err; +} +Error.argumentType = function Error$argumentType(paramName, actualType, expectedType, message) { + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "paramName", type: String, mayBeNull: true, optional: true}, + {name: "actualType", type: Type, mayBeNull: true, optional: true}, + {name: "expectedType", type: Type, mayBeNull: true, optional: true}, + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.ArgumentTypeException: "; + if (message) { + displayMessage += message; + } + else if (actualType && expectedType) { + displayMessage += + String.format(Sys.Res.argumentTypeWithTypes, actualType.getName(), expectedType.getName()); + } + else { + displayMessage += Sys.Res.argumentType; + } + if (paramName) { + displayMessage += "\n" + String.format(Sys.Res.paramName, paramName); + } + var err = Error.create(displayMessage, { + name: "Sys.ArgumentTypeException", + paramName: paramName, + actualType: actualType, + expectedType: expectedType + }); + err.popStackFrame(); + return err; +} +Error.argumentUndefined = function Error$argumentUndefined(paramName, message) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "paramName", type: String, mayBeNull: true, optional: true}, + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.ArgumentUndefinedException: " + (message ? message : Sys.Res.argumentUndefined); + if (paramName) { + displayMessage += "\n" + String.format(Sys.Res.paramName, paramName); + } + var err = Error.create(displayMessage, { name: "Sys.ArgumentUndefinedException", paramName: paramName }); + err.popStackFrame(); + return err; +} +Error.format = function Error$format(message) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.FormatException: " + (message ? message : Sys.Res.format); + var err = Error.create(displayMessage, {name: 'Sys.FormatException'}); + err.popStackFrame(); + return err; +} +Error.invalidOperation = function Error$invalidOperation(message) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.InvalidOperationException: " + (message ? message : Sys.Res.invalidOperation); + var err = Error.create(displayMessage, {name: 'Sys.InvalidOperationException'}); + err.popStackFrame(); + return err; +} +Error.notImplemented = function Error$notImplemented(message) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.NotImplementedException: " + (message ? message : Sys.Res.notImplemented); + var err = Error.create(displayMessage, {name: 'Sys.NotImplementedException'}); + err.popStackFrame(); + return err; +} +Error.parameterCount = function Error$parameterCount(message) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "message", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var displayMessage = "Sys.ParameterCountException: " + (message ? message : Sys.Res.parameterCount); + var err = Error.create(displayMessage, {name: 'Sys.ParameterCountException'}); + err.popStackFrame(); + return err; +} +Error.prototype.popStackFrame = function Error$popStackFrame() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (typeof(this.stack) === "undefined" || this.stack === null || + typeof(this.fileName) === "undefined" || this.fileName === null || + typeof(this.lineNumber) === "undefined" || this.lineNumber === null) { + return; + } + var stackFrames = this.stack.split("\n"); + var currentFrame = stackFrames[0]; + var pattern = this.fileName + ":" + this.lineNumber; + while(typeof(currentFrame) !== "undefined" && + currentFrame !== null && + currentFrame.indexOf(pattern) === -1) { + stackFrames.shift(); + currentFrame = stackFrames[0]; + } + var nextFrame = stackFrames[1]; + if (typeof(nextFrame) === "undefined" || nextFrame === null) { + return; + } + var nextFrameParts = nextFrame.match(/@(.*):(\d+)$/); + if (typeof(nextFrameParts) === "undefined" || nextFrameParts === null) { + return; + } + this.fileName = nextFrameParts[1]; + this.lineNumber = parseInt(nextFrameParts[2]); + stackFrames.shift(); + this.stack = stackFrames.join("\n"); +} + +Object.__typeName = 'Object'; +Object.__class = true; +Object.getType = function Object$getType(instance) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance"} + ]); + if (e) throw e; + var ctor = instance.constructor; + if (!ctor || (typeof(ctor) !== "function") || !ctor.__typeName || (ctor.__typeName === 'Object')) { + return Object; + } + return ctor; +} +Object.getTypeName = function Object$getTypeName(instance) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance"} + ]); + if (e) throw e; + return Object.getType(instance).getName(); +} + +String.__typeName = 'String'; +String.__class = true; +String.prototype.endsWith = function String$endsWith(suffix) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "suffix", type: String} + ]); + if (e) throw e; + return (this.substr(this.length - suffix.length) === suffix); +} +String.prototype.startsWith = function String$startsWith(prefix) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "prefix", type: String} + ]); + if (e) throw e; + return (this.substr(0, prefix.length) === prefix); +} +String.prototype.trim = function String$trim() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this.replace(/^\s+|\s+$/g, ''); +} +String.prototype.trimEnd = function String$trimEnd() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this.replace(/\s+$/, ''); +} +String.prototype.trimStart = function String$trimStart() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this.replace(/^\s+/, ''); +} +String.format = function String$format(format, args) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "format", type: String}, + {name: "args", mayBeNull: true, parameterArray: true} + ]); + if (e) throw e; + return String._toFormattedString(false, arguments); +} +String._toFormattedString = function String$_toFormattedString(useLocale, args) { + var result = ''; + var format = args[0]; + for (var i=0;;) { + var open = format.indexOf('{', i); + var close = format.indexOf('}', i); + if ((open < 0) && (close < 0)) { + result += format.slice(i); + break; + } + if ((close > 0) && ((close < open) || (open < 0))) { + if (format.charAt(close + 1) !== '}') { + throw Error.argument('format', Sys.Res.stringFormatBraceMismatch); + } + result += format.slice(i, close + 1); + i = close + 2; + continue; + } + result += format.slice(i, open); + i = open + 1; + if (format.charAt(i) === '{') { + result += '{'; + i++; + continue; + } + if (close < 0) throw Error.argument('format', Sys.Res.stringFormatBraceMismatch); + var brace = format.substring(i, close); + var colonIndex = brace.indexOf(':'); + var argNumber = parseInt((colonIndex < 0)? brace : brace.substring(0, colonIndex), 10) + 1; + if (isNaN(argNumber)) throw Error.argument('format', Sys.Res.stringFormatInvalid); + var argFormat = (colonIndex < 0)? '' : brace.substring(colonIndex + 1); + var arg = args[argNumber]; + if (typeof(arg) === "undefined" || arg === null) { + arg = ''; + } + if (arg.toFormattedString) { + result += arg.toFormattedString(argFormat); + } + else if (useLocale && arg.localeFormat) { + result += arg.localeFormat(argFormat); + } + else if (arg.format) { + result += arg.format(argFormat); + } + else + result += arg.toString(); + i = close + 1; + } + return result; +} + +Boolean.__typeName = 'Boolean'; +Boolean.__class = true; +Boolean.parse = function Boolean$parse(value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String} + ], false); + if (e) throw e; + var v = value.trim().toLowerCase(); + if (v === 'false') return false; + if (v === 'true') return true; + throw Error.argumentOutOfRange('value', value, Sys.Res.boolTrueOrFalse); +} + +Date.__typeName = 'Date'; +Date.__class = true; + +Number.__typeName = 'Number'; +Number.__class = true; + +RegExp.__typeName = 'RegExp'; +RegExp.__class = true; + +if (!window) this.window = this; +window.Type = Function; +Type.__fullyQualifiedIdentifierRegExp = new RegExp("^[^.0-9 \\s|,;:&*=+\\-()\\[\\]{}^%#@!~\\n\\r\\t\\f\\\\]([^ \\s|,;:&*=+\\-()\\[\\]{}^%#@!~\\n\\r\\t\\f\\\\]*[^. \\s|,;:&*=+\\-()\\[\\]{}^%#@!~\\n\\r\\t\\f\\\\])?$", "i"); +Type.__identifierRegExp = new RegExp("^[^.0-9 \\s|,;:&*=+\\-()\\[\\]{}^%#@!~\\n\\r\\t\\f\\\\][^. \\s|,;:&*=+\\-()\\[\\]{}^%#@!~\\n\\r\\t\\f\\\\]*$", "i"); +Type.prototype.callBaseMethod = function Type$callBaseMethod(instance, name, baseArguments) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance"}, + {name: "name", type: String}, + {name: "baseArguments", type: Array, mayBeNull: true, optional: true, elementMayBeNull: true} + ]); + if (e) throw e; + var baseMethod = Sys._getBaseMethod(this, instance, name); + if (!baseMethod) throw Error.invalidOperation(String.format(Sys.Res.methodNotFound, name)); + if (!baseArguments) { + return baseMethod.apply(instance); + } + else { + return baseMethod.apply(instance, baseArguments); + } +} +Type.prototype.getBaseMethod = function Type$getBaseMethod(instance, name) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance"}, + {name: "name", type: String} + ]); + if (e) throw e; + return Sys._getBaseMethod(this, instance, name); +} +Type.prototype.getBaseType = function Type$getBaseType() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return (typeof(this.__baseType) === "undefined") ? null : this.__baseType; +} +Type.prototype.getInterfaces = function Type$getInterfaces() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var result = []; + var type = this; + while(type) { + var interfaces = type.__interfaces; + if (interfaces) { + for (var i = 0, l = interfaces.length; i < l; i++) { + var interfaceType = interfaces[i]; + if (!Array.contains(result, interfaceType)) { + result[result.length] = interfaceType; + } + } + } + type = type.__baseType; + } + return result; +} +Type.prototype.getName = function Type$getName() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return (typeof(this.__typeName) === "undefined") ? "" : this.__typeName; +} +Type.prototype.implementsInterface = function Type$implementsInterface(interfaceType) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "interfaceType", type: Type} + ]); + if (e) throw e; + this.resolveInheritance(); + var interfaceName = interfaceType.getName(); + var cache = this.__interfaceCache; + if (cache) { + var cacheEntry = cache[interfaceName]; + if (typeof(cacheEntry) !== 'undefined') return cacheEntry; + } + else { + cache = this.__interfaceCache = {}; + } + var baseType = this; + while (baseType) { + var interfaces = baseType.__interfaces; + if (interfaces) { + if (Array.indexOf(interfaces, interfaceType) !== -1) { + return cache[interfaceName] = true; + } + } + baseType = baseType.__baseType; + } + return cache[interfaceName] = false; +} +Type.prototype.inheritsFrom = function Type$inheritsFrom(parentType) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "parentType", type: Type} + ]); + if (e) throw e; + this.resolveInheritance(); + var baseType = this.__baseType; + while (baseType) { + if (baseType === parentType) { + return true; + } + baseType = baseType.__baseType; + } + return false; +} +Type.prototype.initializeBase = function Type$initializeBase(instance, baseArguments) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance"}, + {name: "baseArguments", type: Array, mayBeNull: true, optional: true, elementMayBeNull: true} + ]); + if (e) throw e; + if (!Sys._isInstanceOfType(this, instance)) throw Error.argumentType('instance', Object.getType(instance), this); + this.resolveInheritance(); + if (this.__baseType) { + if (!baseArguments) { + this.__baseType.apply(instance); + } + else { + this.__baseType.apply(instance, baseArguments); + } + } + return instance; +} +Type.prototype.isImplementedBy = function Type$isImplementedBy(instance) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance", mayBeNull: true} + ]); + if (e) throw e; + if (typeof(instance) === "undefined" || instance === null) return false; + var instanceType = Object.getType(instance); + return !!(instanceType.implementsInterface && instanceType.implementsInterface(this)); +} +Type.prototype.isInstanceOfType = function Type$isInstanceOfType(instance) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "instance", mayBeNull: true} + ]); + if (e) throw e; + return Sys._isInstanceOfType(this, instance); +} +Type.prototype.registerClass = function Type$registerClass(typeName, baseType, interfaceTypes) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "typeName", type: String}, + {name: "baseType", type: Type, mayBeNull: true, optional: true}, + {name: "interfaceTypes", type: Type, parameterArray: true} + ]); + if (e) throw e; + if (!Type.__fullyQualifiedIdentifierRegExp.test(typeName)) throw Error.argument('typeName', Sys.Res.notATypeName); + var parsedName; + try { + parsedName = eval(typeName); + } + catch(e) { + throw Error.argument('typeName', Sys.Res.argumentTypeName); + } + if (parsedName !== this) throw Error.argument('typeName', Sys.Res.badTypeName); + if (Sys.__registeredTypes[typeName]) throw Error.invalidOperation(String.format(Sys.Res.typeRegisteredTwice, typeName)); + if ((arguments.length > 1) && (typeof(baseType) === 'undefined')) throw Error.argumentUndefined('baseType'); + if (baseType && !baseType.__class) throw Error.argument('baseType', Sys.Res.baseNotAClass); + this.prototype.constructor = this; + this.__typeName = typeName; + this.__class = true; + if (baseType) { + this.__baseType = baseType; + this.__basePrototypePending = true; + } + Sys.__upperCaseTypes[typeName.toUpperCase()] = this; + if (interfaceTypes) { + this.__interfaces = []; + this.resolveInheritance(); + for (var i = 2, l = arguments.length; i < l; i++) { + var interfaceType = arguments[i]; + if (!interfaceType.__interface) throw Error.argument('interfaceTypes[' + (i - 2) + ']', Sys.Res.notAnInterface); + for (var methodName in interfaceType.prototype) { + var method = interfaceType.prototype[methodName]; + if (!this.prototype[methodName]) { + this.prototype[methodName] = method; + } + } + this.__interfaces.push(interfaceType); + } + } + Sys.__registeredTypes[typeName] = true; + return this; +} +Type.prototype.registerInterface = function Type$registerInterface(typeName) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "typeName", type: String} + ]); + if (e) throw e; + if (!Type.__fullyQualifiedIdentifierRegExp.test(typeName)) throw Error.argument('typeName', Sys.Res.notATypeName); + var parsedName; + try { + parsedName = eval(typeName); + } + catch(e) { + throw Error.argument('typeName', Sys.Res.argumentTypeName); + } + if (parsedName !== this) throw Error.argument('typeName', Sys.Res.badTypeName); + if (Sys.__registeredTypes[typeName]) throw Error.invalidOperation(String.format(Sys.Res.typeRegisteredTwice, typeName)); + Sys.__upperCaseTypes[typeName.toUpperCase()] = this; + this.prototype.constructor = this; + this.__typeName = typeName; + this.__interface = true; + Sys.__registeredTypes[typeName] = true; + return this; +} +Type.prototype.resolveInheritance = function Type$resolveInheritance() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this.__basePrototypePending) { + var baseType = this.__baseType; + baseType.resolveInheritance(); + for (var memberName in baseType.prototype) { + var memberValue = baseType.prototype[memberName]; + if (!this.prototype[memberName]) { + this.prototype[memberName] = memberValue; + } + } + delete this.__basePrototypePending; + } +} +Type.getRootNamespaces = function Type$getRootNamespaces() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return Array.clone(Sys.__rootNamespaces); +} +Type.isClass = function Type$isClass(type) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "type", mayBeNull: true} + ]); + if (e) throw e; + if ((typeof(type) === 'undefined') || (type === null)) return false; + return !!type.__class; +} +Type.isInterface = function Type$isInterface(type) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "type", mayBeNull: true} + ]); + if (e) throw e; + if ((typeof(type) === 'undefined') || (type === null)) return false; + return !!type.__interface; +} +Type.isNamespace = function Type$isNamespace(object) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "object", mayBeNull: true} + ]); + if (e) throw e; + if ((typeof(object) === 'undefined') || (object === null)) return false; + return !!object.__namespace; +} +Type.parse = function Type$parse(typeName, ns) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "typeName", type: String, mayBeNull: true}, + {name: "ns", mayBeNull: true, optional: true} + ]); + if (e) throw e; + var fn; + if (ns) { + fn = Sys.__upperCaseTypes[ns.getName().toUpperCase() + '.' + typeName.toUpperCase()]; + return fn || null; + } + if (!typeName) return null; + if (!Type.__htClasses) { + Type.__htClasses = {}; + } + fn = Type.__htClasses[typeName]; + if (!fn) { + fn = eval(typeName); + if (typeof(fn) !== 'function') throw Error.argument('typeName', Sys.Res.notATypeName); + Type.__htClasses[typeName] = fn; + } + return fn; +} +Type.registerNamespace = function Type$registerNamespace(namespacePath) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "namespacePath", type: String} + ]); + if (e) throw e; + Type._registerNamespace(namespacePath); +} +Type._registerNamespace = function Type$_registerNamespace(namespacePath) { + if (!Type.__fullyQualifiedIdentifierRegExp.test(namespacePath)) throw Error.argument('namespacePath', Sys.Res.invalidNameSpace); + var rootObject = window; + var namespaceParts = namespacePath.split('.'); + for (var i = 0; i < namespaceParts.length; i++) { + var currentPart = namespaceParts[i]; + var ns = rootObject[currentPart]; + var nsType = typeof(ns); + if ((nsType !== "undefined") && (ns !== null)) { + if (nsType === "function") { + throw Error.invalidOperation(String.format(Sys.Res.namespaceContainsClass, namespaceParts.splice(0, i + 1).join('.'))); + } + if ((typeof(ns) !== "object") || (ns instanceof Array)) { + throw Error.invalidOperation(String.format(Sys.Res.namespaceContainsNonObject, namespaceParts.splice(0, i + 1).join('.'))); + } + } + if (!ns) { + ns = rootObject[currentPart] = {}; + } + if (!ns.__namespace) { + if ((i === 0) && (namespacePath !== "Sys")) { + Sys.__rootNamespaces[Sys.__rootNamespaces.length] = ns; + } + ns.__namespace = true; + ns.__typeName = namespaceParts.slice(0, i + 1).join('.'); + var parsedName; + try { + parsedName = eval(ns.__typeName); + } + catch(e) { + parsedName = null; + } + if (parsedName !== ns) { + delete rootObject[currentPart]; + throw Error.argument('namespacePath', Sys.Res.invalidNameSpace); + } + ns.getName = function ns$getName() {return this.__typeName;} + } + rootObject = ns; + } +} +Type._checkDependency = function Type$_checkDependency(dependency, featureName) { + var scripts = Type._registerScript._scripts, isDependent = (scripts ? (!!scripts[dependency]) : false); + if ((typeof(featureName) !== 'undefined') && !isDependent) { + throw Error.invalidOperation(String.format(Sys.Res.requiredScriptReferenceNotIncluded, + featureName, dependency)); + } + return isDependent; +} +Type._registerScript = function Type$_registerScript(scriptName, dependencies) { + var scripts = Type._registerScript._scripts; + if (!scripts) { + Type._registerScript._scripts = scripts = {}; + } + if (scripts[scriptName]) { + throw Error.invalidOperation(String.format(Sys.Res.scriptAlreadyLoaded, scriptName)); + } + scripts[scriptName] = true; + if (dependencies) { + for (var i = 0, l = dependencies.length; i < l; i++) { + var dependency = dependencies[i]; + if (!Type._checkDependency(dependency)) { + throw Error.invalidOperation(String.format(Sys.Res.scriptDependencyNotFound, scriptName, dependency)); + } + } + } +} +Type._registerNamespace("Sys"); +Sys.__upperCaseTypes = {}; +Sys.__rootNamespaces = [Sys]; +Sys.__registeredTypes = {}; +Sys._isInstanceOfType = function Sys$_isInstanceOfType(type, instance) { + if (typeof(instance) === "undefined" || instance === null) return false; + if (instance instanceof type) return true; + var instanceType = Object.getType(instance); + return !!(instanceType === type) || + (instanceType.inheritsFrom && instanceType.inheritsFrom(type)) || + (instanceType.implementsInterface && instanceType.implementsInterface(type)); +} +Sys._getBaseMethod = function Sys$_getBaseMethod(type, instance, name) { + if (!Sys._isInstanceOfType(type, instance)) throw Error.argumentType('instance', Object.getType(instance), type); + var baseType = type.getBaseType(); + if (baseType) { + var baseMethod = baseType.prototype[name]; + return (baseMethod instanceof Function) ? baseMethod : null; + } + return null; +} +Sys._isDomElement = function Sys$_isDomElement(obj) { + var val = false; + if (typeof (obj.nodeType) !== 'number') { + var doc = obj.ownerDocument || obj.document || obj; + if (doc != obj) { + var w = doc.defaultView || doc.parentWindow; + val = (w != obj); + } + else { + val = (typeof (doc.body) === 'undefined'); + } + } + return !val; +} + +Array.__typeName = 'Array'; +Array.__class = true; +Array.add = Array.enqueue = function Array$enqueue(array, item) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + array[array.length] = item; +} +Array.addRange = function Array$addRange(array, items) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "items", type: Array, elementMayBeNull: true} + ]); + if (e) throw e; + array.push.apply(array, items); +} +Array.clear = function Array$clear(array) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true} + ]); + if (e) throw e; + array.length = 0; +} +Array.clone = function Array$clone(array) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true} + ]); + if (e) throw e; + if (array.length === 1) { + return [array[0]]; + } + else { + return Array.apply(null, array); + } +} +Array.contains = function Array$contains(array, item) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + return (Sys._indexOf(array, item) >= 0); +} +Array.dequeue = function Array$dequeue(array) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true} + ]); + if (e) throw e; + return array.shift(); +} +Array.forEach = function Array$forEach(array, method, instance) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "method", type: Function}, + {name: "instance", mayBeNull: true, optional: true} + ]); + if (e) throw e; + for (var i = 0, l = array.length; i < l; i++) { + var elt = array[i]; + if (typeof(elt) !== 'undefined') method.call(instance, elt, i, array); + } +} +Array.indexOf = function Array$indexOf(array, item, start) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "item", mayBeNull: true, optional: true}, + {name: "start", mayBeNull: true, optional: true} + ]); + if (e) throw e; + return Sys._indexOf(array, item, start); +} +Array.insert = function Array$insert(array, index, item) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "index", mayBeNull: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + array.splice(index, 0, item); +} +Array.parse = function Array$parse(value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String, mayBeNull: true} + ]); + if (e) throw e; + if (!value) return []; + var v = eval(value); + if (!Array.isInstanceOfType(v)) throw Error.argument('value', Sys.Res.arrayParseBadFormat); + return v; +} +Array.remove = function Array$remove(array, item) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + var index = Sys._indexOf(array, item); + if (index >= 0) { + array.splice(index, 1); + } + return (index >= 0); +} +Array.removeAt = function Array$removeAt(array, index) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "array", type: Array, elementMayBeNull: true}, + {name: "index", mayBeNull: true} + ]); + if (e) throw e; + array.splice(index, 1); +} +Sys._indexOf = function Sys$_indexOf(array, item, start) { + if (typeof(item) === "undefined") return -1; + var length = array.length; + if (length !== 0) { + start = start - 0; + if (isNaN(start)) { + start = 0; + } + else { + if (isFinite(start)) { + start = start - (start % 1); + } + if (start < 0) { + start = Math.max(0, length + start); + } + } + for (var i = start; i < length; i++) { + if ((typeof(array[i]) !== "undefined") && (array[i] === item)) { + return i; + } + } + } + return -1; +} +Type._registerScript._scripts = { + "MicrosoftAjaxCore.js": true, + "MicrosoftAjaxGlobalization.js": true, + "MicrosoftAjaxSerialization.js": true, + "MicrosoftAjaxComponentModel.js": true, + "MicrosoftAjaxHistory.js": true, + "MicrosoftAjaxNetwork.js" : true, + "MicrosoftAjaxWebServices.js": true }; + +Sys.IDisposable = function Sys$IDisposable() { + throw Error.notImplemented(); +} + function Sys$IDisposable$dispose() { + throw Error.notImplemented(); + } +Sys.IDisposable.prototype = { + dispose: Sys$IDisposable$dispose +} +Sys.IDisposable.registerInterface('Sys.IDisposable'); + +Sys.StringBuilder = function Sys$StringBuilder(initialText) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "initialText", mayBeNull: true, optional: true} + ]); + if (e) throw e; + this._parts = (typeof(initialText) !== 'undefined' && initialText !== null && initialText !== '') ? + [initialText.toString()] : []; + this._value = {}; + this._len = 0; +} + function Sys$StringBuilder$append(text) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "text", mayBeNull: true} + ]); + if (e) throw e; + this._parts[this._parts.length] = text; + } + function Sys$StringBuilder$appendLine(text) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "text", mayBeNull: true, optional: true} + ]); + if (e) throw e; + this._parts[this._parts.length] = + ((typeof(text) === 'undefined') || (text === null) || (text === '')) ? + '\r\n' : text + '\r\n'; + } + function Sys$StringBuilder$clear() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._parts = []; + this._value = {}; + this._len = 0; + } + function Sys$StringBuilder$isEmpty() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this._parts.length === 0) return true; + return this.toString() === ''; + } + function Sys$StringBuilder$toString(separator) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "separator", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + separator = separator || ''; + var parts = this._parts; + if (this._len !== parts.length) { + this._value = {}; + this._len = parts.length; + } + var val = this._value; + if (typeof(val[separator]) === 'undefined') { + if (separator !== '') { + for (var i = 0; i < parts.length;) { + if ((typeof(parts[i]) === 'undefined') || (parts[i] === '') || (parts[i] === null)) { + parts.splice(i, 1); + } + else { + i++; + } + } + } + val[separator] = this._parts.join(separator); + } + return val[separator]; + } +Sys.StringBuilder.prototype = { + append: Sys$StringBuilder$append, + appendLine: Sys$StringBuilder$appendLine, + clear: Sys$StringBuilder$clear, + isEmpty: Sys$StringBuilder$isEmpty, + toString: Sys$StringBuilder$toString +} +Sys.StringBuilder.registerClass('Sys.StringBuilder'); + +Sys.Browser = {}; +Sys.Browser.InternetExplorer = {}; +Sys.Browser.Firefox = {}; +Sys.Browser.Safari = {}; +Sys.Browser.Opera = {}; +Sys.Browser.agent = null; +Sys.Browser.hasDebuggerStatement = false; +Sys.Browser.name = navigator.appName; +Sys.Browser.version = parseFloat(navigator.appVersion); +Sys.Browser.documentMode = 0; +if (navigator.userAgent.indexOf(' MSIE ') > -1) { + Sys.Browser.agent = Sys.Browser.InternetExplorer; + Sys.Browser.version = parseFloat(navigator.userAgent.match(/MSIE (\d+\.\d+)/)[1]); + if (Sys.Browser.version >= 8) { + if (document.documentMode >= 7) { + Sys.Browser.documentMode = document.documentMode; + } + } + Sys.Browser.hasDebuggerStatement = true; +} +else if (navigator.userAgent.indexOf(' Firefox/') > -1) { + Sys.Browser.agent = Sys.Browser.Firefox; + Sys.Browser.version = parseFloat(navigator.userAgent.match(/ Firefox\/(\d+\.\d+)/)[1]); + Sys.Browser.name = 'Firefox'; + Sys.Browser.hasDebuggerStatement = true; +} +else if (navigator.userAgent.indexOf(' AppleWebKit/') > -1) { + Sys.Browser.agent = Sys.Browser.Safari; + Sys.Browser.version = parseFloat(navigator.userAgent.match(/ AppleWebKit\/(\d+(\.\d+)?)/)[1]); + Sys.Browser.name = 'Safari'; +} +else if (navigator.userAgent.indexOf('Opera/') > -1) { + Sys.Browser.agent = Sys.Browser.Opera; +} + +Sys.EventArgs = function Sys$EventArgs() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); +} +Sys.EventArgs.registerClass('Sys.EventArgs'); +Sys.EventArgs.Empty = new Sys.EventArgs(); + +Sys.CancelEventArgs = function Sys$CancelEventArgs() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + Sys.CancelEventArgs.initializeBase(this); + this._cancel = false; +} + function Sys$CancelEventArgs$get_cancel() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._cancel; + } + function Sys$CancelEventArgs$set_cancel(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Boolean}]); + if (e) throw e; + this._cancel = value; + } +Sys.CancelEventArgs.prototype = { + get_cancel: Sys$CancelEventArgs$get_cancel, + set_cancel: Sys$CancelEventArgs$set_cancel +} +Sys.CancelEventArgs.registerClass('Sys.CancelEventArgs', Sys.EventArgs); +Type.registerNamespace('Sys.UI'); + +Sys._Debug = function Sys$_Debug() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); +} + function Sys$_Debug$_appendConsole(text) { + if ((typeof(Debug) !== 'undefined') && Debug.writeln) { + Debug.writeln(text); + } + if (window.console && window.console.log) { + window.console.log(text); + } + if (window.opera) { + window.opera.postError(text); + } + if (window.debugService) { + window.debugService.trace(text); + } + } + function Sys$_Debug$_appendTrace(text) { + var traceElement = document.getElementById('TraceConsole'); + if (traceElement && (traceElement.tagName.toUpperCase() === 'TEXTAREA')) { + traceElement.value += text + '\n'; + } + } + function Sys$_Debug$assert(condition, message, displayCaller) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "condition", type: Boolean}, + {name: "message", type: String, mayBeNull: true, optional: true}, + {name: "displayCaller", type: Boolean, optional: true} + ]); + if (e) throw e; + if (!condition) { + message = (displayCaller && this.assert.caller) ? + String.format(Sys.Res.assertFailedCaller, message, this.assert.caller) : + String.format(Sys.Res.assertFailed, message); + if (confirm(String.format(Sys.Res.breakIntoDebugger, message))) { + this.fail(message); + } + } + } + function Sys$_Debug$clearTrace() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var traceElement = document.getElementById('TraceConsole'); + if (traceElement && (traceElement.tagName.toUpperCase() === 'TEXTAREA')) { + traceElement.value = ''; + } + } + function Sys$_Debug$fail(message) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "message", type: String, mayBeNull: true} + ]); + if (e) throw e; + this._appendConsole(message); + if (Sys.Browser.hasDebuggerStatement) { + eval('debugger'); + } + } + function Sys$_Debug$trace(text) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "text"} + ]); + if (e) throw e; + this._appendConsole(text); + this._appendTrace(text); + } + function Sys$_Debug$traceDump(object, name) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "object", mayBeNull: true}, + {name: "name", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var text = this._traceDump(object, name, true); + } + function Sys$_Debug$_traceDump(object, name, recursive, indentationPadding, loopArray) { + name = name? name : 'traceDump'; + indentationPadding = indentationPadding? indentationPadding : ''; + if (object === null) { + this.trace(indentationPadding + name + ': null'); + return; + } + switch(typeof(object)) { + case 'undefined': + this.trace(indentationPadding + name + ': Undefined'); + break; + case 'number': case 'string': case 'boolean': + this.trace(indentationPadding + name + ': ' + object); + break; + default: + if (Date.isInstanceOfType(object) || RegExp.isInstanceOfType(object)) { + this.trace(indentationPadding + name + ': ' + object.toString()); + break; + } + if (!loopArray) { + loopArray = []; + } + else if (Array.contains(loopArray, object)) { + this.trace(indentationPadding + name + ': ...'); + return; + } + Array.add(loopArray, object); + if ((object == window) || (object === document) || + (window.HTMLElement && (object instanceof HTMLElement)) || + (typeof(object.nodeName) === 'string')) { + var tag = object.tagName? object.tagName : 'DomElement'; + if (object.id) { + tag += ' - ' + object.id; + } + this.trace(indentationPadding + name + ' {' + tag + '}'); + } + else { + var typeName = Object.getTypeName(object); + this.trace(indentationPadding + name + (typeof(typeName) === 'string' ? ' {' + typeName + '}' : '')); + if ((indentationPadding === '') || recursive) { + indentationPadding += " "; + var i, length, properties, p, v; + if (Array.isInstanceOfType(object)) { + length = object.length; + for (i = 0; i < length; i++) { + this._traceDump(object[i], '[' + i + ']', recursive, indentationPadding, loopArray); + } + } + else { + for (p in object) { + v = object[p]; + if (!Function.isInstanceOfType(v)) { + this._traceDump(v, p, recursive, indentationPadding, loopArray); + } + } + } + } + } + Array.remove(loopArray, object); + } + } +Sys._Debug.prototype = { + _appendConsole: Sys$_Debug$_appendConsole, + _appendTrace: Sys$_Debug$_appendTrace, + assert: Sys$_Debug$assert, + clearTrace: Sys$_Debug$clearTrace, + fail: Sys$_Debug$fail, + trace: Sys$_Debug$trace, + traceDump: Sys$_Debug$traceDump, + _traceDump: Sys$_Debug$_traceDump +} +Sys._Debug.registerClass('Sys._Debug'); +Sys.Debug = new Sys._Debug(); + Sys.Debug.isDebug = true; + +function Sys$Enum$parse(value, ignoreCase) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String}, + {name: "ignoreCase", type: Boolean, optional: true} + ]); + if (e) throw e; + var values, parsed, val; + if (ignoreCase) { + values = this.__lowerCaseValues; + if (!values) { + this.__lowerCaseValues = values = {}; + var prototype = this.prototype; + for (var name in prototype) { + values[name.toLowerCase()] = prototype[name]; + } + } + } + else { + values = this.prototype; + } + if (!this.__flags) { + val = (ignoreCase ? value.toLowerCase() : value); + parsed = values[val.trim()]; + if (typeof(parsed) !== 'number') throw Error.argument('value', String.format(Sys.Res.enumInvalidValue, value, this.__typeName)); + return parsed; + } + else { + var parts = (ignoreCase ? value.toLowerCase() : value).split(','); + var v = 0; + for (var i = parts.length - 1; i >= 0; i--) { + var part = parts[i].trim(); + parsed = values[part]; + if (typeof(parsed) !== 'number') throw Error.argument('value', String.format(Sys.Res.enumInvalidValue, value.split(',')[i].trim(), this.__typeName)); + v |= parsed; + } + return v; + } +} +function Sys$Enum$toString(value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", mayBeNull: true, optional: true} + ]); + if (e) throw e; + if ((typeof(value) === 'undefined') || (value === null)) return this.__string; + if ((typeof(value) != 'number') || ((value % 1) !== 0)) throw Error.argumentType('value', Object.getType(value), this); + var values = this.prototype; + var i; + if (!this.__flags || (value === 0)) { + for (i in values) { + if (values[i] === value) { + return i; + } + } + } + else { + var sorted = this.__sortedValues; + if (!sorted) { + sorted = []; + for (i in values) { + sorted[sorted.length] = {key: i, value: values[i]}; + } + sorted.sort(function(a, b) { + return a.value - b.value; + }); + this.__sortedValues = sorted; + } + var parts = []; + var v = value; + for (i = sorted.length - 1; i >= 0; i--) { + var kvp = sorted[i]; + var vali = kvp.value; + if (vali === 0) continue; + if ((vali & value) === vali) { + parts[parts.length] = kvp.key; + v -= vali; + if (v === 0) break; + } + } + if (parts.length && v === 0) return parts.reverse().join(', '); + } + throw Error.argumentOutOfRange('value', value, String.format(Sys.Res.enumInvalidValue, value, this.__typeName)); +} +Type.prototype.registerEnum = function Type$registerEnum(name, flags) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "name", type: String}, + {name: "flags", type: Boolean, optional: true} + ]); + if (e) throw e; + if (!Type.__fullyQualifiedIdentifierRegExp.test(name)) throw Error.argument('name', Sys.Res.notATypeName); + var parsedName; + try { + parsedName = eval(name); + } + catch(e) { + throw Error.argument('name', Sys.Res.argumentTypeName); + } + if (parsedName !== this) throw Error.argument('name', Sys.Res.badTypeName); + if (Sys.__registeredTypes[name]) throw Error.invalidOperation(String.format(Sys.Res.typeRegisteredTwice, name)); + for (var j in this.prototype) { + var val = this.prototype[j]; + if (!Type.__identifierRegExp.test(j)) throw Error.invalidOperation(String.format(Sys.Res.enumInvalidValueName, j)); + if (typeof(val) !== 'number' || (val % 1) !== 0) throw Error.invalidOperation(Sys.Res.enumValueNotInteger); + if (typeof(this[j]) !== 'undefined') throw Error.invalidOperation(String.format(Sys.Res.enumReservedName, j)); + } + Sys.__upperCaseTypes[name.toUpperCase()] = this; + for (var i in this.prototype) { + this[i] = this.prototype[i]; + } + this.__typeName = name; + this.parse = Sys$Enum$parse; + this.__string = this.toString(); + this.toString = Sys$Enum$toString; + this.__flags = flags; + this.__enum = true; + Sys.__registeredTypes[name] = true; +} +Type.isEnum = function Type$isEnum(type) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "type", mayBeNull: true} + ]); + if (e) throw e; + if ((typeof(type) === 'undefined') || (type === null)) return false; + return !!type.__enum; +} +Type.isFlags = function Type$isFlags(type) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "type", mayBeNull: true} + ]); + if (e) throw e; + if ((typeof(type) === 'undefined') || (type === null)) return false; + return !!type.__flags; +} +Sys.CollectionChange = function Sys$CollectionChange(action, newItems, newStartingIndex, oldItems, oldStartingIndex) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "action", type: Sys.NotifyCollectionChangedAction}, + {name: "newItems", mayBeNull: true, optional: true}, + {name: "newStartingIndex", type: Number, mayBeNull: true, integer: true, optional: true}, + {name: "oldItems", mayBeNull: true, optional: true}, + {name: "oldStartingIndex", type: Number, mayBeNull: true, integer: true, optional: true} + ]); + if (e) throw e; + this.action = action; + if (newItems) { + if (!(newItems instanceof Array)) { + newItems = [newItems]; + } + } + this.newItems = newItems || null; + if (typeof newStartingIndex !== "number") { + newStartingIndex = -1; + } + this.newStartingIndex = newStartingIndex; + if (oldItems) { + if (!(oldItems instanceof Array)) { + oldItems = [oldItems]; + } + } + this.oldItems = oldItems || null; + if (typeof oldStartingIndex !== "number") { + oldStartingIndex = -1; + } + this.oldStartingIndex = oldStartingIndex; +} +Sys.CollectionChange.registerClass("Sys.CollectionChange"); +Sys.NotifyCollectionChangedAction = function Sys$NotifyCollectionChangedAction() { + /// + /// + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} +Sys.NotifyCollectionChangedAction.prototype = { + add: 0, + remove: 1, + reset: 2 +} +Sys.NotifyCollectionChangedAction.registerEnum('Sys.NotifyCollectionChangedAction'); +Sys.NotifyCollectionChangedEventArgs = function Sys$NotifyCollectionChangedEventArgs(changes) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "changes", type: Array, elementType: Sys.CollectionChange} + ]); + if (e) throw e; + this._changes = changes; + Sys.NotifyCollectionChangedEventArgs.initializeBase(this); +} + function Sys$NotifyCollectionChangedEventArgs$get_changes() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._changes || []; + } +Sys.NotifyCollectionChangedEventArgs.prototype = { + get_changes: Sys$NotifyCollectionChangedEventArgs$get_changes +} +Sys.NotifyCollectionChangedEventArgs.registerClass("Sys.NotifyCollectionChangedEventArgs", Sys.EventArgs); +Sys.Observer = function Sys$Observer() { + throw Error.invalidOperation(); +} +Sys.Observer.registerClass("Sys.Observer"); +Sys.Observer.makeObservable = function Sys$Observer$makeObservable(target) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"} + ]); + if (e) throw e; + var isArray = target instanceof Array, + o = Sys.Observer; + Sys.Observer._ensureObservable(target); + if (target.setValue === o._observeMethods.setValue) return target; + o._addMethods(target, o._observeMethods); + if (isArray) { + o._addMethods(target, o._arrayMethods); + } + return target; +} +Sys.Observer._ensureObservable = function Sys$Observer$_ensureObservable(target) { + var type = typeof target; + if ((type === "string") || (type === "number") || (type === "boolean") || (type === "date")) { + throw Error.invalidOperation(String.format(Sys.Res.notObservable, type)); + } +} +Sys.Observer._addMethods = function Sys$Observer$_addMethods(target, methods) { + for (var m in methods) { + if (target[m] && (target[m] !== methods[m])) { + throw Error.invalidOperation(String.format(Sys.Res.observableConflict, m)); + } + target[m] = methods[m]; + } +} +Sys.Observer._addEventHandler = function Sys$Observer$_addEventHandler(target, eventName, handler) { + Sys.Observer._getContext(target, true).events._addHandler(eventName, handler); +} +Sys.Observer.addEventHandler = function Sys$Observer$addEventHandler(target, eventName, handler) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "eventName", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + Sys.Observer._addEventHandler(target, eventName, handler); +} +Sys.Observer._removeEventHandler = function Sys$Observer$_removeEventHandler(target, eventName, handler) { + Sys.Observer._getContext(target, true).events._removeHandler(eventName, handler); +} +Sys.Observer.removeEventHandler = function Sys$Observer$removeEventHandler(target, eventName, handler) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "eventName", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + Sys.Observer._removeEventHandler(target, eventName, handler); +} +Sys.Observer.raiseEvent = function Sys$Observer$raiseEvent(target, eventName, eventArgs) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "eventName", type: String}, + {name: "eventArgs", type: Sys.EventArgs} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + var ctx = Sys.Observer._getContext(target); + if (!ctx) return; + var handler = ctx.events.getHandler(eventName); + if (handler) { + handler(target, eventArgs); + } +} +Sys.Observer.addPropertyChanged = function Sys$Observer$addPropertyChanged(target, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + Sys.Observer._addEventHandler(target, "propertyChanged", handler); +} +Sys.Observer.removePropertyChanged = function Sys$Observer$removePropertyChanged(target, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + Sys.Observer._removeEventHandler(target, "propertyChanged", handler); +} +Sys.Observer.beginUpdate = function Sys$Observer$beginUpdate(target) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + Sys.Observer._getContext(target, true).updating = true; +} +Sys.Observer.endUpdate = function Sys$Observer$endUpdate(target) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + var ctx = Sys.Observer._getContext(target); + if (!ctx || !ctx.updating) return; + ctx.updating = false; + var dirty = ctx.dirty; + ctx.dirty = false; + if (dirty) { + if (target instanceof Array) { + var changes = ctx.changes; + ctx.changes = null; + Sys.Observer.raiseCollectionChanged(target, changes); + } + Sys.Observer.raisePropertyChanged(target, ""); + } +} +Sys.Observer.isUpdating = function Sys$Observer$isUpdating(target) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + var ctx = Sys.Observer._getContext(target); + return ctx ? ctx.updating : false; +} +Sys.Observer._setValue = function Sys$Observer$_setValue(target, propertyName, value) { + var getter, setter, mainTarget = target, path = propertyName.split('.'); + for (var i = 0, l = (path.length - 1); i < l ; i++) { + var name = path[i]; + getter = target["get_" + name]; + if (typeof (getter) === "function") { + target = getter.call(target); + } + else { + target = target[name]; + } + var type = typeof (target); + if ((target === null) || (type === "undefined")) { + throw Error.invalidOperation(String.format(Sys.Res.nullReferenceInPath, propertyName)); + } + } + var currentValue, lastPath = path[l]; + getter = target["get_" + lastPath]; + setter = target["set_" + lastPath]; + if (typeof(getter) === 'function') { + currentValue = getter.call(target); + } + else { + currentValue = target[lastPath]; + } + if (typeof(setter) === 'function') { + setter.call(target, value); + } + else { + target[lastPath] = value; + } + if (currentValue !== value) { + var ctx = Sys.Observer._getContext(mainTarget); + if (ctx && ctx.updating) { + ctx.dirty = true; + return; + }; + Sys.Observer.raisePropertyChanged(mainTarget, path[0]); + } +} +Sys.Observer.setValue = function Sys$Observer$setValue(target, propertyName, value) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "propertyName", type: String}, + {name: "value", mayBeNull: true} + ]); + if (e) throw e; + Sys.Observer._ensureObservable(target); + Sys.Observer._setValue(target, propertyName, value); +} +Sys.Observer.raisePropertyChanged = function Sys$Observer$raisePropertyChanged(target, propertyName) { + /// + /// + /// + Sys.Observer.raiseEvent(target, "propertyChanged", new Sys.PropertyChangedEventArgs(propertyName)); +} +Sys.Observer.addCollectionChanged = function Sys$Observer$addCollectionChanged(target, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._addEventHandler(target, "collectionChanged", handler); +} +Sys.Observer.removeCollectionChanged = function Sys$Observer$removeCollectionChanged(target, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._removeEventHandler(target, "collectionChanged", handler); +} +Sys.Observer._collectionChange = function Sys$Observer$_collectionChange(target, change) { + var ctx = Sys.Observer._getContext(target); + if (ctx && ctx.updating) { + ctx.dirty = true; + var changes = ctx.changes; + if (!changes) { + ctx.changes = changes = [change]; + } + else { + changes.push(change); + } + } + else { + Sys.Observer.raiseCollectionChanged(target, [change]); + Sys.Observer.raisePropertyChanged(target, 'length'); + } +} +Sys.Observer.add = function Sys$Observer$add(target, item) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + var change = new Sys.CollectionChange(Sys.NotifyCollectionChangedAction.add, [item], target.length); + Array.add(target, item); + Sys.Observer._collectionChange(target, change); +} +Sys.Observer.addRange = function Sys$Observer$addRange(target, items) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "items", type: Array, elementMayBeNull: true} + ]); + if (e) throw e; + var change = new Sys.CollectionChange(Sys.NotifyCollectionChangedAction.add, items, target.length); + Array.addRange(target, items); + Sys.Observer._collectionChange(target, change); +} +Sys.Observer.clear = function Sys$Observer$clear(target) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true} + ]); + if (e) throw e; + var oldItems = Array.clone(target); + Array.clear(target); + Sys.Observer._collectionChange(target, new Sys.CollectionChange(Sys.NotifyCollectionChangedAction.reset, null, -1, oldItems, 0)); +} +Sys.Observer.insert = function Sys$Observer$insert(target, index, item) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "index", type: Number, integer: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + Array.insert(target, index, item); + Sys.Observer._collectionChange(target, new Sys.CollectionChange(Sys.NotifyCollectionChangedAction.add, [item], index)); +} +Sys.Observer.remove = function Sys$Observer$remove(target, item) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "item", mayBeNull: true} + ]); + if (e) throw e; + var index = Array.indexOf(target, item); + if (index !== -1) { + Array.remove(target, item); + Sys.Observer._collectionChange(target, new Sys.CollectionChange(Sys.NotifyCollectionChangedAction.remove, null, -1, [item], index)); + return true; + } + return false; +} +Sys.Observer.removeAt = function Sys$Observer$removeAt(target, index) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target", type: Array, elementMayBeNull: true}, + {name: "index", type: Number, integer: true} + ]); + if (e) throw e; + if ((index > -1) && (index < target.length)) { + var item = target[index]; + Array.removeAt(target, index); + Sys.Observer._collectionChange(target, new Sys.CollectionChange(Sys.NotifyCollectionChangedAction.remove, null, -1, [item], index)); + } +} +Sys.Observer.raiseCollectionChanged = function Sys$Observer$raiseCollectionChanged(target, changes) { + /// + /// + /// + Sys.Observer.raiseEvent(target, "collectionChanged", new Sys.NotifyCollectionChangedEventArgs(changes)); +} +Sys.Observer._observeMethods = { + add_propertyChanged: function(handler) { + Sys.Observer._addEventHandler(this, "propertyChanged", handler); + }, + remove_propertyChanged: function(handler) { + Sys.Observer._removeEventHandler(this, "propertyChanged", handler); + }, + addEventHandler: function(eventName, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "eventName", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._addEventHandler(this, eventName, handler); + }, + removeEventHandler: function(eventName, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "eventName", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.Observer._removeEventHandler(this, eventName, handler); + }, + get_isUpdating: function() { + /// + /// + return Sys.Observer.isUpdating(this); + }, + beginUpdate: function() { + /// + Sys.Observer.beginUpdate(this); + }, + endUpdate: function() { + /// + Sys.Observer.endUpdate(this); + }, + setValue: function(name, value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "name", type: String}, + {name: "value", mayBeNull: true} + ]); + if (e) throw e; + Sys.Observer._setValue(this, name, value); + }, + raiseEvent: function(eventName, eventArgs) { + /// + /// + /// + Sys.Observer.raiseEvent(this, eventName, eventArgs); + }, + raisePropertyChanged: function(name) { + /// + /// + Sys.Observer.raiseEvent(this, "propertyChanged", new Sys.PropertyChangedEventArgs(name)); + } +} +Sys.Observer._arrayMethods = { + add_collectionChanged: function(handler) { + Sys.Observer._addEventHandler(this, "collectionChanged", handler); + }, + remove_collectionChanged: function(handler) { + Sys.Observer._removeEventHandler(this, "collectionChanged", handler); + }, + add: function(item) { + /// + /// + Sys.Observer.add(this, item); + }, + addRange: function(items) { + /// + /// + Sys.Observer.addRange(this, items); + }, + clear: function() { + /// + Sys.Observer.clear(this); + }, + insert: function(index, item) { + /// + /// + /// + Sys.Observer.insert(this, index, item); + }, + remove: function(item) { + /// + /// + /// + return Sys.Observer.remove(this, item); + }, + removeAt: function(index) { + /// + /// + Sys.Observer.removeAt(this, index); + }, + raiseCollectionChanged: function(changes) { + /// + /// + Sys.Observer.raiseEvent(this, "collectionChanged", new Sys.NotifyCollectionChangedEventArgs(changes)); + } +} +Sys.Observer._getContext = function Sys$Observer$_getContext(obj, create) { + var ctx = obj._observerContext; + if (ctx) return ctx(); + if (create) { + return (obj._observerContext = Sys.Observer._createContext())(); + } + return null; +} +Sys.Observer._createContext = function Sys$Observer$_createContext() { + var ctx = { + events: new Sys.EventHandlerList() + }; + return function() { + return ctx; + } +} +Date._appendPreOrPostMatch = function Date$_appendPreOrPostMatch(preMatch, strBuilder) { + var quoteCount = 0; + var escaped = false; + for (var i = 0, il = preMatch.length; i < il; i++) { + var c = preMatch.charAt(i); + switch (c) { + case '\'': + if (escaped) strBuilder.append("'"); + else quoteCount++; + escaped = false; + break; + case '\\': + if (escaped) strBuilder.append("\\"); + escaped = !escaped; + break; + default: + strBuilder.append(c); + escaped = false; + break; + } + } + return quoteCount; +} +Date._expandFormat = function Date$_expandFormat(dtf, format) { + if (!format) { + format = "F"; + } + var len = format.length; + if (len === 1) { + switch (format) { + case "d": + return dtf.ShortDatePattern; + case "D": + return dtf.LongDatePattern; + case "t": + return dtf.ShortTimePattern; + case "T": + return dtf.LongTimePattern; + case "f": + return dtf.LongDatePattern + " " + dtf.ShortTimePattern; + case "F": + return dtf.FullDateTimePattern; + case "M": case "m": + return dtf.MonthDayPattern; + case "s": + return dtf.SortableDateTimePattern; + case "Y": case "y": + return dtf.YearMonthPattern; + default: + throw Error.format(Sys.Res.formatInvalidString); + } + } + else if ((len === 2) && (format.charAt(0) === "%")) { + format = format.charAt(1); + } + return format; +} +Date._expandYear = function Date$_expandYear(dtf, year) { + var now = new Date(), + era = Date._getEra(now); + if (year < 100) { + var curr = Date._getEraYear(now, dtf, era); + year += curr - (curr % 100); + if (year > dtf.Calendar.TwoDigitYearMax) { + year -= 100; + } + } + return year; +} +Date._getEra = function Date$_getEra(date, eras) { + if (!eras) return 0; + var start, ticks = date.getTime(); + for (var i = 0, l = eras.length; i < l; i += 4) { + start = eras[i+2]; + if ((start === null) || (ticks >= start)) { + return i; + } + } + return 0; +} +Date._getEraYear = function Date$_getEraYear(date, dtf, era, sortable) { + var year = date.getFullYear(); + if (!sortable && dtf.eras) { + year -= dtf.eras[era + 3]; + } + return year; +} +Date._getParseRegExp = function Date$_getParseRegExp(dtf, format) { + if (!dtf._parseRegExp) { + dtf._parseRegExp = {}; + } + else if (dtf._parseRegExp[format]) { + return dtf._parseRegExp[format]; + } + var expFormat = Date._expandFormat(dtf, format); + expFormat = expFormat.replace(/([\^\$\.\*\+\?\|\[\]\(\)\{\}])/g, "\\\\$1"); + var regexp = new Sys.StringBuilder("^"); + var groups = []; + var index = 0; + var quoteCount = 0; + var tokenRegExp = Date._getTokenRegExp(); + var match; + while ((match = tokenRegExp.exec(expFormat)) !== null) { + var preMatch = expFormat.slice(index, match.index); + index = tokenRegExp.lastIndex; + quoteCount += Date._appendPreOrPostMatch(preMatch, regexp); + if ((quoteCount%2) === 1) { + regexp.append(match[0]); + continue; + } + switch (match[0]) { + case 'dddd': case 'ddd': + case 'MMMM': case 'MMM': + case 'gg': case 'g': + regexp.append("(\\D+)"); + break; + case 'tt': case 't': + regexp.append("(\\D*)"); + break; + case 'yyyy': + regexp.append("(\\d{4})"); + break; + case 'fff': + regexp.append("(\\d{3})"); + break; + case 'ff': + regexp.append("(\\d{2})"); + break; + case 'f': + regexp.append("(\\d)"); + break; + case 'dd': case 'd': + case 'MM': case 'M': + case 'yy': case 'y': + case 'HH': case 'H': + case 'hh': case 'h': + case 'mm': case 'm': + case 'ss': case 's': + regexp.append("(\\d\\d?)"); + break; + case 'zzz': + regexp.append("([+-]?\\d\\d?:\\d{2})"); + break; + case 'zz': case 'z': + regexp.append("([+-]?\\d\\d?)"); + break; + case '/': + regexp.append("(\\" + dtf.DateSeparator + ")"); + break; + default: + Sys.Debug.fail("Invalid date format pattern"); + } + Array.add(groups, match[0]); + } + Date._appendPreOrPostMatch(expFormat.slice(index), regexp); + regexp.append("$"); + var regexpStr = regexp.toString().replace(/\s+/g, "\\s+"); + var parseRegExp = {'regExp': regexpStr, 'groups': groups}; + dtf._parseRegExp[format] = parseRegExp; + return parseRegExp; +} +Date._getTokenRegExp = function Date$_getTokenRegExp() { + return /\/|dddd|ddd|dd|d|MMMM|MMM|MM|M|yyyy|yy|y|hh|h|HH|H|mm|m|ss|s|tt|t|fff|ff|f|zzz|zz|z|gg|g/g; +} +Date.parseLocale = function Date$parseLocale(value, formats) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String}, + {name: "formats", mayBeNull: true, optional: true, parameterArray: true} + ]); + if (e) throw e; + return Date._parse(value, Sys.CultureInfo.CurrentCulture, arguments); +} +Date.parseInvariant = function Date$parseInvariant(value, formats) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String}, + {name: "formats", mayBeNull: true, optional: true, parameterArray: true} + ]); + if (e) throw e; + return Date._parse(value, Sys.CultureInfo.InvariantCulture, arguments); +} +Date._parse = function Date$_parse(value, cultureInfo, args) { + var i, l, date, format, formats, custom = false; + for (i = 1, l = args.length; i < l; i++) { + format = args[i]; + if (format) { + custom = true; + date = Date._parseExact(value, format, cultureInfo); + if (date) return date; + } + } + if (! custom) { + formats = cultureInfo._getDateTimeFormats(); + for (i = 0, l = formats.length; i < l; i++) { + date = Date._parseExact(value, formats[i], cultureInfo); + if (date) return date; + } + } + return null; +} +Date._parseExact = function Date$_parseExact(value, format, cultureInfo) { + value = value.trim(); + var dtf = cultureInfo.dateTimeFormat, + parseInfo = Date._getParseRegExp(dtf, format), + match = new RegExp(parseInfo.regExp).exec(value); + if (match === null) return null; + + var groups = parseInfo.groups, + era = null, year = null, month = null, date = null, weekDay = null, + hour = 0, hourOffset, min = 0, sec = 0, msec = 0, tzMinOffset = null, + pmHour = false; + for (var j = 0, jl = groups.length; j < jl; j++) { + var matchGroup = match[j+1]; + if (matchGroup) { + switch (groups[j]) { + case 'dd': case 'd': + date = parseInt(matchGroup, 10); + if ((date < 1) || (date > 31)) return null; + break; + case 'MMMM': + month = cultureInfo._getMonthIndex(matchGroup); + if ((month < 0) || (month > 11)) return null; + break; + case 'MMM': + month = cultureInfo._getAbbrMonthIndex(matchGroup); + if ((month < 0) || (month > 11)) return null; + break; + case 'M': case 'MM': + month = parseInt(matchGroup, 10) - 1; + if ((month < 0) || (month > 11)) return null; + break; + case 'y': case 'yy': + year = Date._expandYear(dtf,parseInt(matchGroup, 10)); + if ((year < 0) || (year > 9999)) return null; + break; + case 'yyyy': + year = parseInt(matchGroup, 10); + if ((year < 0) || (year > 9999)) return null; + break; + case 'h': case 'hh': + hour = parseInt(matchGroup, 10); + if (hour === 12) hour = 0; + if ((hour < 0) || (hour > 11)) return null; + break; + case 'H': case 'HH': + hour = parseInt(matchGroup, 10); + if ((hour < 0) || (hour > 23)) return null; + break; + case 'm': case 'mm': + min = parseInt(matchGroup, 10); + if ((min < 0) || (min > 59)) return null; + break; + case 's': case 'ss': + sec = parseInt(matchGroup, 10); + if ((sec < 0) || (sec > 59)) return null; + break; + case 'tt': case 't': + var upperToken = matchGroup.toUpperCase(); + pmHour = (upperToken === dtf.PMDesignator.toUpperCase()); + if (!pmHour && (upperToken !== dtf.AMDesignator.toUpperCase())) return null; + break; + case 'f': + msec = parseInt(matchGroup, 10) * 100; + if ((msec < 0) || (msec > 999)) return null; + break; + case 'ff': + msec = parseInt(matchGroup, 10) * 10; + if ((msec < 0) || (msec > 999)) return null; + break; + case 'fff': + msec = parseInt(matchGroup, 10); + if ((msec < 0) || (msec > 999)) return null; + break; + case 'dddd': + weekDay = cultureInfo._getDayIndex(matchGroup); + if ((weekDay < 0) || (weekDay > 6)) return null; + break; + case 'ddd': + weekDay = cultureInfo._getAbbrDayIndex(matchGroup); + if ((weekDay < 0) || (weekDay > 6)) return null; + break; + case 'zzz': + var offsets = matchGroup.split(/:/); + if (offsets.length !== 2) return null; + hourOffset = parseInt(offsets[0], 10); + if ((hourOffset < -12) || (hourOffset > 13)) return null; + var minOffset = parseInt(offsets[1], 10); + if ((minOffset < 0) || (minOffset > 59)) return null; + tzMinOffset = (hourOffset * 60) + (matchGroup.startsWith('-')? -minOffset : minOffset); + break; + case 'z': case 'zz': + hourOffset = parseInt(matchGroup, 10); + if ((hourOffset < -12) || (hourOffset > 13)) return null; + tzMinOffset = hourOffset * 60; + break; + case 'g': case 'gg': + var eraName = matchGroup; + if (!eraName || !dtf.eras) return null; + eraName = eraName.toLowerCase().trim(); + for (var i = 0, l = dtf.eras.length; i < l; i += 4) { + if (eraName === dtf.eras[i + 1].toLowerCase()) { + era = i; + break; + } + } + if (era === null) return null; + break; + } + } + } + var result = new Date(), defaults, convert = dtf.Calendar.convert; + if (convert) { + defaults = convert.fromGregorian(result); + } + if (!convert) { + defaults = [result.getFullYear(), result.getMonth(), result.getDate()]; + } + if (year === null) { + year = defaults[0]; + } + else if (dtf.eras) { + year += dtf.eras[(era || 0) + 3]; + } + if (month === null) { + month = defaults[1]; + } + if (date === null) { + date = defaults[2]; + } + if (convert) { + result = convert.toGregorian(year, month, date); + if (result === null) return null; + } + else { + result.setFullYear(year, month, date); + if (result.getDate() !== date) return null; + if ((weekDay !== null) && (result.getDay() !== weekDay)) { + return null; + } + } + if (pmHour && (hour < 12)) { + hour += 12; + } + result.setHours(hour, min, sec, msec); + if (tzMinOffset !== null) { + var adjustedMin = result.getMinutes() - (tzMinOffset + result.getTimezoneOffset()); + result.setHours(result.getHours() + parseInt(adjustedMin/60, 10), adjustedMin%60); + } + return result; +} +Date.prototype.format = function Date$format(format) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "format", type: String} + ]); + if (e) throw e; + return this._toFormattedString(format, Sys.CultureInfo.InvariantCulture); +} +Date.prototype.localeFormat = function Date$localeFormat(format) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "format", type: String} + ]); + if (e) throw e; + return this._toFormattedString(format, Sys.CultureInfo.CurrentCulture); +} +Date.prototype._toFormattedString = function Date$_toFormattedString(format, cultureInfo) { + var dtf = cultureInfo.dateTimeFormat, + convert = dtf.Calendar.convert; + if (!format || !format.length || (format === 'i')) { + if (cultureInfo && cultureInfo.name.length) { + if (convert) { + return this._toFormattedString(dtf.FullDateTimePattern, cultureInfo); + } + else { + var eraDate = new Date(this.getTime()); + var era = Date._getEra(this, dtf.eras); + eraDate.setFullYear(Date._getEraYear(this, dtf, era)); + return eraDate.toLocaleString(); + } + } + else { + return this.toString(); + } + } + var eras = dtf.eras, + sortable = (format === "s"); + format = Date._expandFormat(dtf, format); + var ret = new Sys.StringBuilder(); + var hour; + function addLeadingZero(num) { + if (num < 10) { + return '0' + num; + } + return num.toString(); + } + function addLeadingZeros(num) { + if (num < 10) { + return '00' + num; + } + if (num < 100) { + return '0' + num; + } + return num.toString(); + } + function padYear(year) { + if (year < 10) { + return '000' + year; + } + else if (year < 100) { + return '00' + year; + } + else if (year < 1000) { + return '0' + year; + } + return year.toString(); + } + + var foundDay, checkedDay, dayPartRegExp = /([^d]|^)(d|dd)([^d]|$)/g; + function hasDay() { + if (foundDay || checkedDay) { + return foundDay; + } + foundDay = dayPartRegExp.test(format); + checkedDay = true; + return foundDay; + } + + var quoteCount = 0, + tokenRegExp = Date._getTokenRegExp(), + converted; + if (!sortable && convert) { + converted = convert.fromGregorian(this); + } + for (;;) { + var index = tokenRegExp.lastIndex; + var ar = tokenRegExp.exec(format); + var preMatch = format.slice(index, ar ? ar.index : format.length); + quoteCount += Date._appendPreOrPostMatch(preMatch, ret); + if (!ar) break; + if ((quoteCount%2) === 1) { + ret.append(ar[0]); + continue; + } + + function getPart(date, part) { + if (converted) { + return converted[part]; + } + switch (part) { + case 0: return date.getFullYear(); + case 1: return date.getMonth(); + case 2: return date.getDate(); + } + } + switch (ar[0]) { + case "dddd": + ret.append(dtf.DayNames[this.getDay()]); + break; + case "ddd": + ret.append(dtf.AbbreviatedDayNames[this.getDay()]); + break; + case "dd": + foundDay = true; + ret.append(addLeadingZero(getPart(this, 2))); + break; + case "d": + foundDay = true; + ret.append(getPart(this, 2)); + break; + case "MMMM": + ret.append((dtf.MonthGenitiveNames && hasDay()) + ? dtf.MonthGenitiveNames[getPart(this, 1)] + : dtf.MonthNames[getPart(this, 1)]); + break; + case "MMM": + ret.append((dtf.AbbreviatedMonthGenitiveNames && hasDay()) + ? dtf.AbbreviatedMonthGenitiveNames[getPart(this, 1)] + : dtf.AbbreviatedMonthNames[getPart(this, 1)]); + break; + case "MM": + ret.append(addLeadingZero(getPart(this, 1) + 1)); + break; + case "M": + ret.append(getPart(this, 1) + 1); + break; + case "yyyy": + ret.append(padYear(converted ? converted[0] : Date._getEraYear(this, dtf, Date._getEra(this, eras), sortable))); + break; + case "yy": + ret.append(addLeadingZero((converted ? converted[0] : Date._getEraYear(this, dtf, Date._getEra(this, eras), sortable)) % 100)); + break; + case "y": + ret.append((converted ? converted[0] : Date._getEraYear(this, dtf, Date._getEra(this, eras), sortable)) % 100); + break; + case "hh": + hour = this.getHours() % 12; + if (hour === 0) hour = 12; + ret.append(addLeadingZero(hour)); + break; + case "h": + hour = this.getHours() % 12; + if (hour === 0) hour = 12; + ret.append(hour); + break; + case "HH": + ret.append(addLeadingZero(this.getHours())); + break; + case "H": + ret.append(this.getHours()); + break; + case "mm": + ret.append(addLeadingZero(this.getMinutes())); + break; + case "m": + ret.append(this.getMinutes()); + break; + case "ss": + ret.append(addLeadingZero(this.getSeconds())); + break; + case "s": + ret.append(this.getSeconds()); + break; + case "tt": + ret.append((this.getHours() < 12) ? dtf.AMDesignator : dtf.PMDesignator); + break; + case "t": + ret.append(((this.getHours() < 12) ? dtf.AMDesignator : dtf.PMDesignator).charAt(0)); + break; + case "f": + ret.append(addLeadingZeros(this.getMilliseconds()).charAt(0)); + break; + case "ff": + ret.append(addLeadingZeros(this.getMilliseconds()).substr(0, 2)); + break; + case "fff": + ret.append(addLeadingZeros(this.getMilliseconds())); + break; + case "z": + hour = this.getTimezoneOffset() / 60; + ret.append(((hour <= 0) ? '+' : '-') + Math.floor(Math.abs(hour))); + break; + case "zz": + hour = this.getTimezoneOffset() / 60; + ret.append(((hour <= 0) ? '+' : '-') + addLeadingZero(Math.floor(Math.abs(hour)))); + break; + case "zzz": + hour = this.getTimezoneOffset() / 60; + ret.append(((hour <= 0) ? '+' : '-') + addLeadingZero(Math.floor(Math.abs(hour))) + + ":" + addLeadingZero(Math.abs(this.getTimezoneOffset() % 60))); + break; + case "g": + case "gg": + if (dtf.eras) { + ret.append(dtf.eras[Date._getEra(this, eras) + 1]); + } + break; + case "/": + ret.append(dtf.DateSeparator); + break; + default: + Sys.Debug.fail("Invalid date format pattern"); + } + } + return ret.toString(); +} +String.localeFormat = function String$localeFormat(format, args) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "format", type: String}, + {name: "args", mayBeNull: true, parameterArray: true} + ]); + if (e) throw e; + return String._toFormattedString(true, arguments); +} +Number.parseLocale = function Number$parseLocale(value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String} + ], false); + if (e) throw e; + return Number._parse(value, Sys.CultureInfo.CurrentCulture); +} +Number.parseInvariant = function Number$parseInvariant(value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String} + ], false); + if (e) throw e; + return Number._parse(value, Sys.CultureInfo.InvariantCulture); +} +Number._parse = function Number$_parse(value, cultureInfo) { + value = value.trim(); + + if (value.match(/^[+-]?infinity$/i)) { + return parseFloat(value); + } + if (value.match(/^0x[a-f0-9]+$/i)) { + return parseInt(value); + } + var numFormat = cultureInfo.numberFormat; + var signInfo = Number._parseNumberNegativePattern(value, numFormat, numFormat.NumberNegativePattern); + var sign = signInfo[0]; + var num = signInfo[1]; + + if ((sign === '') && (numFormat.NumberNegativePattern !== 1)) { + signInfo = Number._parseNumberNegativePattern(value, numFormat, 1); + sign = signInfo[0]; + num = signInfo[1]; + } + if (sign === '') sign = '+'; + + var exponent; + var intAndFraction; + var exponentPos = num.indexOf('e'); + if (exponentPos < 0) exponentPos = num.indexOf('E'); + if (exponentPos < 0) { + intAndFraction = num; + exponent = null; + } + else { + intAndFraction = num.substr(0, exponentPos); + exponent = num.substr(exponentPos + 1); + } + + var integer; + var fraction; + var decimalPos = intAndFraction.indexOf(numFormat.NumberDecimalSeparator); + if (decimalPos < 0) { + integer = intAndFraction; + fraction = null; + } + else { + integer = intAndFraction.substr(0, decimalPos); + fraction = intAndFraction.substr(decimalPos + numFormat.NumberDecimalSeparator.length); + } + + integer = integer.split(numFormat.NumberGroupSeparator).join(''); + var altNumGroupSeparator = numFormat.NumberGroupSeparator.replace(/\u00A0/g, " "); + if (numFormat.NumberGroupSeparator !== altNumGroupSeparator) { + integer = integer.split(altNumGroupSeparator).join(''); + } + + var p = sign + integer; + if (fraction !== null) { + p += '.' + fraction; + } + if (exponent !== null) { + var expSignInfo = Number._parseNumberNegativePattern(exponent, numFormat, 1); + if (expSignInfo[0] === '') { + expSignInfo[0] = '+'; + } + p += 'e' + expSignInfo[0] + expSignInfo[1]; + } + if (p.match(/^[+-]?\d*\.?\d*(e[+-]?\d+)?$/)) { + return parseFloat(p); + } + return Number.NaN; +} +Number._parseNumberNegativePattern = function Number$_parseNumberNegativePattern(value, numFormat, numberNegativePattern) { + var neg = numFormat.NegativeSign; + var pos = numFormat.PositiveSign; + switch (numberNegativePattern) { + case 4: + neg = ' ' + neg; + pos = ' ' + pos; + case 3: + if (value.endsWith(neg)) { + return ['-', value.substr(0, value.length - neg.length)]; + } + else if (value.endsWith(pos)) { + return ['+', value.substr(0, value.length - pos.length)]; + } + break; + case 2: + neg += ' '; + pos += ' '; + case 1: + if (value.startsWith(neg)) { + return ['-', value.substr(neg.length)]; + } + else if (value.startsWith(pos)) { + return ['+', value.substr(pos.length)]; + } + break; + case 0: + if (value.startsWith('(') && value.endsWith(')')) { + return ['-', value.substr(1, value.length - 2)]; + } + break; + default: + Sys.Debug.fail(""); + } + return ['', value]; +} +Number.prototype.format = function Number$format(format) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "format", type: String} + ]); + if (e) throw e; + return this._toFormattedString(format, Sys.CultureInfo.InvariantCulture); +} +Number.prototype.localeFormat = function Number$localeFormat(format) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "format", type: String} + ]); + if (e) throw e; + return this._toFormattedString(format, Sys.CultureInfo.CurrentCulture); +} +Number.prototype._toFormattedString = function Number$_toFormattedString(format, cultureInfo) { + if (!format || (format.length === 0) || (format === 'i')) { + if (cultureInfo && (cultureInfo.name.length > 0)) { + return this.toLocaleString(); + } + else { + return this.toString(); + } + } + + var _percentPositivePattern = ["n %", "n%", "%n" ]; + var _percentNegativePattern = ["-n %", "-n%", "-%n"]; + var _numberNegativePattern = ["(n)","-n","- n","n-","n -"]; + var _currencyPositivePattern = ["$n","n$","$ n","n $"]; + var _currencyNegativePattern = ["($n)","-$n","$-n","$n-","(n$)","-n$","n-$","n$-","-n $","-$ n","n $-","$ n-","$ -n","n- $","($ n)","(n $)"]; + function zeroPad(str, count, left) { + for (var l=str.length; l < count; l++) { + str = (left ? ('0' + str) : (str + '0')); + } + return str; + } + + function expandNumber(number, precision, groupSizes, sep, decimalChar) { + Sys.Debug.assert(groupSizes.length > 0, "groupSizes must be an array of at least 1"); + var curSize = groupSizes[0]; + var curGroupIndex = 1; + var factor = Math.pow(10, precision); + var rounded = (Math.round(number * factor) / factor); + if (!isFinite(rounded)) { + rounded = number; + } + number = rounded; + + var numberString = number.toString(); + var right = ""; + var exponent; + + + var split = numberString.split(/e/i); + numberString = split[0]; + exponent = (split.length > 1 ? parseInt(split[1]) : 0); + split = numberString.split('.'); + numberString = split[0]; + right = split.length > 1 ? split[1] : ""; + + var l; + if (exponent > 0) { + right = zeroPad(right, exponent, false); + numberString += right.slice(0, exponent); + right = right.substr(exponent); + } + else if (exponent < 0) { + exponent = -exponent; + numberString = zeroPad(numberString, exponent+1, true); + right = numberString.slice(-exponent, numberString.length) + right; + numberString = numberString.slice(0, -exponent); + } + if (precision > 0) { + if (right.length > precision) { + right = right.slice(0, precision); + } + else { + right = zeroPad(right, precision, false); + } + right = decimalChar + right; + } + else { + right = ""; + } + var stringIndex = numberString.length-1; + var ret = ""; + while (stringIndex >= 0) { + if (curSize === 0 || curSize > stringIndex) { + if (ret.length > 0) + return numberString.slice(0, stringIndex + 1) + sep + ret + right; + else + return numberString.slice(0, stringIndex + 1) + right; + } + if (ret.length > 0) + ret = numberString.slice(stringIndex - curSize + 1, stringIndex+1) + sep + ret; + else + ret = numberString.slice(stringIndex - curSize + 1, stringIndex+1); + stringIndex -= curSize; + if (curGroupIndex < groupSizes.length) { + curSize = groupSizes[curGroupIndex]; + curGroupIndex++; + } + } + return numberString.slice(0, stringIndex + 1) + sep + ret + right; + } + var nf = cultureInfo.numberFormat; + var number = Math.abs(this); + if (!format) + format = "D"; + var precision = -1; + if (format.length > 1) precision = parseInt(format.slice(1), 10); + var pattern; + switch (format.charAt(0)) { + case "d": + case "D": + pattern = 'n'; + if (precision !== -1) { + number = zeroPad(""+number, precision, true); + } + if (this < 0) number = -number; + break; + case "c": + case "C": + if (this < 0) pattern = _currencyNegativePattern[nf.CurrencyNegativePattern]; + else pattern = _currencyPositivePattern[nf.CurrencyPositivePattern]; + if (precision === -1) precision = nf.CurrencyDecimalDigits; + number = expandNumber(Math.abs(this), precision, nf.CurrencyGroupSizes, nf.CurrencyGroupSeparator, nf.CurrencyDecimalSeparator); + break; + case "n": + case "N": + if (this < 0) pattern = _numberNegativePattern[nf.NumberNegativePattern]; + else pattern = 'n'; + if (precision === -1) precision = nf.NumberDecimalDigits; + number = expandNumber(Math.abs(this), precision, nf.NumberGroupSizes, nf.NumberGroupSeparator, nf.NumberDecimalSeparator); + break; + case "p": + case "P": + if (this < 0) pattern = _percentNegativePattern[nf.PercentNegativePattern]; + else pattern = _percentPositivePattern[nf.PercentPositivePattern]; + if (precision === -1) precision = nf.PercentDecimalDigits; + number = expandNumber(Math.abs(this) * 100, precision, nf.PercentGroupSizes, nf.PercentGroupSeparator, nf.PercentDecimalSeparator); + break; + default: + throw Error.format(Sys.Res.formatBadFormatSpecifier); + } + var regex = /n|\$|-|%/g; + var ret = ""; + for (;;) { + var index = regex.lastIndex; + var ar = regex.exec(pattern); + ret += pattern.slice(index, ar ? ar.index : pattern.length); + if (!ar) + break; + switch (ar[0]) { + case "n": + ret += number; + break; + case "$": + ret += nf.CurrencySymbol; + break; + case "-": + if (/[1-9]/.test(number)) { + ret += nf.NegativeSign; + } + break; + case "%": + ret += nf.PercentSymbol; + break; + default: + Sys.Debug.fail("Invalid number format pattern"); + } + } + return ret; +} + +Sys.CultureInfo = function Sys$CultureInfo(name, numberFormat, dateTimeFormat) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "name", type: String}, + {name: "numberFormat", type: Object}, + {name: "dateTimeFormat", type: Object} + ]); + if (e) throw e; + this.name = name; + this.numberFormat = numberFormat; + this.dateTimeFormat = dateTimeFormat; +} + function Sys$CultureInfo$_getDateTimeFormats() { + if (! this._dateTimeFormats) { + var dtf = this.dateTimeFormat; + this._dateTimeFormats = + [ dtf.MonthDayPattern, + dtf.YearMonthPattern, + dtf.ShortDatePattern, + dtf.ShortTimePattern, + dtf.LongDatePattern, + dtf.LongTimePattern, + dtf.FullDateTimePattern, + dtf.RFC1123Pattern, + dtf.SortableDateTimePattern, + dtf.UniversalSortableDateTimePattern ]; + } + return this._dateTimeFormats; + } + function Sys$CultureInfo$_getIndex(value, a1, a2) { + var upper = this._toUpper(value), + i = Array.indexOf(a1, upper); + if (i === -1) { + i = Array.indexOf(a2, upper); + } + return i; + } + function Sys$CultureInfo$_getMonthIndex(value) { + if (!this._upperMonths) { + this._upperMonths = this._toUpperArray(this.dateTimeFormat.MonthNames); + this._upperMonthsGenitive = this._toUpperArray(this.dateTimeFormat.MonthGenitiveNames); + } + return this._getIndex(value, this._upperMonths, this._upperMonthsGenitive); + } + function Sys$CultureInfo$_getAbbrMonthIndex(value) { + if (!this._upperAbbrMonths) { + this._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames); + this._upperAbbrMonthsGenitive = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthGenitiveNames); + } + return this._getIndex(value, this._upperAbbrMonths, this._upperAbbrMonthsGenitive); + } + function Sys$CultureInfo$_getDayIndex(value) { + if (!this._upperDays) { + this._upperDays = this._toUpperArray(this.dateTimeFormat.DayNames); + } + return Array.indexOf(this._upperDays, this._toUpper(value)); + } + function Sys$CultureInfo$_getAbbrDayIndex(value) { + if (!this._upperAbbrDays) { + this._upperAbbrDays = this._toUpperArray(this.dateTimeFormat.AbbreviatedDayNames); + } + return Array.indexOf(this._upperAbbrDays, this._toUpper(value)); + } + function Sys$CultureInfo$_toUpperArray(arr) { + var result = []; + for (var i = 0, il = arr.length; i < il; i++) { + result[i] = this._toUpper(arr[i]); + } + return result; + } + function Sys$CultureInfo$_toUpper(value) { + return value.split("\u00A0").join(' ').toUpperCase(); + } +Sys.CultureInfo.prototype = { + _getDateTimeFormats: Sys$CultureInfo$_getDateTimeFormats, + _getIndex: Sys$CultureInfo$_getIndex, + _getMonthIndex: Sys$CultureInfo$_getMonthIndex, + _getAbbrMonthIndex: Sys$CultureInfo$_getAbbrMonthIndex, + _getDayIndex: Sys$CultureInfo$_getDayIndex, + _getAbbrDayIndex: Sys$CultureInfo$_getAbbrDayIndex, + _toUpperArray: Sys$CultureInfo$_toUpperArray, + _toUpper: Sys$CultureInfo$_toUpper +} +Sys.CultureInfo.registerClass('Sys.CultureInfo'); +Sys.CultureInfo._parse = function Sys$CultureInfo$_parse(value) { + var dtf = value.dateTimeFormat; + if (dtf && !dtf.eras) { + dtf.eras = value.eras; + } + return new Sys.CultureInfo(value.name, value.numberFormat, dtf); +} +Sys.CultureInfo.InvariantCulture = Sys.CultureInfo._parse({"name":"","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":true,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"\u00A4","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":true},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, dd MMMM yyyy HH:mm:ss","LongDatePattern":"dddd, dd MMMM yyyy","LongTimePattern":"HH:mm:ss","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"MM/dd/yyyy","ShortTimePattern":"HH:mm","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"yyyy MMMM","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":true,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]},"eras":[1,"A.D.",null,0]}); +if (typeof(__cultureInfo) === "object") { + Sys.CultureInfo.CurrentCulture = Sys.CultureInfo._parse(__cultureInfo); + delete __cultureInfo; +} +else { + Sys.CultureInfo.CurrentCulture = Sys.CultureInfo._parse({"name":"en-US","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":false,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"$","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":false},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, MMMM dd, yyyy h:mm:ss tt","LongDatePattern":"dddd, MMMM dd, yyyy","LongTimePattern":"h:mm:ss tt","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"M/d/yyyy","ShortTimePattern":"h:mm tt","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"MMMM, yyyy","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":false,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]},"eras":[1,"A.D.",null,0]}); +} +Type.registerNamespace('Sys.Serialization'); +Sys.Serialization.JavaScriptSerializer = function Sys$Serialization$JavaScriptSerializer() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); +} +Sys.Serialization.JavaScriptSerializer.registerClass('Sys.Serialization.JavaScriptSerializer'); +Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs = []; +Sys.Serialization.JavaScriptSerializer._charsToEscape = []; +Sys.Serialization.JavaScriptSerializer._dateRegEx = new RegExp('(^|[^\\\\])\\"\\\\/Date\\((-?[0-9]+)(?:[a-zA-Z]|(?:\\+|-)[0-9]{4})?\\)\\\\/\\"', 'g'); +Sys.Serialization.JavaScriptSerializer._escapeChars = {}; +Sys.Serialization.JavaScriptSerializer._escapeRegEx = new RegExp('["\\\\\\x00-\\x1F]', 'i'); +Sys.Serialization.JavaScriptSerializer._escapeRegExGlobal = new RegExp('["\\\\\\x00-\\x1F]', 'g'); +Sys.Serialization.JavaScriptSerializer._jsonRegEx = new RegExp('[^,:{}\\[\\]0-9.\\-+Eaeflnr-u \\n\\r\\t]', 'g'); +Sys.Serialization.JavaScriptSerializer._jsonStringRegEx = new RegExp('"(\\\\.|[^"\\\\])*"', 'g'); +Sys.Serialization.JavaScriptSerializer._serverTypeFieldName = '__type'; +Sys.Serialization.JavaScriptSerializer._init = function Sys$Serialization$JavaScriptSerializer$_init() { + var replaceChars = ['\\u0000','\\u0001','\\u0002','\\u0003','\\u0004','\\u0005','\\u0006','\\u0007', + '\\b','\\t','\\n','\\u000b','\\f','\\r','\\u000e','\\u000f','\\u0010','\\u0011', + '\\u0012','\\u0013','\\u0014','\\u0015','\\u0016','\\u0017','\\u0018','\\u0019', + '\\u001a','\\u001b','\\u001c','\\u001d','\\u001e','\\u001f']; + Sys.Serialization.JavaScriptSerializer._charsToEscape[0] = '\\'; + Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs['\\'] = new RegExp('\\\\', 'g'); + Sys.Serialization.JavaScriptSerializer._escapeChars['\\'] = '\\\\'; + Sys.Serialization.JavaScriptSerializer._charsToEscape[1] = '"'; + Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs['"'] = new RegExp('"', 'g'); + Sys.Serialization.JavaScriptSerializer._escapeChars['"'] = '\\"'; + for (var i = 0; i < 32; i++) { + var c = String.fromCharCode(i); + Sys.Serialization.JavaScriptSerializer._charsToEscape[i+2] = c; + Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs[c] = new RegExp(c, 'g'); + Sys.Serialization.JavaScriptSerializer._escapeChars[c] = replaceChars[i]; + } +} +Sys.Serialization.JavaScriptSerializer._serializeBooleanWithBuilder = function Sys$Serialization$JavaScriptSerializer$_serializeBooleanWithBuilder(object, stringBuilder) { + stringBuilder.append(object.toString()); +} +Sys.Serialization.JavaScriptSerializer._serializeNumberWithBuilder = function Sys$Serialization$JavaScriptSerializer$_serializeNumberWithBuilder(object, stringBuilder) { + if (isFinite(object)) { + stringBuilder.append(String(object)); + } + else { + throw Error.invalidOperation(Sys.Res.cannotSerializeNonFiniteNumbers); + } +} +Sys.Serialization.JavaScriptSerializer._serializeStringWithBuilder = function Sys$Serialization$JavaScriptSerializer$_serializeStringWithBuilder(string, stringBuilder) { + stringBuilder.append('"'); + if (Sys.Serialization.JavaScriptSerializer._escapeRegEx.test(string)) { + if (Sys.Serialization.JavaScriptSerializer._charsToEscape.length === 0) { + Sys.Serialization.JavaScriptSerializer._init(); + } + if (string.length < 128) { + string = string.replace(Sys.Serialization.JavaScriptSerializer._escapeRegExGlobal, + function(x) { return Sys.Serialization.JavaScriptSerializer._escapeChars[x]; }); + } + else { + for (var i = 0; i < 34; i++) { + var c = Sys.Serialization.JavaScriptSerializer._charsToEscape[i]; + if (string.indexOf(c) !== -1) { + if (Sys.Browser.agent === Sys.Browser.Opera || Sys.Browser.agent === Sys.Browser.FireFox) { + string = string.split(c).join(Sys.Serialization.JavaScriptSerializer._escapeChars[c]); + } + else { + string = string.replace(Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs[c], + Sys.Serialization.JavaScriptSerializer._escapeChars[c]); + } + } + } + } + } + stringBuilder.append(string); + stringBuilder.append('"'); +} +Sys.Serialization.JavaScriptSerializer._serializeWithBuilder = function Sys$Serialization$JavaScriptSerializer$_serializeWithBuilder(object, stringBuilder, sort, prevObjects) { + var i; + switch (typeof object) { + case 'object': + if (object) { + if (prevObjects){ + for( var j = 0; j < prevObjects.length; j++) { + if (prevObjects[j] === object) { + throw Error.invalidOperation(Sys.Res.cannotSerializeObjectWithCycle); + } + } + } + else { + prevObjects = new Array(); + } + try { + Array.add(prevObjects, object); + + if (Number.isInstanceOfType(object)){ + Sys.Serialization.JavaScriptSerializer._serializeNumberWithBuilder(object, stringBuilder); + } + else if (Boolean.isInstanceOfType(object)){ + Sys.Serialization.JavaScriptSerializer._serializeBooleanWithBuilder(object, stringBuilder); + } + else if (String.isInstanceOfType(object)){ + Sys.Serialization.JavaScriptSerializer._serializeStringWithBuilder(object, stringBuilder); + } + + else if (Array.isInstanceOfType(object)) { + stringBuilder.append('['); + + for (i = 0; i < object.length; ++i) { + if (i > 0) { + stringBuilder.append(','); + } + Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(object[i], stringBuilder,false,prevObjects); + } + stringBuilder.append(']'); + } + else { + if (Date.isInstanceOfType(object)) { + stringBuilder.append('"\\/Date('); + stringBuilder.append(object.getTime()); + stringBuilder.append(')\\/"'); + break; + } + var properties = []; + var propertyCount = 0; + for (var name in object) { + if (name.startsWith('$')) { + continue; + } + if (name === Sys.Serialization.JavaScriptSerializer._serverTypeFieldName && propertyCount !== 0){ + properties[propertyCount++] = properties[0]; + properties[0] = name; + } + else{ + properties[propertyCount++] = name; + } + } + if (sort) properties.sort(); + stringBuilder.append('{'); + var needComma = false; + + for (i=0; i + /// + /// + var e = Function._validateParams(arguments, [ + {name: "object", mayBeNull: true} + ]); + if (e) throw e; + var stringBuilder = new Sys.StringBuilder(); + Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(object, stringBuilder, false); + return stringBuilder.toString(); +} +Sys.Serialization.JavaScriptSerializer.deserialize = function Sys$Serialization$JavaScriptSerializer$deserialize(data, secure) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "data", type: String}, + {name: "secure", type: Boolean, optional: true} + ]); + if (e) throw e; + + if (data.length === 0) throw Error.argument('data', Sys.Res.cannotDeserializeEmptyString); + try { + var exp = data.replace(Sys.Serialization.JavaScriptSerializer._dateRegEx, "$1new Date($2)"); + + if (secure && Sys.Serialization.JavaScriptSerializer._jsonRegEx.test( + exp.replace(Sys.Serialization.JavaScriptSerializer._jsonStringRegEx, ''))) throw null; + return eval('(' + exp + ')'); + } + catch (e) { + throw Error.argument('data', Sys.Res.cannotDeserializeInvalidJson); + } +} +Type.registerNamespace('Sys.UI'); + +Sys.EventHandlerList = function Sys$EventHandlerList() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._list = {}; +} + function Sys$EventHandlerList$_addHandler(id, handler) { + Array.add(this._getEvent(id, true), handler); + } + function Sys$EventHandlerList$addHandler(id, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "id", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + this._addHandler(id, handler); + } + function Sys$EventHandlerList$_removeHandler(id, handler) { + var evt = this._getEvent(id); + if (!evt) return; + Array.remove(evt, handler); + } + function Sys$EventHandlerList$removeHandler(id, handler) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "id", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + this._removeHandler(id, handler); + } + function Sys$EventHandlerList$getHandler(id) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "id", type: String} + ]); + if (e) throw e; + var evt = this._getEvent(id); + if (!evt || (evt.length === 0)) return null; + evt = Array.clone(evt); + return function(source, args) { + for (var i = 0, l = evt.length; i < l; i++) { + evt[i](source, args); + } + }; + } + function Sys$EventHandlerList$_getEvent(id, create) { + if (!this._list[id]) { + if (!create) return null; + this._list[id] = []; + } + return this._list[id]; + } +Sys.EventHandlerList.prototype = { + _addHandler: Sys$EventHandlerList$_addHandler, + addHandler: Sys$EventHandlerList$addHandler, + _removeHandler: Sys$EventHandlerList$_removeHandler, + removeHandler: Sys$EventHandlerList$removeHandler, + getHandler: Sys$EventHandlerList$getHandler, + _getEvent: Sys$EventHandlerList$_getEvent +} +Sys.EventHandlerList.registerClass('Sys.EventHandlerList'); +Sys.CommandEventArgs = function Sys$CommandEventArgs(commandName, commandArgument, commandSource) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "commandName", type: String}, + {name: "commandArgument", mayBeNull: true}, + {name: "commandSource", mayBeNull: true} + ]); + if (e) throw e; + Sys.CommandEventArgs.initializeBase(this); + this._commandName = commandName; + this._commandArgument = commandArgument; + this._commandSource = commandSource; +} + function Sys$CommandEventArgs$get_commandName() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._commandName; + } + function Sys$CommandEventArgs$get_commandArgument() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._commandArgument; + } + function Sys$CommandEventArgs$get_commandSource() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._commandSource; + } +Sys.CommandEventArgs.prototype = { + _commandName: null, + _commandArgument: null, + _commandSource: null, + get_commandName: Sys$CommandEventArgs$get_commandName, + get_commandArgument: Sys$CommandEventArgs$get_commandArgument, + get_commandSource: Sys$CommandEventArgs$get_commandSource +} +Sys.CommandEventArgs.registerClass("Sys.CommandEventArgs", Sys.CancelEventArgs); + +Sys.INotifyPropertyChange = function Sys$INotifyPropertyChange() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} + function Sys$INotifyPropertyChange$add_propertyChanged(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + throw Error.notImplemented(); + } + function Sys$INotifyPropertyChange$remove_propertyChanged(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + throw Error.notImplemented(); + } +Sys.INotifyPropertyChange.prototype = { + add_propertyChanged: Sys$INotifyPropertyChange$add_propertyChanged, + remove_propertyChanged: Sys$INotifyPropertyChange$remove_propertyChanged +} +Sys.INotifyPropertyChange.registerInterface('Sys.INotifyPropertyChange'); + +Sys.PropertyChangedEventArgs = function Sys$PropertyChangedEventArgs(propertyName) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "propertyName", type: String} + ]); + if (e) throw e; + Sys.PropertyChangedEventArgs.initializeBase(this); + this._propertyName = propertyName; +} + + function Sys$PropertyChangedEventArgs$get_propertyName() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._propertyName; + } +Sys.PropertyChangedEventArgs.prototype = { + get_propertyName: Sys$PropertyChangedEventArgs$get_propertyName +} +Sys.PropertyChangedEventArgs.registerClass('Sys.PropertyChangedEventArgs', Sys.EventArgs); + +Sys.INotifyDisposing = function Sys$INotifyDisposing() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} + function Sys$INotifyDisposing$add_disposing(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + throw Error.notImplemented(); + } + function Sys$INotifyDisposing$remove_disposing(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + throw Error.notImplemented(); + } +Sys.INotifyDisposing.prototype = { + add_disposing: Sys$INotifyDisposing$add_disposing, + remove_disposing: Sys$INotifyDisposing$remove_disposing +} +Sys.INotifyDisposing.registerInterface("Sys.INotifyDisposing"); + +Sys.Component = function Sys$Component() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (Sys.Application) Sys.Application.registerDisposableObject(this); +} + function Sys$Component$get_events() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._events) { + this._events = new Sys.EventHandlerList(); + } + return this._events; + } + function Sys$Component$get_id() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._id; + } + function Sys$Component$set_id(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + if (this._idSet) throw Error.invalidOperation(Sys.Res.componentCantSetIdTwice); + this._idSet = true; + var oldId = this.get_id(); + if (oldId && Sys.Application.findComponent(oldId)) throw Error.invalidOperation(Sys.Res.componentCantSetIdAfterAddedToApp); + this._id = value; + } + function Sys$Component$get_isInitialized() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._initialized; + } + function Sys$Component$get_isUpdating() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._updating; + } + function Sys$Component$add_disposing(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().addHandler("disposing", handler); + } + function Sys$Component$remove_disposing(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().removeHandler("disposing", handler); + } + function Sys$Component$add_propertyChanged(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().addHandler("propertyChanged", handler); + } + function Sys$Component$remove_propertyChanged(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().removeHandler("propertyChanged", handler); + } + function Sys$Component$beginUpdate() { + this._updating = true; + } + function Sys$Component$dispose() { + if (this._events) { + var handler = this._events.getHandler("disposing"); + if (handler) { + handler(this, Sys.EventArgs.Empty); + } + } + delete this._events; + Sys.Application.unregisterDisposableObject(this); + Sys.Application.removeComponent(this); + } + function Sys$Component$endUpdate() { + this._updating = false; + if (!this._initialized) this.initialize(); + this.updated(); + } + function Sys$Component$initialize() { + this._initialized = true; + } + function Sys$Component$raisePropertyChanged(propertyName) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "propertyName", type: String} + ]); + if (e) throw e; + if (!this._events) return; + var handler = this._events.getHandler("propertyChanged"); + if (handler) { + handler(this, new Sys.PropertyChangedEventArgs(propertyName)); + } + } + function Sys$Component$updated() { + } +Sys.Component.prototype = { + _id: null, + _idSet: false, + _initialized: false, + _updating: false, + get_events: Sys$Component$get_events, + get_id: Sys$Component$get_id, + set_id: Sys$Component$set_id, + get_isInitialized: Sys$Component$get_isInitialized, + get_isUpdating: Sys$Component$get_isUpdating, + add_disposing: Sys$Component$add_disposing, + remove_disposing: Sys$Component$remove_disposing, + add_propertyChanged: Sys$Component$add_propertyChanged, + remove_propertyChanged: Sys$Component$remove_propertyChanged, + beginUpdate: Sys$Component$beginUpdate, + dispose: Sys$Component$dispose, + endUpdate: Sys$Component$endUpdate, + initialize: Sys$Component$initialize, + raisePropertyChanged: Sys$Component$raisePropertyChanged, + updated: Sys$Component$updated +} +Sys.Component.registerClass('Sys.Component', null, Sys.IDisposable, Sys.INotifyPropertyChange, Sys.INotifyDisposing); +function Sys$Component$_setProperties(target, properties) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "target"}, + {name: "properties"} + ]); + if (e) throw e; + var current; + var targetType = Object.getType(target); + var isObject = (targetType === Object) || (targetType === Sys.UI.DomElement); + var isComponent = Sys.Component.isInstanceOfType(target) && !target.get_isUpdating(); + if (isComponent) target.beginUpdate(); + for (var name in properties) { + var val = properties[name]; + var getter = isObject ? null : target["get_" + name]; + if (isObject || typeof(getter) !== 'function') { + var targetVal = target[name]; + if (!isObject && typeof(targetVal) === 'undefined') throw Error.invalidOperation(String.format(Sys.Res.propertyUndefined, name)); + if (!val || (typeof(val) !== 'object') || (isObject && !targetVal)) { + target[name] = val; + } + else { + Sys$Component$_setProperties(targetVal, val); + } + } + else { + var setter = target["set_" + name]; + if (typeof(setter) === 'function') { + setter.apply(target, [val]); + } + else if (val instanceof Array) { + current = getter.apply(target); + if (!(current instanceof Array)) throw new Error.invalidOperation(String.format(Sys.Res.propertyNotAnArray, name)); + for (var i = 0, j = current.length, l= val.length; i < l; i++, j++) { + current[j] = val[i]; + } + } + else if ((typeof(val) === 'object') && (Object.getType(val) === Object)) { + current = getter.apply(target); + if ((typeof(current) === 'undefined') || (current === null)) throw new Error.invalidOperation(String.format(Sys.Res.propertyNullOrUndefined, name)); + Sys$Component$_setProperties(current, val); + } + else { + throw new Error.invalidOperation(String.format(Sys.Res.propertyNotWritable, name)); + } + } + } + if (isComponent) target.endUpdate(); +} +function Sys$Component$_setReferences(component, references) { + for (var name in references) { + var setter = component["set_" + name]; + var reference = $find(references[name]); + if (typeof(setter) !== 'function') throw new Error.invalidOperation(String.format(Sys.Res.propertyNotWritable, name)); + if (!reference) throw Error.invalidOperation(String.format(Sys.Res.referenceNotFound, references[name])); + setter.apply(component, [reference]); + } +} +var $create = Sys.Component.create = function Sys$Component$create(type, properties, events, references, element) { + /// + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "type", type: Type}, + {name: "properties", mayBeNull: true, optional: true}, + {name: "events", mayBeNull: true, optional: true}, + {name: "references", mayBeNull: true, optional: true}, + {name: "element", mayBeNull: true, domElement: true, optional: true} + ]); + if (e) throw e; + if (!type.inheritsFrom(Sys.Component)) { + throw Error.argument('type', String.format(Sys.Res.createNotComponent, type.getName())); + } + if (type.inheritsFrom(Sys.UI.Behavior) || type.inheritsFrom(Sys.UI.Control)) { + if (!element) throw Error.argument('element', Sys.Res.createNoDom); + } + else if (element) throw Error.argument('element', Sys.Res.createComponentOnDom); + var component = (element ? new type(element): new type()); + var app = Sys.Application; + var creatingComponents = app.get_isCreatingComponents(); + component.beginUpdate(); + if (properties) { + Sys$Component$_setProperties(component, properties); + } + if (events) { + for (var name in events) { + if (!(component["add_" + name] instanceof Function)) throw new Error.invalidOperation(String.format(Sys.Res.undefinedEvent, name)); + if (!(events[name] instanceof Function)) throw new Error.invalidOperation(Sys.Res.eventHandlerNotFunction); + component["add_" + name](events[name]); + } + } + if (component.get_id()) { + app.addComponent(component); + } + if (creatingComponents) { + app._createdComponents[app._createdComponents.length] = component; + if (references) { + app._addComponentToSecondPass(component, references); + } + else { + component.endUpdate(); + } + } + else { + if (references) { + Sys$Component$_setReferences(component, references); + } + component.endUpdate(); + } + return component; +} + +Sys.UI.MouseButton = function Sys$UI$MouseButton() { + /// + /// + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} +Sys.UI.MouseButton.prototype = { + leftButton: 0, + middleButton: 1, + rightButton: 2 +} +Sys.UI.MouseButton.registerEnum("Sys.UI.MouseButton"); + +Sys.UI.Key = function Sys$UI$Key() { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} +Sys.UI.Key.prototype = { + backspace: 8, + tab: 9, + enter: 13, + esc: 27, + space: 32, + pageUp: 33, + pageDown: 34, + end: 35, + home: 36, + left: 37, + up: 38, + right: 39, + down: 40, + del: 127 +} +Sys.UI.Key.registerEnum("Sys.UI.Key"); + +Sys.UI.Point = function Sys$UI$Point(x, y) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "x", type: Number, integer: true}, + {name: "y", type: Number, integer: true} + ]); + if (e) throw e; + this.x = x; + this.y = y; +} +Sys.UI.Point.registerClass('Sys.UI.Point'); + +Sys.UI.Bounds = function Sys$UI$Bounds(x, y, width, height) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "x", type: Number, integer: true}, + {name: "y", type: Number, integer: true}, + {name: "width", type: Number, integer: true}, + {name: "height", type: Number, integer: true} + ]); + if (e) throw e; + this.x = x; + this.y = y; + this.height = height; + this.width = width; +} +Sys.UI.Bounds.registerClass('Sys.UI.Bounds'); + +Sys.UI.DomEvent = function Sys$UI$DomEvent(eventObject) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "eventObject"} + ]); + if (e) throw e; + var ev = eventObject; + var etype = this.type = ev.type.toLowerCase(); + this.rawEvent = ev; + this.altKey = ev.altKey; + if (typeof(ev.button) !== 'undefined') { + this.button = (typeof(ev.which) !== 'undefined') ? ev.button : + (ev.button === 4) ? Sys.UI.MouseButton.middleButton : + (ev.button === 2) ? Sys.UI.MouseButton.rightButton : + Sys.UI.MouseButton.leftButton; + } + if (etype === 'keypress') { + this.charCode = ev.charCode || ev.keyCode; + } + else if (ev.keyCode && (ev.keyCode === 46)) { + this.keyCode = 127; + } + else { + this.keyCode = ev.keyCode; + } + this.clientX = ev.clientX; + this.clientY = ev.clientY; + this.ctrlKey = ev.ctrlKey; + this.target = ev.target ? ev.target : ev.srcElement; + if (!etype.startsWith('key')) { + if ((typeof(ev.offsetX) !== 'undefined') && (typeof(ev.offsetY) !== 'undefined')) { + this.offsetX = ev.offsetX; + this.offsetY = ev.offsetY; + } + else if (this.target && (this.target.nodeType !== 3) && (typeof(ev.clientX) === 'number')) { + var loc = Sys.UI.DomElement.getLocation(this.target); + var w = Sys.UI.DomElement._getWindow(this.target); + this.offsetX = (w.pageXOffset || 0) + ev.clientX - loc.x; + this.offsetY = (w.pageYOffset || 0) + ev.clientY - loc.y; + } + } + this.screenX = ev.screenX; + this.screenY = ev.screenY; + this.shiftKey = ev.shiftKey; +} + function Sys$UI$DomEvent$preventDefault() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this.rawEvent.preventDefault) { + this.rawEvent.preventDefault(); + } + else if (window.event) { + this.rawEvent.returnValue = false; + } + } + function Sys$UI$DomEvent$stopPropagation() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this.rawEvent.stopPropagation) { + this.rawEvent.stopPropagation(); + } + else if (window.event) { + this.rawEvent.cancelBubble = true; + } + } +Sys.UI.DomEvent.prototype = { + preventDefault: Sys$UI$DomEvent$preventDefault, + stopPropagation: Sys$UI$DomEvent$stopPropagation +} +Sys.UI.DomEvent.registerClass('Sys.UI.DomEvent'); +var $addHandler = Sys.UI.DomEvent.addHandler = function Sys$UI$DomEvent$addHandler(element, eventName, handler, autoRemove) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element"}, + {name: "eventName", type: String}, + {name: "handler", type: Function}, + {name: "autoRemove", type: Boolean, optional: true} + ]); + if (e) throw e; + Sys.UI.DomEvent._ensureDomNode(element); + if (eventName === "error") throw Error.invalidOperation(Sys.Res.addHandlerCantBeUsedForError); + if (!element._events) { + element._events = {}; + } + var eventCache = element._events[eventName]; + if (!eventCache) { + element._events[eventName] = eventCache = []; + } + var browserHandler; + if (element.addEventListener) { + browserHandler = function(e) { + return handler.call(element, new Sys.UI.DomEvent(e)); + } + element.addEventListener(eventName, browserHandler, false); + } + else if (element.attachEvent) { + browserHandler = function() { + var e = {}; + try {e = Sys.UI.DomElement._getWindow(element).event} catch(ex) {} + return handler.call(element, new Sys.UI.DomEvent(e)); + } + element.attachEvent('on' + eventName, browserHandler); + } + eventCache[eventCache.length] = {handler: handler, browserHandler: browserHandler, autoRemove: autoRemove }; + if (autoRemove) { + var d = element.dispose; + if (d !== Sys.UI.DomEvent._disposeHandlers) { + element.dispose = Sys.UI.DomEvent._disposeHandlers; + if (typeof(d) !== "undefined") { + element._chainDispose = d; + } + } + } +} +var $addHandlers = Sys.UI.DomEvent.addHandlers = function Sys$UI$DomEvent$addHandlers(element, events, handlerOwner, autoRemove) { + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element"}, + {name: "events", type: Object}, + {name: "handlerOwner", optional: true}, + {name: "autoRemove", type: Boolean, optional: true} + ]); + if (e) throw e; + Sys.UI.DomEvent._ensureDomNode(element); + for (var name in events) { + var handler = events[name]; + if (typeof(handler) !== 'function') throw Error.invalidOperation(Sys.Res.cantAddNonFunctionhandler); + if (handlerOwner) { + handler = Function.createDelegate(handlerOwner, handler); + } + $addHandler(element, name, handler, autoRemove || false); + } +} +var $clearHandlers = Sys.UI.DomEvent.clearHandlers = function Sys$UI$DomEvent$clearHandlers(element) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element"} + ]); + if (e) throw e; + Sys.UI.DomEvent._ensureDomNode(element); + Sys.UI.DomEvent._clearHandlers(element, false); +} +Sys.UI.DomEvent._clearHandlers = function Sys$UI$DomEvent$_clearHandlers(element, autoRemoving) { + if (element._events) { + var cache = element._events; + for (var name in cache) { + var handlers = cache[name]; + for (var i = handlers.length - 1; i >= 0; i--) { + var entry = handlers[i]; + if (!autoRemoving || entry.autoRemove) { + $removeHandler(element, name, entry.handler); + } + } + } + element._events = null; + } +} +Sys.UI.DomEvent._disposeHandlers = function Sys$UI$DomEvent$_disposeHandlers() { + Sys.UI.DomEvent._clearHandlers(this, true); + var d = this._chainDispose, type = typeof(d); + if (type !== "undefined") { + this.dispose = d; + this._chainDispose = null; + if (type === "function") { + this.dispose(); + } + } +} +var $removeHandler = Sys.UI.DomEvent.removeHandler = function Sys$UI$DomEvent$removeHandler(element, eventName, handler) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element"}, + {name: "eventName", type: String}, + {name: "handler", type: Function} + ]); + if (e) throw e; + Sys.UI.DomEvent._removeHandler(element, eventName, handler); +} +Sys.UI.DomEvent._removeHandler = function Sys$UI$DomEvent$_removeHandler(element, eventName, handler) { + Sys.UI.DomEvent._ensureDomNode(element); + var browserHandler = null; + if ((typeof(element._events) !== 'object') || !element._events) throw Error.invalidOperation(Sys.Res.eventHandlerInvalid); + var cache = element._events[eventName]; + if (!(cache instanceof Array)) throw Error.invalidOperation(Sys.Res.eventHandlerInvalid); + for (var i = 0, l = cache.length; i < l; i++) { + if (cache[i].handler === handler) { + browserHandler = cache[i].browserHandler; + break; + } + } + if (typeof(browserHandler) !== 'function') throw Error.invalidOperation(Sys.Res.eventHandlerInvalid); + if (element.removeEventListener) { + element.removeEventListener(eventName, browserHandler, false); + } + else if (element.detachEvent) { + element.detachEvent('on' + eventName, browserHandler); + } + cache.splice(i, 1); +} +Sys.UI.DomEvent._ensureDomNode = function Sys$UI$DomEvent$_ensureDomNode(element) { + if (element.tagName && (element.tagName.toUpperCase() === "SCRIPT")) return; + + var doc = element.ownerDocument || element.document || element; + if ((typeof(element.document) !== 'object') && (element != doc) && (typeof(element.nodeType) !== 'number')) { + throw Error.argument("element", Sys.Res.argumentDomNode); + } +} + +Sys.UI.DomElement = function Sys$UI$DomElement() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} +Sys.UI.DomElement.registerClass('Sys.UI.DomElement'); +Sys.UI.DomElement.addCssClass = function Sys$UI$DomElement$addCssClass(element, className) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "className", type: String} + ]); + if (e) throw e; + if (!Sys.UI.DomElement.containsCssClass(element, className)) { + if (element.className === '') { + element.className = className; + } + else { + element.className += ' ' + className; + } + } +} +Sys.UI.DomElement.containsCssClass = function Sys$UI$DomElement$containsCssClass(element, className) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "className", type: String} + ]); + if (e) throw e; + return Array.contains(element.className.split(' '), className); +} +Sys.UI.DomElement.getBounds = function Sys$UI$DomElement$getBounds(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + var offset = Sys.UI.DomElement.getLocation(element); + return new Sys.UI.Bounds(offset.x, offset.y, element.offsetWidth || 0, element.offsetHeight || 0); +} +var $get = Sys.UI.DomElement.getElementById = function Sys$UI$DomElement$getElementById(id, element) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "id", type: String}, + {name: "element", mayBeNull: true, domElement: true, optional: true} + ]); + if (e) throw e; + if (!element) return document.getElementById(id); + if (element.getElementById) return element.getElementById(id); + var nodeQueue = []; + var childNodes = element.childNodes; + for (var i = 0; i < childNodes.length; i++) { + var node = childNodes[i]; + if (node.nodeType == 1) { + nodeQueue[nodeQueue.length] = node; + } + } + while (nodeQueue.length) { + node = nodeQueue.shift(); + if (node.id == id) { + return node; + } + childNodes = node.childNodes; + for (i = 0; i < childNodes.length; i++) { + node = childNodes[i]; + if (node.nodeType == 1) { + nodeQueue[nodeQueue.length] = node; + } + } + } + return null; +} +if (document.documentElement.getBoundingClientRect) { + Sys.UI.DomElement.getLocation = function Sys$UI$DomElement$getLocation(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + if (element.self || element.nodeType === 9) return new Sys.UI.Point(0,0); + var clientRect = element.getBoundingClientRect(); + if (!clientRect) { + return new Sys.UI.Point(0,0); + } + var documentElement = element.ownerDocument.documentElement, + offsetX = Math.floor(clientRect.left + 0.5) + documentElement.scrollLeft, + offsetY = Math.floor(clientRect.top + 0.5) + documentElement.scrollTop; + if (Sys.Browser.agent === Sys.Browser.InternetExplorer) { + try { + var f = element.ownerDocument.parentWindow.frameElement || null; + if (f) { + var offset = (f.frameBorder === "0" || f.frameBorder === "no") ? 2 : 0; + offsetX += offset; + offsetY += offset; + } + } + catch(ex) { + } + if (Sys.Browser.version <= 7) { + + var multiplier, before, rect, d = document.createElement("div"); + d.style.cssText = "position:absolute !important;left:0px !important;right:0px !important;height:0px !important;width:1px !important;display:hidden !important"; + try { + before = document.body.childNodes[0]; + document.body.insertBefore(d, before); + rect = d.getBoundingClientRect(); + document.body.removeChild(d); + multiplier = (rect.right - rect.left); + } + catch (e) { + } + if (multiplier && (multiplier !== 1)) { + offsetX = Math.floor(offsetX / multiplier); + offsetY = Math.floor(offsetY / multiplier); + } + } + if ((document.documentMode || 0) < 8) { + offsetX -= 2; + offsetY -= 2; + } + } + return new Sys.UI.Point(offsetX, offsetY); + } +} +else if (Sys.Browser.agent === Sys.Browser.Safari) { + Sys.UI.DomElement.getLocation = function Sys$UI$DomElement$getLocation(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + if ((element.window && (element.window === element)) || element.nodeType === 9) return new Sys.UI.Point(0,0); + var offsetX = 0, offsetY = 0, + parent, + previous = null, + previousStyle = null, + currentStyle; + for (parent = element; parent; previous = parent, previousStyle = currentStyle, parent = parent.offsetParent) { + currentStyle = Sys.UI.DomElement._getCurrentStyle(parent); + var tagName = parent.tagName ? parent.tagName.toUpperCase() : null; + if ((parent.offsetLeft || parent.offsetTop) && + ((tagName !== "BODY") || (!previousStyle || previousStyle.position !== "absolute"))) { + offsetX += parent.offsetLeft; + offsetY += parent.offsetTop; + } + if (previous && Sys.Browser.version >= 3) { + offsetX += parseInt(currentStyle.borderLeftWidth); + offsetY += parseInt(currentStyle.borderTopWidth); + } + } + currentStyle = Sys.UI.DomElement._getCurrentStyle(element); + var elementPosition = currentStyle ? currentStyle.position : null; + if (!elementPosition || (elementPosition !== "absolute")) { + for (parent = element.parentNode; parent; parent = parent.parentNode) { + tagName = parent.tagName ? parent.tagName.toUpperCase() : null; + if ((tagName !== "BODY") && (tagName !== "HTML") && (parent.scrollLeft || parent.scrollTop)) { + offsetX -= (parent.scrollLeft || 0); + offsetY -= (parent.scrollTop || 0); + } + currentStyle = Sys.UI.DomElement._getCurrentStyle(parent); + var parentPosition = currentStyle ? currentStyle.position : null; + if (parentPosition && (parentPosition === "absolute")) break; + } + } + return new Sys.UI.Point(offsetX, offsetY); + } +} +else { + Sys.UI.DomElement.getLocation = function Sys$UI$DomElement$getLocation(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + if ((element.window && (element.window === element)) || element.nodeType === 9) return new Sys.UI.Point(0,0); + var offsetX = 0, offsetY = 0, + parent, + previous = null, + previousStyle = null, + currentStyle = null; + for (parent = element; parent; previous = parent, previousStyle = currentStyle, parent = parent.offsetParent) { + var tagName = parent.tagName ? parent.tagName.toUpperCase() : null; + currentStyle = Sys.UI.DomElement._getCurrentStyle(parent); + if ((parent.offsetLeft || parent.offsetTop) && + !((tagName === "BODY") && + (!previousStyle || previousStyle.position !== "absolute"))) { + offsetX += parent.offsetLeft; + offsetY += parent.offsetTop; + } + if (previous !== null && currentStyle) { + if ((tagName !== "TABLE") && (tagName !== "TD") && (tagName !== "HTML")) { + offsetX += parseInt(currentStyle.borderLeftWidth) || 0; + offsetY += parseInt(currentStyle.borderTopWidth) || 0; + } + if (tagName === "TABLE" && + (currentStyle.position === "relative" || currentStyle.position === "absolute")) { + offsetX += parseInt(currentStyle.marginLeft) || 0; + offsetY += parseInt(currentStyle.marginTop) || 0; + } + } + } + currentStyle = Sys.UI.DomElement._getCurrentStyle(element); + var elementPosition = currentStyle ? currentStyle.position : null; + if (!elementPosition || (elementPosition !== "absolute")) { + for (parent = element.parentNode; parent; parent = parent.parentNode) { + tagName = parent.tagName ? parent.tagName.toUpperCase() : null; + if ((tagName !== "BODY") && (tagName !== "HTML") && (parent.scrollLeft || parent.scrollTop)) { + offsetX -= (parent.scrollLeft || 0); + offsetY -= (parent.scrollTop || 0); + currentStyle = Sys.UI.DomElement._getCurrentStyle(parent); + if (currentStyle) { + offsetX += parseInt(currentStyle.borderLeftWidth) || 0; + offsetY += parseInt(currentStyle.borderTopWidth) || 0; + } + } + } + } + return new Sys.UI.Point(offsetX, offsetY); + } +} +Sys.UI.DomElement.isDomElement = function Sys$UI$DomElement$isDomElement(obj) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "obj"} + ]); + if (e) throw e; + return Sys._isDomElement(obj); +} +Sys.UI.DomElement.removeCssClass = function Sys$UI$DomElement$removeCssClass(element, className) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "className", type: String} + ]); + if (e) throw e; + var currentClassName = ' ' + element.className + ' '; + var index = currentClassName.indexOf(' ' + className + ' '); + if (index >= 0) { + element.className = (currentClassName.substr(0, index) + ' ' + + currentClassName.substring(index + className.length + 1, currentClassName.length)).trim(); + } +} +Sys.UI.DomElement.resolveElement = function Sys$UI$DomElement$resolveElement(elementOrElementId, containerElement) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "elementOrElementId", mayBeNull: true}, + {name: "containerElement", mayBeNull: true, domElement: true, optional: true} + ]); + if (e) throw e; + var el = elementOrElementId; + if (!el) return null; + if (typeof(el) === "string") { + el = Sys.UI.DomElement.getElementById(el, containerElement); + if (!el) { + throw Error.argument("elementOrElementId", String.format(Sys.Res.elementNotFound, elementOrElementId)); + } + } + else if(!Sys.UI.DomElement.isDomElement(el)) { + throw Error.argument("elementOrElementId", Sys.Res.expectedElementOrId); + } + return el; +} +Sys.UI.DomElement.raiseBubbleEvent = function Sys$UI$DomElement$raiseBubbleEvent(source, args) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "source", domElement: true}, + {name: "args", type: Sys.EventArgs} + ]); + if (e) throw e; + var target = source; + while (target) { + var control = target.control; + if (control && control.onBubbleEvent && control.raiseBubbleEvent) { + Sys.UI.DomElement._raiseBubbleEventFromControl(control, source, args); + return; + } + target = target.parentNode; + } +} +Sys.UI.DomElement._raiseBubbleEventFromControl = function Sys$UI$DomElement$_raiseBubbleEventFromControl(control, source, args) { + if (!control.onBubbleEvent(source, args)) { + control._raiseBubbleEvent(source, args); + } +} +Sys.UI.DomElement.setLocation = function Sys$UI$DomElement$setLocation(element, x, y) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "x", type: Number, integer: true}, + {name: "y", type: Number, integer: true} + ]); + if (e) throw e; + var style = element.style; + style.position = 'absolute'; + style.left = x + "px"; + style.top = y + "px"; +} +Sys.UI.DomElement.toggleCssClass = function Sys$UI$DomElement$toggleCssClass(element, className) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "className", type: String} + ]); + if (e) throw e; + if (Sys.UI.DomElement.containsCssClass(element, className)) { + Sys.UI.DomElement.removeCssClass(element, className); + } + else { + Sys.UI.DomElement.addCssClass(element, className); + } +} +Sys.UI.DomElement.getVisibilityMode = function Sys$UI$DomElement$getVisibilityMode(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + return (element._visibilityMode === Sys.UI.VisibilityMode.hide) ? + Sys.UI.VisibilityMode.hide : + Sys.UI.VisibilityMode.collapse; +} +Sys.UI.DomElement.setVisibilityMode = function Sys$UI$DomElement$setVisibilityMode(element, value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "value", type: Sys.UI.VisibilityMode} + ]); + if (e) throw e; + Sys.UI.DomElement._ensureOldDisplayMode(element); + if (element._visibilityMode !== value) { + element._visibilityMode = value; + if (Sys.UI.DomElement.getVisible(element) === false) { + if (element._visibilityMode === Sys.UI.VisibilityMode.hide) { + element.style.display = element._oldDisplayMode; + } + else { + element.style.display = 'none'; + } + } + element._visibilityMode = value; + } +} +Sys.UI.DomElement.getVisible = function Sys$UI$DomElement$getVisible(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + var style = element.currentStyle || Sys.UI.DomElement._getCurrentStyle(element); + if (!style) return true; + return (style.visibility !== 'hidden') && (style.display !== 'none'); +} +Sys.UI.DomElement.setVisible = function Sys$UI$DomElement$setVisible(element, value) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "value", type: Boolean} + ]); + if (e) throw e; + if (value !== Sys.UI.DomElement.getVisible(element)) { + Sys.UI.DomElement._ensureOldDisplayMode(element); + element.style.visibility = value ? 'visible' : 'hidden'; + if (value || (element._visibilityMode === Sys.UI.VisibilityMode.hide)) { + element.style.display = element._oldDisplayMode; + } + else { + element.style.display = 'none'; + } + } +} +Sys.UI.DomElement._ensureOldDisplayMode = function Sys$UI$DomElement$_ensureOldDisplayMode(element) { + if (!element._oldDisplayMode) { + var style = element.currentStyle || Sys.UI.DomElement._getCurrentStyle(element); + element._oldDisplayMode = style ? style.display : null; + if (!element._oldDisplayMode || element._oldDisplayMode === 'none') { + switch(element.tagName.toUpperCase()) { + case 'DIV': case 'P': case 'ADDRESS': case 'BLOCKQUOTE': case 'BODY': case 'COL': + case 'COLGROUP': case 'DD': case 'DL': case 'DT': case 'FIELDSET': case 'FORM': + case 'H1': case 'H2': case 'H3': case 'H4': case 'H5': case 'H6': case 'HR': + case 'IFRAME': case 'LEGEND': case 'OL': case 'PRE': case 'TABLE': case 'TD': + case 'TH': case 'TR': case 'UL': + element._oldDisplayMode = 'block'; + break; + case 'LI': + element._oldDisplayMode = 'list-item'; + break; + default: + element._oldDisplayMode = 'inline'; + } + } + } +} +Sys.UI.DomElement._getWindow = function Sys$UI$DomElement$_getWindow(element) { + var doc = element.ownerDocument || element.document || element; + return doc.defaultView || doc.parentWindow; +} +Sys.UI.DomElement._getCurrentStyle = function Sys$UI$DomElement$_getCurrentStyle(element) { + if (element.nodeType === 3) return null; + var w = Sys.UI.DomElement._getWindow(element); + if (element.documentElement) element = element.documentElement; + var computedStyle = (w && (element !== w) && w.getComputedStyle) ? + w.getComputedStyle(element, null) : + element.currentStyle || element.style; + if (!computedStyle && (Sys.Browser.agent === Sys.Browser.Safari) && element.style) { + var oldDisplay = element.style.display; + var oldPosition = element.style.position; + element.style.position = 'absolute'; + element.style.display = 'block'; + var style = w.getComputedStyle(element, null); + element.style.display = oldDisplay; + element.style.position = oldPosition; + computedStyle = {}; + for (var n in style) { + computedStyle[n] = style[n]; + } + computedStyle.display = 'none'; + } + return computedStyle; +} + +Sys.IContainer = function Sys$IContainer() { + throw Error.notImplemented(); +} + function Sys$IContainer$addComponent(component) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "component", type: Sys.Component} + ]); + if (e) throw e; + throw Error.notImplemented(); + } + function Sys$IContainer$removeComponent(component) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "component", type: Sys.Component} + ]); + if (e) throw e; + throw Error.notImplemented(); + } + function Sys$IContainer$findComponent(id) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "id", type: String} + ]); + if (e) throw e; + throw Error.notImplemented(); + } + function Sys$IContainer$getComponents() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } +Sys.IContainer.prototype = { + addComponent: Sys$IContainer$addComponent, + removeComponent: Sys$IContainer$removeComponent, + findComponent: Sys$IContainer$findComponent, + getComponents: Sys$IContainer$getComponents +} +Sys.IContainer.registerInterface("Sys.IContainer"); + +Sys.ApplicationLoadEventArgs = function Sys$ApplicationLoadEventArgs(components, isPartialLoad) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "components", type: Array, elementType: Sys.Component}, + {name: "isPartialLoad", type: Boolean} + ]); + if (e) throw e; + Sys.ApplicationLoadEventArgs.initializeBase(this); + this._components = components; + this._isPartialLoad = isPartialLoad; +} + + function Sys$ApplicationLoadEventArgs$get_components() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._components; + } + function Sys$ApplicationLoadEventArgs$get_isPartialLoad() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._isPartialLoad; + } +Sys.ApplicationLoadEventArgs.prototype = { + get_components: Sys$ApplicationLoadEventArgs$get_components, + get_isPartialLoad: Sys$ApplicationLoadEventArgs$get_isPartialLoad +} +Sys.ApplicationLoadEventArgs.registerClass('Sys.ApplicationLoadEventArgs', Sys.EventArgs); + +Sys._Application = function Sys$_Application() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + Sys._Application.initializeBase(this); + this._disposableObjects = []; + this._components = {}; + this._createdComponents = []; + this._secondPassComponents = []; + this._unloadHandlerDelegate = Function.createDelegate(this, this._unloadHandler); + Sys.UI.DomEvent.addHandler(window, "unload", this._unloadHandlerDelegate); + this._domReady(); +} + function Sys$_Application$get_isCreatingComponents() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._creatingComponents; + } + function Sys$_Application$get_isDisposing() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._disposing; + } + function Sys$_Application$add_init(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + if (this._initialized) { + handler(this, Sys.EventArgs.Empty); + } + else { + this.get_events().addHandler("init", handler); + } + } + function Sys$_Application$remove_init(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().removeHandler("init", handler); + } + function Sys$_Application$add_load(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().addHandler("load", handler); + } + function Sys$_Application$remove_load(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().removeHandler("load", handler); + } + function Sys$_Application$add_unload(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().addHandler("unload", handler); + } + function Sys$_Application$remove_unload(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this.get_events().removeHandler("unload", handler); + } + function Sys$_Application$addComponent(component) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "component", type: Sys.Component} + ]); + if (e) throw e; + var id = component.get_id(); + if (!id) throw Error.invalidOperation(Sys.Res.cantAddWithoutId); + if (typeof(this._components[id]) !== 'undefined') throw Error.invalidOperation(String.format(Sys.Res.appDuplicateComponent, id)); + this._components[id] = component; + } + function Sys$_Application$beginCreateComponents() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._creatingComponents = true; + } + function Sys$_Application$dispose() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._disposing) { + this._disposing = true; + if (this._timerCookie) { + window.clearTimeout(this._timerCookie); + delete this._timerCookie; + } + if (this._endRequestHandler) { + Sys.WebForms.PageRequestManager.getInstance().remove_endRequest(this._endRequestHandler); + delete this._endRequestHandler; + } + if (this._beginRequestHandler) { + Sys.WebForms.PageRequestManager.getInstance().remove_beginRequest(this._beginRequestHandler); + delete this._beginRequestHandler; + } + if (window.pageUnload) { + window.pageUnload(this, Sys.EventArgs.Empty); + } + var unloadHandler = this.get_events().getHandler("unload"); + if (unloadHandler) { + unloadHandler(this, Sys.EventArgs.Empty); + } + var disposableObjects = Array.clone(this._disposableObjects); + for (var i = 0, l = disposableObjects.length; i < l; i++) { + var object = disposableObjects[i]; + if (typeof(object) !== "undefined") { + object.dispose(); + } + } + Array.clear(this._disposableObjects); + Sys.UI.DomEvent.removeHandler(window, "unload", this._unloadHandlerDelegate); + if (Sys._ScriptLoader) { + var sl = Sys._ScriptLoader.getInstance(); + if(sl) { + sl.dispose(); + } + } + Sys._Application.callBaseMethod(this, 'dispose'); + } + } + function Sys$_Application$disposeElement(element, childNodesOnly) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element"}, + {name: "childNodesOnly", type: Boolean} + ]); + if (e) throw e; + if (element.nodeType === 1) { + var children = element.getElementsByTagName("*"); + for (var i = children.length - 1; i >= 0; i--) { + this._disposeElementInternal(children[i]); + } + if (!childNodesOnly) { + this._disposeElementInternal(element); + } + } + } + function Sys$_Application$endCreateComponents() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var components = this._secondPassComponents; + for (var i = 0, l = components.length; i < l; i++) { + var component = components[i].component; + Sys$Component$_setReferences(component, components[i].references); + component.endUpdate(); + } + this._secondPassComponents = []; + this._creatingComponents = false; + } + function Sys$_Application$findComponent(id, parent) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "id", type: String}, + {name: "parent", mayBeNull: true, optional: true} + ]); + if (e) throw e; + return (parent ? + ((Sys.IContainer.isInstanceOfType(parent)) ? + parent.findComponent(id) : + parent[id] || null) : + Sys.Application._components[id] || null); + } + function Sys$_Application$getComponents() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var res = []; + var components = this._components; + for (var name in components) { + res[res.length] = components[name]; + } + return res; + } + function Sys$_Application$initialize() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if(!this.get_isInitialized() && !this._disposing) { + Sys._Application.callBaseMethod(this, 'initialize'); + this._raiseInit(); + if (this.get_stateString) { + if (Sys.WebForms && Sys.WebForms.PageRequestManager) { + this._beginRequestHandler = Function.createDelegate(this, this._onPageRequestManagerBeginRequest); + Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(this._beginRequestHandler); + this._endRequestHandler = Function.createDelegate(this, this._onPageRequestManagerEndRequest); + Sys.WebForms.PageRequestManager.getInstance().add_endRequest(this._endRequestHandler); + } + var loadedEntry = this.get_stateString(); + if (loadedEntry !== this._currentEntry) { + this._navigate(loadedEntry); + } + else { + this._ensureHistory(); + } + } + this.raiseLoad(); + } + } + function Sys$_Application$notifyScriptLoaded() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + } + function Sys$_Application$registerDisposableObject(object) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "object", type: Sys.IDisposable} + ]); + if (e) throw e; + if (!this._disposing) { + var objects = this._disposableObjects, + i = objects.length; + objects[i] = object; + object.__msdisposeindex = i; + } + } + function Sys$_Application$raiseLoad() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var h = this.get_events().getHandler("load"); + var args = new Sys.ApplicationLoadEventArgs(Array.clone(this._createdComponents), !!this._loaded); + this._loaded = true; + if (h) { + h(this, args); + } + if (window.pageLoad) { + window.pageLoad(this, args); + } + this._createdComponents = []; + } + function Sys$_Application$removeComponent(component) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "component", type: Sys.Component} + ]); + if (e) throw e; + var id = component.get_id(); + if (id) delete this._components[id]; + } + function Sys$_Application$unregisterDisposableObject(object) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "object", type: Sys.IDisposable} + ]); + if (e) throw e; + if (!this._disposing) { + var i = object.__msdisposeindex; + if (typeof(i) === "number") { + var disposableObjects = this._disposableObjects; + delete disposableObjects[i]; + delete object.__msdisposeindex; + if (++this._deleteCount > 1000) { + var newArray = []; + for (var j = 0, l = disposableObjects.length; j < l; j++) { + object = disposableObjects[j]; + if (typeof(object) !== "undefined") { + object.__msdisposeindex = newArray.length; + newArray.push(object); + } + } + this._disposableObjects = newArray; + this._deleteCount = 0; + } + } + } + } + function Sys$_Application$_addComponentToSecondPass(component, references) { + this._secondPassComponents[this._secondPassComponents.length] = {component: component, references: references}; + } + function Sys$_Application$_disposeComponents(list) { + if (list) { + for (var i = list.length - 1; i >= 0; i--) { + var item = list[i]; + if (typeof(item.dispose) === "function") { + item.dispose(); + } + } + } + } + function Sys$_Application$_disposeElementInternal(element) { + var d = element.dispose; + if (d && typeof(d) === "function") { + element.dispose(); + } + else { + var c = element.control; + if (c && typeof(c.dispose) === "function") { + c.dispose(); + } + } + var list = element._behaviors; + if (list) { + this._disposeComponents(list); + } + list = element._components; + if (list) { + this._disposeComponents(list); + element._components = null; + } + } + function Sys$_Application$_domReady() { + var check, er, app = this; + function init() { app.initialize(); } + var onload = function() { + Sys.UI.DomEvent.removeHandler(window, "load", onload); + init(); + } + Sys.UI.DomEvent.addHandler(window, "load", onload); + + if (document.addEventListener) { + try { + document.addEventListener("DOMContentLoaded", check = function() { + document.removeEventListener("DOMContentLoaded", check, false); + init(); + }, false); + } + catch (er) { } + } + else if (document.attachEvent) { + if ((window == window.top) && document.documentElement.doScroll) { + var timeout, el = document.createElement("div"); + check = function() { + try { + el.doScroll("left"); + } + catch (er) { + timeout = window.setTimeout(check, 0); + return; + } + el = null; + init(); + } + check(); + } + else { + document.attachEvent("onreadystatechange", check = function() { + if (document.readyState === "complete") { + document.detachEvent("onreadystatechange", check); + init(); + } + }); + } + } + } + function Sys$_Application$_raiseInit() { + var handler = this.get_events().getHandler("init"); + if (handler) { + this.beginCreateComponents(); + handler(this, Sys.EventArgs.Empty); + this.endCreateComponents(); + } + } + function Sys$_Application$_unloadHandler(event) { + this.dispose(); + } +Sys._Application.prototype = { + _creatingComponents: false, + _disposing: false, + _deleteCount: 0, + get_isCreatingComponents: Sys$_Application$get_isCreatingComponents, + get_isDisposing: Sys$_Application$get_isDisposing, + add_init: Sys$_Application$add_init, + remove_init: Sys$_Application$remove_init, + add_load: Sys$_Application$add_load, + remove_load: Sys$_Application$remove_load, + add_unload: Sys$_Application$add_unload, + remove_unload: Sys$_Application$remove_unload, + addComponent: Sys$_Application$addComponent, + beginCreateComponents: Sys$_Application$beginCreateComponents, + dispose: Sys$_Application$dispose, + disposeElement: Sys$_Application$disposeElement, + endCreateComponents: Sys$_Application$endCreateComponents, + findComponent: Sys$_Application$findComponent, + getComponents: Sys$_Application$getComponents, + initialize: Sys$_Application$initialize, + notifyScriptLoaded: Sys$_Application$notifyScriptLoaded, + registerDisposableObject: Sys$_Application$registerDisposableObject, + raiseLoad: Sys$_Application$raiseLoad, + removeComponent: Sys$_Application$removeComponent, + unregisterDisposableObject: Sys$_Application$unregisterDisposableObject, + _addComponentToSecondPass: Sys$_Application$_addComponentToSecondPass, + _disposeComponents: Sys$_Application$_disposeComponents, + _disposeElementInternal: Sys$_Application$_disposeElementInternal, + _domReady: Sys$_Application$_domReady, + _raiseInit: Sys$_Application$_raiseInit, + _unloadHandler: Sys$_Application$_unloadHandler +} +Sys._Application.registerClass('Sys._Application', Sys.Component, Sys.IContainer); +Sys.Application = new Sys._Application(); +var $find = Sys.Application.findComponent; + +Sys.UI.Behavior = function Sys$UI$Behavior(element) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + Sys.UI.Behavior.initializeBase(this); + this._element = element; + var behaviors = element._behaviors; + if (!behaviors) { + element._behaviors = [this]; + } + else { + behaviors[behaviors.length] = this; + } +} + function Sys$UI$Behavior$get_element() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._element; + } + function Sys$UI$Behavior$get_id() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var baseId = Sys.UI.Behavior.callBaseMethod(this, 'get_id'); + if (baseId) return baseId; + if (!this._element || !this._element.id) return ''; + return this._element.id + '$' + this.get_name(); + } + function Sys$UI$Behavior$get_name() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this._name) return this._name; + var name = Object.getTypeName(this); + var i = name.lastIndexOf('.'); + if (i !== -1) name = name.substr(i + 1); + if (!this.get_isInitialized()) this._name = name; + return name; + } + function Sys$UI$Behavior$set_name(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + if ((value === '') || (value.charAt(0) === ' ') || (value.charAt(value.length - 1) === ' ')) + throw Error.argument('value', Sys.Res.invalidId); + if (typeof(this._element[value]) !== 'undefined') + throw Error.invalidOperation(String.format(Sys.Res.behaviorDuplicateName, value)); + if (this.get_isInitialized()) throw Error.invalidOperation(Sys.Res.cantSetNameAfterInit); + this._name = value; + } + function Sys$UI$Behavior$initialize() { + Sys.UI.Behavior.callBaseMethod(this, 'initialize'); + var name = this.get_name(); + if (name) this._element[name] = this; + } + function Sys$UI$Behavior$dispose() { + Sys.UI.Behavior.callBaseMethod(this, 'dispose'); + var e = this._element; + if (e) { + var name = this.get_name(); + if (name) { + e[name] = null; + } + var behaviors = e._behaviors; + Array.remove(behaviors, this); + if (behaviors.length === 0) { + e._behaviors = null; + } + delete this._element; + } + } +Sys.UI.Behavior.prototype = { + _name: null, + get_element: Sys$UI$Behavior$get_element, + get_id: Sys$UI$Behavior$get_id, + get_name: Sys$UI$Behavior$get_name, + set_name: Sys$UI$Behavior$set_name, + initialize: Sys$UI$Behavior$initialize, + dispose: Sys$UI$Behavior$dispose +} +Sys.UI.Behavior.registerClass('Sys.UI.Behavior', Sys.Component); +Sys.UI.Behavior.getBehaviorByName = function Sys$UI$Behavior$getBehaviorByName(element, name) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "name", type: String} + ]); + if (e) throw e; + var b = element[name]; + return (b && Sys.UI.Behavior.isInstanceOfType(b)) ? b : null; +} +Sys.UI.Behavior.getBehaviors = function Sys$UI$Behavior$getBehaviors(element) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + if (!element._behaviors) return []; + return Array.clone(element._behaviors); +} +Sys.UI.Behavior.getBehaviorsByType = function Sys$UI$Behavior$getBehaviorsByType(element, type) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true}, + {name: "type", type: Type} + ]); + if (e) throw e; + var behaviors = element._behaviors; + var results = []; + if (behaviors) { + for (var i = 0, l = behaviors.length; i < l; i++) { + if (type.isInstanceOfType(behaviors[i])) { + results[results.length] = behaviors[i]; + } + } + } + return results; +} + +Sys.UI.VisibilityMode = function Sys$UI$VisibilityMode() { + /// + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); +} +Sys.UI.VisibilityMode.prototype = { + hide: 0, + collapse: 1 +} +Sys.UI.VisibilityMode.registerEnum("Sys.UI.VisibilityMode"); + +Sys.UI.Control = function Sys$UI$Control(element) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "element", domElement: true} + ]); + if (e) throw e; + if (typeof(element.control) !== 'undefined') throw Error.invalidOperation(Sys.Res.controlAlreadyDefined); + Sys.UI.Control.initializeBase(this); + this._element = element; + element.control = this; + var role = this.get_role(); + if (role) { + element.setAttribute("role", role); + } +} + function Sys$UI$Control$get_element() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._element; + } + function Sys$UI$Control$get_id() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._element) return ''; + return this._element.id; + } + function Sys$UI$Control$set_id(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + throw Error.invalidOperation(Sys.Res.cantSetId); + } + function Sys$UI$Control$get_parent() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this._parent) return this._parent; + if (!this._element) return null; + + var parentElement = this._element.parentNode; + while (parentElement) { + if (parentElement.control) { + return parentElement.control; + } + parentElement = parentElement.parentNode; + } + return null; + } + function Sys$UI$Control$set_parent(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Sys.UI.Control}]); + if (e) throw e; + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + var parents = [this]; + var current = value; + while (current) { + if (Array.contains(parents, current)) throw Error.invalidOperation(Sys.Res.circularParentChain); + parents[parents.length] = current; + current = current.get_parent(); + } + this._parent = value; + } + function Sys$UI$Control$get_role() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return null; + } + function Sys$UI$Control$get_visibilityMode() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + return Sys.UI.DomElement.getVisibilityMode(this._element); + } + function Sys$UI$Control$set_visibilityMode(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Sys.UI.VisibilityMode}]); + if (e) throw e; + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + Sys.UI.DomElement.setVisibilityMode(this._element, value); + } + function Sys$UI$Control$get_visible() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + return Sys.UI.DomElement.getVisible(this._element); + } + function Sys$UI$Control$set_visible(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Boolean}]); + if (e) throw e; + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + Sys.UI.DomElement.setVisible(this._element, value) + } + function Sys$UI$Control$addCssClass(className) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "className", type: String} + ]); + if (e) throw e; + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + Sys.UI.DomElement.addCssClass(this._element, className); + } + function Sys$UI$Control$dispose() { + Sys.UI.Control.callBaseMethod(this, 'dispose'); + if (this._element) { + this._element.control = null; + delete this._element; + } + if (this._parent) delete this._parent; + } + function Sys$UI$Control$onBubbleEvent(source, args) { + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "source"}, + {name: "args", type: Sys.EventArgs} + ]); + if (e) throw e; + return false; + } + function Sys$UI$Control$raiseBubbleEvent(source, args) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "source"}, + {name: "args", type: Sys.EventArgs} + ]); + if (e) throw e; + this._raiseBubbleEvent(source, args); + } + function Sys$UI$Control$_raiseBubbleEvent(source, args) { + var currentTarget = this.get_parent(); + while (currentTarget) { + if (currentTarget.onBubbleEvent(source, args)) { + return; + } + currentTarget = currentTarget.get_parent(); + } + } + function Sys$UI$Control$removeCssClass(className) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "className", type: String} + ]); + if (e) throw e; + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + Sys.UI.DomElement.removeCssClass(this._element, className); + } + function Sys$UI$Control$toggleCssClass(className) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "className", type: String} + ]); + if (e) throw e; + if (!this._element) throw Error.invalidOperation(Sys.Res.cantBeCalledAfterDispose); + Sys.UI.DomElement.toggleCssClass(this._element, className); + } +Sys.UI.Control.prototype = { + _parent: null, + _visibilityMode: Sys.UI.VisibilityMode.hide, + get_element: Sys$UI$Control$get_element, + get_id: Sys$UI$Control$get_id, + set_id: Sys$UI$Control$set_id, + get_parent: Sys$UI$Control$get_parent, + set_parent: Sys$UI$Control$set_parent, + get_role: Sys$UI$Control$get_role, + get_visibilityMode: Sys$UI$Control$get_visibilityMode, + set_visibilityMode: Sys$UI$Control$set_visibilityMode, + get_visible: Sys$UI$Control$get_visible, + set_visible: Sys$UI$Control$set_visible, + addCssClass: Sys$UI$Control$addCssClass, + dispose: Sys$UI$Control$dispose, + onBubbleEvent: Sys$UI$Control$onBubbleEvent, + raiseBubbleEvent: Sys$UI$Control$raiseBubbleEvent, + _raiseBubbleEvent: Sys$UI$Control$_raiseBubbleEvent, + removeCssClass: Sys$UI$Control$removeCssClass, + toggleCssClass: Sys$UI$Control$toggleCssClass +} +Sys.UI.Control.registerClass('Sys.UI.Control', Sys.Component); +Sys.HistoryEventArgs = function Sys$HistoryEventArgs(state) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "state", type: Object} + ]); + if (e) throw e; + Sys.HistoryEventArgs.initializeBase(this); + this._state = state; +} + function Sys$HistoryEventArgs$get_state() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._state; + } +Sys.HistoryEventArgs.prototype = { + get_state: Sys$HistoryEventArgs$get_state +} +Sys.HistoryEventArgs.registerClass('Sys.HistoryEventArgs', Sys.EventArgs); +Sys.Application._appLoadHandler = null; +Sys.Application._beginRequestHandler = null; +Sys.Application._clientId = null; +Sys.Application._currentEntry = ''; +Sys.Application._endRequestHandler = null; +Sys.Application._history = null; +Sys.Application._enableHistory = false; +Sys.Application._historyEnabledInScriptManager = false; +Sys.Application._historyFrame = null; +Sys.Application._historyInitialized = false; +Sys.Application._historyPointIsNew = false; +Sys.Application._ignoreTimer = false; +Sys.Application._initialState = null; +Sys.Application._state = {}; +Sys.Application._timerCookie = 0; +Sys.Application._timerHandler = null; +Sys.Application._uniqueId = null; +Sys._Application.prototype.get_stateString = function Sys$_Application$get_stateString() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + var hash = null; + + if (Sys.Browser.agent === Sys.Browser.Firefox) { + var href = window.location.href; + var hashIndex = href.indexOf('#'); + if (hashIndex !== -1) { + hash = href.substring(hashIndex + 1); + } + else { + hash = ""; + } + return hash; + } + else { + hash = window.location.hash; + } + + if ((hash.length > 0) && (hash.charAt(0) === '#')) { + hash = hash.substring(1); + } + return hash; +}; +Sys._Application.prototype.get_enableHistory = function Sys$_Application$get_enableHistory() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._enableHistory; +}; +Sys._Application.prototype.set_enableHistory = function Sys$_Application$set_enableHistory(value) { + if (this._initialized && !this._initializing) { + throw Error.invalidOperation(Sys.Res.historyCannotEnableHistory); + } + else if (this._historyEnabledInScriptManager && !value) { + throw Error.invalidOperation(Sys.Res.invalidHistorySettingCombination); + } + this._enableHistory = value; +}; +Sys._Application.prototype.add_navigate = function Sys$_Application$add_navigate(handler) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "handler", type: Function} + ]); + if (e) throw e; + this.get_events().addHandler("navigate", handler); +}; +Sys._Application.prototype.remove_navigate = function Sys$_Application$remove_navigate(handler) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "handler", type: Function} + ]); + if (e) throw e; + this.get_events().removeHandler("navigate", handler); +}; +Sys._Application.prototype.addHistoryPoint = function Sys$_Application$addHistoryPoint(state, title) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "state", type: Object}, + {name: "title", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + if (!this._enableHistory) throw Error.invalidOperation(Sys.Res.historyCannotAddHistoryPointWithHistoryDisabled); + for (var n in state) { + var v = state[n]; + var t = typeof(v); + if ((v !== null) && ((t === 'object') || (t === 'function') || (t === 'undefined'))) { + throw Error.argument('state', Sys.Res.stateMustBeStringDictionary); + } + } + this._ensureHistory(); + var initialState = this._state; + for (var key in state) { + var value = state[key]; + if (value === null) { + if (typeof(initialState[key]) !== 'undefined') { + delete initialState[key]; + } + } + else { + initialState[key] = value; + } + } + var entry = this._serializeState(initialState); + this._historyPointIsNew = true; + this._setState(entry, title); + this._raiseNavigate(); +}; +Sys._Application.prototype.setServerId = function Sys$_Application$setServerId(clientId, uniqueId) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "clientId", type: String}, + {name: "uniqueId", type: String} + ]); + if (e) throw e; + this._clientId = clientId; + this._uniqueId = uniqueId; +}; +Sys._Application.prototype.setServerState = function Sys$_Application$setServerState(value) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "value", type: String} + ]); + if (e) throw e; + this._ensureHistory(); + this._state.__s = value; + this._updateHiddenField(value); +}; +Sys._Application.prototype._deserializeState = function Sys$_Application$_deserializeState(entry) { + var result = {}; + entry = entry || ''; + var serverSeparator = entry.indexOf('&&'); + if ((serverSeparator !== -1) && (serverSeparator + 2 < entry.length)) { + result.__s = entry.substr(serverSeparator + 2); + entry = entry.substr(0, serverSeparator); + } + var tokens = entry.split('&'); + for (var i = 0, l = tokens.length; i < l; i++) { + var token = tokens[i]; + var equal = token.indexOf('='); + if ((equal !== -1) && (equal + 1 < token.length)) { + var name = token.substr(0, equal); + var value = token.substr(equal + 1); + result[name] = decodeURIComponent(value); + } + } + return result; +}; +Sys._Application.prototype._enableHistoryInScriptManager = function Sys$_Application$_enableHistoryInScriptManager() { + this._enableHistory = true; + this._historyEnabledInScriptManager = true; +}; +Sys._Application.prototype._ensureHistory = function Sys$_Application$_ensureHistory() { + if (!this._historyInitialized && this._enableHistory) { + if ((Sys.Browser.agent === Sys.Browser.InternetExplorer) && (Sys.Browser.documentMode < 8)) { + this._historyFrame = document.getElementById('__historyFrame'); + if (!this._historyFrame) throw Error.invalidOperation(Sys.Res.historyMissingFrame); + this._ignoreIFrame = true; + } + this._timerHandler = Function.createDelegate(this, this._onIdle); + this._timerCookie = window.setTimeout(this._timerHandler, 100); + + try { + this._initialState = this._deserializeState(this.get_stateString()); + } catch(e) {} + + this._historyInitialized = true; + } +}; +Sys._Application.prototype._navigate = function Sys$_Application$_navigate(entry) { + this._ensureHistory(); + var state = this._deserializeState(entry); + + if (this._uniqueId) { + var oldServerEntry = this._state.__s || ''; + var newServerEntry = state.__s || ''; + if (newServerEntry !== oldServerEntry) { + this._updateHiddenField(newServerEntry); + __doPostBack(this._uniqueId, newServerEntry); + this._state = state; + return; + } + } + this._setState(entry); + this._state = state; + this._raiseNavigate(); +}; +Sys._Application.prototype._onIdle = function Sys$_Application$_onIdle() { + delete this._timerCookie; + + var entry = this.get_stateString(); + if (entry !== this._currentEntry) { + if (!this._ignoreTimer) { + this._historyPointIsNew = false; + this._navigate(entry); + } + } + else { + this._ignoreTimer = false; + } + this._timerCookie = window.setTimeout(this._timerHandler, 100); +}; +Sys._Application.prototype._onIFrameLoad = function Sys$_Application$_onIFrameLoad(entry) { + this._ensureHistory(); + if (!this._ignoreIFrame) { + this._historyPointIsNew = false; + this._navigate(entry); + } + this._ignoreIFrame = false; +}; +Sys._Application.prototype._onPageRequestManagerBeginRequest = function Sys$_Application$_onPageRequestManagerBeginRequest(sender, args) { + this._ignoreTimer = true; +}; +Sys._Application.prototype._onPageRequestManagerEndRequest = function Sys$_Application$_onPageRequestManagerEndRequest(sender, args) { + var dataItem = args.get_dataItems()[this._clientId]; + var eventTarget = document.getElementById("__EVENTTARGET"); + if (eventTarget && eventTarget.value === this._uniqueId) { + eventTarget.value = ''; + } + if (typeof(dataItem) !== 'undefined') { + this.setServerState(dataItem); + this._historyPointIsNew = true; + } + else { + this._ignoreTimer = false; + } + var entry = this._serializeState(this._state); + if (entry !== this._currentEntry) { + this._ignoreTimer = true; + this._setState(entry); + this._raiseNavigate(); + } +}; +Sys._Application.prototype._raiseNavigate = function Sys$_Application$_raiseNavigate() { + var h = this.get_events().getHandler("navigate"); + var stateClone = {}; + for (var key in this._state) { + if (key !== '__s') { + stateClone[key] = this._state[key]; + } + } + var args = new Sys.HistoryEventArgs(stateClone); + if (h) { + h(this, args); + } + var err; + try { + if ((Sys.Browser.agent === Sys.Browser.Firefox) && window.location.hash && + (!window.frameElement || window.top.location.hash)) { + window.history.go(0); + } + } + catch(err) { + } +}; +Sys._Application.prototype._serializeState = function Sys$_Application$_serializeState(state) { + var serialized = []; + for (var key in state) { + var value = state[key]; + if (key === '__s') { + var serverState = value; + } + else { + if (key.indexOf('=') !== -1) throw Error.argument('state', Sys.Res.stateFieldNameInvalid); + serialized[serialized.length] = key + '=' + encodeURIComponent(value); + } + } + return serialized.join('&') + (serverState ? '&&' + serverState : ''); +}; +Sys._Application.prototype._setState = function Sys$_Application$_setState(entry, title) { + if (this._enableHistory) { + entry = entry || ''; + if (entry !== this._currentEntry) { + if (window.theForm) { + var action = window.theForm.action; + var hashIndex = action.indexOf('#'); + window.theForm.action = ((hashIndex !== -1) ? action.substring(0, hashIndex) : action) + '#' + entry; + } + + if (this._historyFrame && this._historyPointIsNew) { + this._ignoreIFrame = true; + var frameDoc = this._historyFrame.contentWindow.document; + frameDoc.open("javascript:''"); + frameDoc.write("" + (title || document.title) + + "parent.Sys.Application._onIFrameLoad(" + + Sys.Serialization.JavaScriptSerializer.serialize(entry) + + ");"); + frameDoc.close(); + } + this._ignoreTimer = false; + this._currentEntry = entry; + if (this._historyFrame || this._historyPointIsNew) { + var currentHash = this.get_stateString(); + if (entry !== currentHash) { + var loc = document.location; + if (loc.href.length - loc.hash.length + entry.length > 1024) { + throw Error.invalidOperation(Sys.Res.urlMustBeLessThan1024chars); + } + window.location.hash = entry; + this._currentEntry = this.get_stateString(); + if ((typeof(title) !== 'undefined') && (title !== null)) { + document.title = title; + } + } + } + this._historyPointIsNew = false; + } + } +}; +Sys._Application.prototype._updateHiddenField = function Sys$_Application$_updateHiddenField(value) { + if (this._clientId) { + var serverStateField = document.getElementById(this._clientId); + if (serverStateField) { + serverStateField.value = value; + } + } +}; + +if (!window.XMLHttpRequest) { + window.XMLHttpRequest = function window$XMLHttpRequest() { + var progIDs = [ 'Msxml2.XMLHTTP.3.0', 'Msxml2.XMLHTTP' ]; + for (var i = 0, l = progIDs.length; i < l; i++) { + try { + return new ActiveXObject(progIDs[i]); + } + catch (ex) { + } + } + return null; + } +} +Type.registerNamespace('Sys.Net'); + +Sys.Net.WebRequestExecutor = function Sys$Net$WebRequestExecutor() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._webRequest = null; + this._resultObject = null; +} + function Sys$Net$WebRequestExecutor$get_webRequest() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._webRequest; + } + function Sys$Net$WebRequestExecutor$_set_webRequest(value) { + if (this.get_started()) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOnceStarted, 'set_webRequest')); + } + this._webRequest = value; + } + function Sys$Net$WebRequestExecutor$get_started() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_responseAvailable() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_timedOut() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_aborted() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_responseData() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_statusCode() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_statusText() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_xml() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$get_object() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._resultObject) { + this._resultObject = Sys.Serialization.JavaScriptSerializer.deserialize(this.get_responseData()); + } + return this._resultObject; + } + function Sys$Net$WebRequestExecutor$executeRequest() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$abort() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$getResponseHeader(header) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "header", type: String} + ]); + if (e) throw e; + throw Error.notImplemented(); + } + function Sys$Net$WebRequestExecutor$getAllResponseHeaders() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + throw Error.notImplemented(); + } +Sys.Net.WebRequestExecutor.prototype = { + get_webRequest: Sys$Net$WebRequestExecutor$get_webRequest, + _set_webRequest: Sys$Net$WebRequestExecutor$_set_webRequest, + get_started: Sys$Net$WebRequestExecutor$get_started, + get_responseAvailable: Sys$Net$WebRequestExecutor$get_responseAvailable, + get_timedOut: Sys$Net$WebRequestExecutor$get_timedOut, + get_aborted: Sys$Net$WebRequestExecutor$get_aborted, + get_responseData: Sys$Net$WebRequestExecutor$get_responseData, + get_statusCode: Sys$Net$WebRequestExecutor$get_statusCode, + get_statusText: Sys$Net$WebRequestExecutor$get_statusText, + get_xml: Sys$Net$WebRequestExecutor$get_xml, + get_object: Sys$Net$WebRequestExecutor$get_object, + executeRequest: Sys$Net$WebRequestExecutor$executeRequest, + abort: Sys$Net$WebRequestExecutor$abort, + getResponseHeader: Sys$Net$WebRequestExecutor$getResponseHeader, + getAllResponseHeaders: Sys$Net$WebRequestExecutor$getAllResponseHeaders +} +Sys.Net.WebRequestExecutor.registerClass('Sys.Net.WebRequestExecutor'); + +Sys.Net.XMLDOM = function Sys$Net$XMLDOM(markup) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "markup", type: String} + ]); + if (e) throw e; + if (!window.DOMParser) { + var progIDs = [ 'Msxml2.DOMDocument.3.0', 'Msxml2.DOMDocument' ]; + for (var i = 0, l = progIDs.length; i < l; i++) { + try { + var xmlDOM = new ActiveXObject(progIDs[i]); + xmlDOM.async = false; + xmlDOM.loadXML(markup); + xmlDOM.setProperty('SelectionLanguage', 'XPath'); + return xmlDOM; + } + catch (ex) { + } + } + } + else { + try { + var domParser = new window.DOMParser(); + return domParser.parseFromString(markup, 'text/xml'); + } + catch (ex) { + } + } + return null; +} +Sys.Net.XMLHttpExecutor = function Sys$Net$XMLHttpExecutor() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + Sys.Net.XMLHttpExecutor.initializeBase(this); + var _this = this; + this._xmlHttpRequest = null; + this._webRequest = null; + this._responseAvailable = false; + this._timedOut = false; + this._timer = null; + this._aborted = false; + this._started = false; + this._onReadyStateChange = (function () { + + if (_this._xmlHttpRequest.readyState === 4 ) { + try { + if (typeof(_this._xmlHttpRequest.status) === "undefined") { + return; + } + } + catch(ex) { + return; + } + + _this._clearTimer(); + _this._responseAvailable = true; + _this._webRequest.completed(Sys.EventArgs.Empty); + if (_this._xmlHttpRequest != null) { + _this._xmlHttpRequest.onreadystatechange = Function.emptyMethod; + _this._xmlHttpRequest = null; + } + } + }); + this._clearTimer = (function() { + if (_this._timer != null) { + window.clearTimeout(_this._timer); + _this._timer = null; + } + }); + this._onTimeout = (function() { + if (!_this._responseAvailable) { + _this._clearTimer(); + _this._timedOut = true; + _this._xmlHttpRequest.onreadystatechange = Function.emptyMethod; + _this._xmlHttpRequest.abort(); + _this._webRequest.completed(Sys.EventArgs.Empty); + _this._xmlHttpRequest = null; + } + }); +} + function Sys$Net$XMLHttpExecutor$get_timedOut() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._timedOut; + } + function Sys$Net$XMLHttpExecutor$get_started() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._started; + } + function Sys$Net$XMLHttpExecutor$get_responseAvailable() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._responseAvailable; + } + function Sys$Net$XMLHttpExecutor$get_aborted() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._aborted; + } + function Sys$Net$XMLHttpExecutor$executeRequest() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._webRequest = this.get_webRequest(); + if (this._started) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOnceStarted, 'executeRequest')); + } + if (this._webRequest === null) { + throw Error.invalidOperation(Sys.Res.nullWebRequest); + } + var body = this._webRequest.get_body(); + var headers = this._webRequest.get_headers(); + this._xmlHttpRequest = new XMLHttpRequest(); + this._xmlHttpRequest.onreadystatechange = this._onReadyStateChange; + var verb = this._webRequest.get_httpVerb(); + this._xmlHttpRequest.open(verb, this._webRequest.getResolvedUrl(), true ); + this._xmlHttpRequest.setRequestHeader("X-Requested-With", "XMLHttpRequest"); + if (headers) { + for (var header in headers) { + var val = headers[header]; + if (typeof(val) !== "function") + this._xmlHttpRequest.setRequestHeader(header, val); + } + } + if (verb.toLowerCase() === "post") { + if ((headers === null) || !headers['Content-Type']) { + this._xmlHttpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8'); + } + if (!body) { + body = ""; + } + } + var timeout = this._webRequest.get_timeout(); + if (timeout > 0) { + this._timer = window.setTimeout(Function.createDelegate(this, this._onTimeout), timeout); + } + this._xmlHttpRequest.send(body); + this._started = true; + } + function Sys$Net$XMLHttpExecutor$getResponseHeader(header) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "header", type: String} + ]); + if (e) throw e; + if (!this._responseAvailable) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallBeforeResponse, 'getResponseHeader')); + } + if (!this._xmlHttpRequest) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOutsideHandler, 'getResponseHeader')); + } + var result; + try { + result = this._xmlHttpRequest.getResponseHeader(header); + } catch (e) { + } + if (!result) result = ""; + return result; + } + function Sys$Net$XMLHttpExecutor$getAllResponseHeaders() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._responseAvailable) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallBeforeResponse, 'getAllResponseHeaders')); + } + if (!this._xmlHttpRequest) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOutsideHandler, 'getAllResponseHeaders')); + } + return this._xmlHttpRequest.getAllResponseHeaders(); + } + function Sys$Net$XMLHttpExecutor$get_responseData() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._responseAvailable) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallBeforeResponse, 'get_responseData')); + } + if (!this._xmlHttpRequest) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOutsideHandler, 'get_responseData')); + } + return this._xmlHttpRequest.responseText; + } + function Sys$Net$XMLHttpExecutor$get_statusCode() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._responseAvailable) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallBeforeResponse, 'get_statusCode')); + } + if (!this._xmlHttpRequest) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOutsideHandler, 'get_statusCode')); + } + var result = 0; + try { + result = this._xmlHttpRequest.status; + } + catch(ex) { + } + return result; + } + function Sys$Net$XMLHttpExecutor$get_statusText() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._responseAvailable) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallBeforeResponse, 'get_statusText')); + } + if (!this._xmlHttpRequest) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOutsideHandler, 'get_statusText')); + } + return this._xmlHttpRequest.statusText; + } + function Sys$Net$XMLHttpExecutor$get_xml() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._responseAvailable) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallBeforeResponse, 'get_xml')); + } + if (!this._xmlHttpRequest) { + throw Error.invalidOperation(String.format(Sys.Res.cannotCallOutsideHandler, 'get_xml')); + } + var xml = this._xmlHttpRequest.responseXML; + if (!xml || !xml.documentElement) { + xml = Sys.Net.XMLDOM(this._xmlHttpRequest.responseText); + if (!xml || !xml.documentElement) + return null; + } + else if (navigator.userAgent.indexOf('MSIE') !== -1) { + xml.setProperty('SelectionLanguage', 'XPath'); + } + if (xml.documentElement.namespaceURI === "http://www.mozilla.org/newlayout/xml/parsererror.xml" && + xml.documentElement.tagName === "parsererror") { + return null; + } + + if (xml.documentElement.firstChild && xml.documentElement.firstChild.tagName === "parsererror") { + return null; + } + + return xml; + } + function Sys$Net$XMLHttpExecutor$abort() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (!this._started) { + throw Error.invalidOperation(Sys.Res.cannotAbortBeforeStart); + } + if (this._aborted || this._responseAvailable || this._timedOut) + return; + this._aborted = true; + this._clearTimer(); + if (this._xmlHttpRequest && !this._responseAvailable) { + this._xmlHttpRequest.onreadystatechange = Function.emptyMethod; + this._xmlHttpRequest.abort(); + + this._xmlHttpRequest = null; + this._webRequest.completed(Sys.EventArgs.Empty); + } + } +Sys.Net.XMLHttpExecutor.prototype = { + get_timedOut: Sys$Net$XMLHttpExecutor$get_timedOut, + get_started: Sys$Net$XMLHttpExecutor$get_started, + get_responseAvailable: Sys$Net$XMLHttpExecutor$get_responseAvailable, + get_aborted: Sys$Net$XMLHttpExecutor$get_aborted, + executeRequest: Sys$Net$XMLHttpExecutor$executeRequest, + getResponseHeader: Sys$Net$XMLHttpExecutor$getResponseHeader, + getAllResponseHeaders: Sys$Net$XMLHttpExecutor$getAllResponseHeaders, + get_responseData: Sys$Net$XMLHttpExecutor$get_responseData, + get_statusCode: Sys$Net$XMLHttpExecutor$get_statusCode, + get_statusText: Sys$Net$XMLHttpExecutor$get_statusText, + get_xml: Sys$Net$XMLHttpExecutor$get_xml, + abort: Sys$Net$XMLHttpExecutor$abort +} +Sys.Net.XMLHttpExecutor.registerClass('Sys.Net.XMLHttpExecutor', Sys.Net.WebRequestExecutor); + +Sys.Net._WebRequestManager = function Sys$Net$_WebRequestManager() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._defaultTimeout = 0; + this._defaultExecutorType = "Sys.Net.XMLHttpExecutor"; +} + function Sys$Net$_WebRequestManager$add_invokingRequest(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this._get_eventHandlerList().addHandler("invokingRequest", handler); + } + function Sys$Net$_WebRequestManager$remove_invokingRequest(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this._get_eventHandlerList().removeHandler("invokingRequest", handler); + } + function Sys$Net$_WebRequestManager$add_completedRequest(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this._get_eventHandlerList().addHandler("completedRequest", handler); + } + function Sys$Net$_WebRequestManager$remove_completedRequest(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this._get_eventHandlerList().removeHandler("completedRequest", handler); + } + function Sys$Net$_WebRequestManager$_get_eventHandlerList() { + if (!this._events) { + this._events = new Sys.EventHandlerList(); + } + return this._events; + } + function Sys$Net$_WebRequestManager$get_defaultTimeout() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._defaultTimeout; + } + function Sys$Net$_WebRequestManager$set_defaultTimeout(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Number}]); + if (e) throw e; + if (value < 0) { + throw Error.argumentOutOfRange("value", value, Sys.Res.invalidTimeout); + } + this._defaultTimeout = value; + } + function Sys$Net$_WebRequestManager$get_defaultExecutorType() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._defaultExecutorType; + } + function Sys$Net$_WebRequestManager$set_defaultExecutorType(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + this._defaultExecutorType = value; + } + function Sys$Net$_WebRequestManager$executeRequest(webRequest) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "webRequest", type: Sys.Net.WebRequest} + ]); + if (e) throw e; + var executor = webRequest.get_executor(); + if (!executor) { + var failed = false; + try { + var executorType = eval(this._defaultExecutorType); + executor = new executorType(); + } catch (e) { + failed = true; + } + if (failed || !Sys.Net.WebRequestExecutor.isInstanceOfType(executor) || !executor) { + throw Error.argument("defaultExecutorType", String.format(Sys.Res.invalidExecutorType, this._defaultExecutorType)); + } + webRequest.set_executor(executor); + } + if (executor.get_aborted()) { + return; + } + var evArgs = new Sys.Net.NetworkRequestEventArgs(webRequest); + var handler = this._get_eventHandlerList().getHandler("invokingRequest"); + if (handler) { + handler(this, evArgs); + } + if (!evArgs.get_cancel()) { + executor.executeRequest(); + } + } +Sys.Net._WebRequestManager.prototype = { + add_invokingRequest: Sys$Net$_WebRequestManager$add_invokingRequest, + remove_invokingRequest: Sys$Net$_WebRequestManager$remove_invokingRequest, + add_completedRequest: Sys$Net$_WebRequestManager$add_completedRequest, + remove_completedRequest: Sys$Net$_WebRequestManager$remove_completedRequest, + _get_eventHandlerList: Sys$Net$_WebRequestManager$_get_eventHandlerList, + get_defaultTimeout: Sys$Net$_WebRequestManager$get_defaultTimeout, + set_defaultTimeout: Sys$Net$_WebRequestManager$set_defaultTimeout, + get_defaultExecutorType: Sys$Net$_WebRequestManager$get_defaultExecutorType, + set_defaultExecutorType: Sys$Net$_WebRequestManager$set_defaultExecutorType, + executeRequest: Sys$Net$_WebRequestManager$executeRequest +} +Sys.Net._WebRequestManager.registerClass('Sys.Net._WebRequestManager'); +Sys.Net.WebRequestManager = new Sys.Net._WebRequestManager(); + +Sys.Net.NetworkRequestEventArgs = function Sys$Net$NetworkRequestEventArgs(webRequest) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "webRequest", type: Sys.Net.WebRequest} + ]); + if (e) throw e; + Sys.Net.NetworkRequestEventArgs.initializeBase(this); + this._webRequest = webRequest; +} + function Sys$Net$NetworkRequestEventArgs$get_webRequest() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._webRequest; + } +Sys.Net.NetworkRequestEventArgs.prototype = { + get_webRequest: Sys$Net$NetworkRequestEventArgs$get_webRequest +} +Sys.Net.NetworkRequestEventArgs.registerClass('Sys.Net.NetworkRequestEventArgs', Sys.CancelEventArgs); + +Sys.Net.WebRequest = function Sys$Net$WebRequest() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._url = ""; + this._headers = { }; + this._body = null; + this._userContext = null; + this._httpVerb = null; + this._executor = null; + this._invokeCalled = false; + this._timeout = 0; +} + function Sys$Net$WebRequest$add_completed(handler) { + /// + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this._get_eventHandlerList().addHandler("completed", handler); + } + function Sys$Net$WebRequest$remove_completed(handler) { + var e = Function._validateParams(arguments, [{name: "handler", type: Function}]); + if (e) throw e; + this._get_eventHandlerList().removeHandler("completed", handler); + } + function Sys$Net$WebRequest$completed(eventArgs) { + /// + /// + var e = Function._validateParams(arguments, [ + {name: "eventArgs", type: Sys.EventArgs} + ]); + if (e) throw e; + var handler = Sys.Net.WebRequestManager._get_eventHandlerList().getHandler("completedRequest"); + if (handler) { + handler(this._executor, eventArgs); + } + handler = this._get_eventHandlerList().getHandler("completed"); + if (handler) { + handler(this._executor, eventArgs); + } + } + function Sys$Net$WebRequest$_get_eventHandlerList() { + if (!this._events) { + this._events = new Sys.EventHandlerList(); + } + return this._events; + } + function Sys$Net$WebRequest$get_url() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._url; + } + function Sys$Net$WebRequest$set_url(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + this._url = value; + } + function Sys$Net$WebRequest$get_headers() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._headers; + } + function Sys$Net$WebRequest$get_httpVerb() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this._httpVerb === null) { + if (this._body === null) { + return "GET"; + } + return "POST"; + } + return this._httpVerb; + } + function Sys$Net$WebRequest$set_httpVerb(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + if (value.length === 0) { + throw Error.argument('value', Sys.Res.invalidHttpVerb); + } + this._httpVerb = value; + } + function Sys$Net$WebRequest$get_body() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._body; + } + function Sys$Net$WebRequest$set_body(value) { + var e = Function._validateParams(arguments, [{name: "value", mayBeNull: true}]); + if (e) throw e; + this._body = value; + } + function Sys$Net$WebRequest$get_userContext() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._userContext; + } + function Sys$Net$WebRequest$set_userContext(value) { + var e = Function._validateParams(arguments, [{name: "value", mayBeNull: true}]); + if (e) throw e; + this._userContext = value; + } + function Sys$Net$WebRequest$get_executor() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._executor; + } + function Sys$Net$WebRequest$set_executor(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Sys.Net.WebRequestExecutor}]); + if (e) throw e; + if (this._executor !== null && this._executor.get_started()) { + throw Error.invalidOperation(Sys.Res.setExecutorAfterActive); + } + this._executor = value; + this._executor._set_webRequest(this); + } + function Sys$Net$WebRequest$get_timeout() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this._timeout === 0) { + return Sys.Net.WebRequestManager.get_defaultTimeout(); + } + return this._timeout; + } + function Sys$Net$WebRequest$set_timeout(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Number}]); + if (e) throw e; + if (value < 0) { + throw Error.argumentOutOfRange("value", value, Sys.Res.invalidTimeout); + } + this._timeout = value; + } + function Sys$Net$WebRequest$getResolvedUrl() { + /// + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return Sys.Net.WebRequest._resolveUrl(this._url); + } + function Sys$Net$WebRequest$invoke() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + if (this._invokeCalled) { + throw Error.invalidOperation(Sys.Res.invokeCalledTwice); + } + Sys.Net.WebRequestManager.executeRequest(this); + this._invokeCalled = true; + } +Sys.Net.WebRequest.prototype = { + add_completed: Sys$Net$WebRequest$add_completed, + remove_completed: Sys$Net$WebRequest$remove_completed, + completed: Sys$Net$WebRequest$completed, + _get_eventHandlerList: Sys$Net$WebRequest$_get_eventHandlerList, + get_url: Sys$Net$WebRequest$get_url, + set_url: Sys$Net$WebRequest$set_url, + get_headers: Sys$Net$WebRequest$get_headers, + get_httpVerb: Sys$Net$WebRequest$get_httpVerb, + set_httpVerb: Sys$Net$WebRequest$set_httpVerb, + get_body: Sys$Net$WebRequest$get_body, + set_body: Sys$Net$WebRequest$set_body, + get_userContext: Sys$Net$WebRequest$get_userContext, + set_userContext: Sys$Net$WebRequest$set_userContext, + get_executor: Sys$Net$WebRequest$get_executor, + set_executor: Sys$Net$WebRequest$set_executor, + get_timeout: Sys$Net$WebRequest$get_timeout, + set_timeout: Sys$Net$WebRequest$set_timeout, + getResolvedUrl: Sys$Net$WebRequest$getResolvedUrl, + invoke: Sys$Net$WebRequest$invoke +} +Sys.Net.WebRequest._resolveUrl = function Sys$Net$WebRequest$_resolveUrl(url, baseUrl) { + if (url && url.indexOf('://') !== -1) { + return url; + } + if (!baseUrl || baseUrl.length === 0) { + var baseElement = document.getElementsByTagName('base')[0]; + if (baseElement && baseElement.href && baseElement.href.length > 0) { + baseUrl = baseElement.href; + } + else { + baseUrl = document.URL; + } + } + var qsStart = baseUrl.indexOf('?'); + if (qsStart !== -1) { + baseUrl = baseUrl.substr(0, qsStart); + } + qsStart = baseUrl.indexOf('#'); + if (qsStart !== -1) { + baseUrl = baseUrl.substr(0, qsStart); + } + baseUrl = baseUrl.substr(0, baseUrl.lastIndexOf('/') + 1); + if (!url || url.length === 0) { + return baseUrl; + } + if (url.charAt(0) === '/') { + var slashslash = baseUrl.indexOf('://'); + if (slashslash === -1) { + throw Error.argument("baseUrl", Sys.Res.badBaseUrl1); + } + var nextSlash = baseUrl.indexOf('/', slashslash + 3); + if (nextSlash === -1) { + throw Error.argument("baseUrl", Sys.Res.badBaseUrl2); + } + return baseUrl.substr(0, nextSlash) + url; + } + else { + var lastSlash = baseUrl.lastIndexOf('/'); + if (lastSlash === -1) { + throw Error.argument("baseUrl", Sys.Res.badBaseUrl3); + } + return baseUrl.substr(0, lastSlash+1) + url; + } +} +Sys.Net.WebRequest._createQueryString = function Sys$Net$WebRequest$_createQueryString(queryString, encodeMethod, addParams) { + encodeMethod = encodeMethod || encodeURIComponent; + var i = 0, obj, val, arg, sb = new Sys.StringBuilder(); + if (queryString) { + for (arg in queryString) { + obj = queryString[arg]; + if (typeof(obj) === "function") continue; + val = Sys.Serialization.JavaScriptSerializer.serialize(obj); + if (i++) { + sb.append('&'); + } + sb.append(arg); + sb.append('='); + sb.append(encodeMethod(val)); + } + } + if (addParams) { + if (i) { + sb.append('&'); + } + sb.append(addParams); + } + return sb.toString(); +} +Sys.Net.WebRequest._createUrl = function Sys$Net$WebRequest$_createUrl(url, queryString, addParams) { + if (!queryString && !addParams) { + return url; + } + var qs = Sys.Net.WebRequest._createQueryString(queryString, null, addParams); + return qs.length + ? url + ((url && url.indexOf('?') >= 0) ? "&" : "?") + qs + : url; +} +Sys.Net.WebRequest.registerClass('Sys.Net.WebRequest'); + +Sys._ScriptLoaderTask = function Sys$_ScriptLoaderTask(scriptElement, completedCallback) { + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "scriptElement", domElement: true}, + {name: "completedCallback", type: Function} + ]); + if (e) throw e; + this._scriptElement = scriptElement; + this._completedCallback = completedCallback; +} + function Sys$_ScriptLoaderTask$get_scriptElement() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._scriptElement; + } + function Sys$_ScriptLoaderTask$dispose() { + if(this._disposed) { + return; + } + this._disposed = true; + this._removeScriptElementHandlers(); + Sys._ScriptLoaderTask._clearScript(this._scriptElement); + this._scriptElement = null; + } + function Sys$_ScriptLoaderTask$execute() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + this._addScriptElementHandlers(); + var headElements = document.getElementsByTagName('head'); + if (headElements.length === 0) { + throw new Error.invalidOperation(Sys.Res.scriptLoadFailedNoHead); + } + else { + headElements[0].appendChild(this._scriptElement); + } + } + function Sys$_ScriptLoaderTask$_addScriptElementHandlers() { + this._scriptLoadDelegate = Function.createDelegate(this, this._scriptLoadHandler); + + if (Sys.Browser.agent !== Sys.Browser.InternetExplorer) { + this._scriptElement.readyState = 'loaded'; + $addHandler(this._scriptElement, 'load', this._scriptLoadDelegate); + } + else { + $addHandler(this._scriptElement, 'readystatechange', this._scriptLoadDelegate); + } + if (this._scriptElement.addEventListener) { + this._scriptErrorDelegate = Function.createDelegate(this, this._scriptErrorHandler); + this._scriptElement.addEventListener('error', this._scriptErrorDelegate, false); + } + } + function Sys$_ScriptLoaderTask$_removeScriptElementHandlers() { + if(this._scriptLoadDelegate) { + var scriptElement = this.get_scriptElement(); + if (Sys.Browser.agent !== Sys.Browser.InternetExplorer) { + $removeHandler(scriptElement, 'load', this._scriptLoadDelegate); + } + else { + $removeHandler(scriptElement, 'readystatechange', this._scriptLoadDelegate); + } + if (this._scriptErrorDelegate) { + this._scriptElement.removeEventListener('error', this._scriptErrorDelegate, false); + this._scriptErrorDelegate = null; + } + this._scriptLoadDelegate = null; + } + } + function Sys$_ScriptLoaderTask$_scriptErrorHandler() { + if(this._disposed) { + return; + } + + this._completedCallback(this.get_scriptElement(), false); + } + function Sys$_ScriptLoaderTask$_scriptLoadHandler() { + if(this._disposed) { + return; + } + var scriptElement = this.get_scriptElement(); + if ((scriptElement.readyState !== 'loaded') && + (scriptElement.readyState !== 'complete')) { + return; + } + + this._completedCallback(scriptElement, true); + } +Sys._ScriptLoaderTask.prototype = { + get_scriptElement: Sys$_ScriptLoaderTask$get_scriptElement, + dispose: Sys$_ScriptLoaderTask$dispose, + execute: Sys$_ScriptLoaderTask$execute, + _addScriptElementHandlers: Sys$_ScriptLoaderTask$_addScriptElementHandlers, + _removeScriptElementHandlers: Sys$_ScriptLoaderTask$_removeScriptElementHandlers, + _scriptErrorHandler: Sys$_ScriptLoaderTask$_scriptErrorHandler, + _scriptLoadHandler: Sys$_ScriptLoaderTask$_scriptLoadHandler +} +Sys._ScriptLoaderTask.registerClass("Sys._ScriptLoaderTask", null, Sys.IDisposable); +Sys._ScriptLoaderTask._clearScript = function Sys$_ScriptLoaderTask$_clearScript(scriptElement) { + if (!Sys.Debug.isDebug) { + scriptElement.parentNode.removeChild(scriptElement); + } +} +Type.registerNamespace('Sys.Net'); + +Sys.Net.WebServiceProxy = function Sys$Net$WebServiceProxy() { +} + function Sys$Net$WebServiceProxy$get_timeout() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._timeout || 0; + } + function Sys$Net$WebServiceProxy$set_timeout(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Number}]); + if (e) throw e; + if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); } + this._timeout = value; + } + function Sys$Net$WebServiceProxy$get_defaultUserContext() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return (typeof(this._userContext) === "undefined") ? null : this._userContext; + } + function Sys$Net$WebServiceProxy$set_defaultUserContext(value) { + var e = Function._validateParams(arguments, [{name: "value", mayBeNull: true}]); + if (e) throw e; + this._userContext = value; + } + function Sys$Net$WebServiceProxy$get_defaultSucceededCallback() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._succeeded || null; + } + function Sys$Net$WebServiceProxy$set_defaultSucceededCallback(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Function, mayBeNull: true}]); + if (e) throw e; + this._succeeded = value; + } + function Sys$Net$WebServiceProxy$get_defaultFailedCallback() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._failed || null; + } + function Sys$Net$WebServiceProxy$set_defaultFailedCallback(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Function, mayBeNull: true}]); + if (e) throw e; + this._failed = value; + } + function Sys$Net$WebServiceProxy$get_enableJsonp() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return !!this._jsonp; + } + function Sys$Net$WebServiceProxy$set_enableJsonp(value) { + var e = Function._validateParams(arguments, [{name: "value", type: Boolean}]); + if (e) throw e; + this._jsonp = value; + } + function Sys$Net$WebServiceProxy$get_path() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._path || null; + } + function Sys$Net$WebServiceProxy$set_path(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + this._path = value; + } + function Sys$Net$WebServiceProxy$get_jsonpCallbackParameter() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._callbackParameter || "callback"; + } + function Sys$Net$WebServiceProxy$set_jsonpCallbackParameter(value) { + var e = Function._validateParams(arguments, [{name: "value", type: String}]); + if (e) throw e; + this._callbackParameter = value; + } + function Sys$Net$WebServiceProxy$_invoke(servicePath, methodName, useGet, params, onSuccess, onFailure, userContext) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "servicePath", type: String}, + {name: "methodName", type: String}, + {name: "useGet", type: Boolean}, + {name: "params"}, + {name: "onSuccess", type: Function, mayBeNull: true, optional: true}, + {name: "onFailure", type: Function, mayBeNull: true, optional: true}, + {name: "userContext", mayBeNull: true, optional: true} + ]); + if (e) throw e; + onSuccess = onSuccess || this.get_defaultSucceededCallback(); + onFailure = onFailure || this.get_defaultFailedCallback(); + if (userContext === null || typeof userContext === 'undefined') userContext = this.get_defaultUserContext(); + return Sys.Net.WebServiceProxy.invoke(servicePath, methodName, useGet, params, onSuccess, onFailure, userContext, this.get_timeout(), this.get_enableJsonp(), this.get_jsonpCallbackParameter()); + } +Sys.Net.WebServiceProxy.prototype = { + get_timeout: Sys$Net$WebServiceProxy$get_timeout, + set_timeout: Sys$Net$WebServiceProxy$set_timeout, + get_defaultUserContext: Sys$Net$WebServiceProxy$get_defaultUserContext, + set_defaultUserContext: Sys$Net$WebServiceProxy$set_defaultUserContext, + get_defaultSucceededCallback: Sys$Net$WebServiceProxy$get_defaultSucceededCallback, + set_defaultSucceededCallback: Sys$Net$WebServiceProxy$set_defaultSucceededCallback, + get_defaultFailedCallback: Sys$Net$WebServiceProxy$get_defaultFailedCallback, + set_defaultFailedCallback: Sys$Net$WebServiceProxy$set_defaultFailedCallback, + get_enableJsonp: Sys$Net$WebServiceProxy$get_enableJsonp, + set_enableJsonp: Sys$Net$WebServiceProxy$set_enableJsonp, + get_path: Sys$Net$WebServiceProxy$get_path, + set_path: Sys$Net$WebServiceProxy$set_path, + get_jsonpCallbackParameter: Sys$Net$WebServiceProxy$get_jsonpCallbackParameter, + set_jsonpCallbackParameter: Sys$Net$WebServiceProxy$set_jsonpCallbackParameter, + _invoke: Sys$Net$WebServiceProxy$_invoke +} +Sys.Net.WebServiceProxy.registerClass('Sys.Net.WebServiceProxy'); +Sys.Net.WebServiceProxy.invoke = function Sys$Net$WebServiceProxy$invoke(servicePath, methodName, useGet, params, onSuccess, onFailure, userContext, timeout, enableJsonp, jsonpCallbackParameter) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "servicePath", type: String}, + {name: "methodName", type: String, mayBeNull: true, optional: true}, + {name: "useGet", type: Boolean, optional: true}, + {name: "params", mayBeNull: true, optional: true}, + {name: "onSuccess", type: Function, mayBeNull: true, optional: true}, + {name: "onFailure", type: Function, mayBeNull: true, optional: true}, + {name: "userContext", mayBeNull: true, optional: true}, + {name: "timeout", type: Number, optional: true}, + {name: "enableJsonp", type: Boolean, mayBeNull: true, optional: true}, + {name: "jsonpCallbackParameter", type: String, mayBeNull: true, optional: true} + ]); + if (e) throw e; + var schemeHost = (enableJsonp !== false) ? Sys.Net.WebServiceProxy._xdomain.exec(servicePath) : null, + tempCallback, jsonp = schemeHost && (schemeHost.length === 3) && + ((schemeHost[1] !== location.protocol) || (schemeHost[2] !== location.host)); + useGet = jsonp || useGet; + if (jsonp) { + jsonpCallbackParameter = jsonpCallbackParameter || "callback"; + tempCallback = "_jsonp" + Sys._jsonp++; + } + if (!params) params = {}; + var urlParams = params; + if (!useGet || !urlParams) urlParams = {}; + var script, error, timeoutcookie = null, loader, body = null, + url = Sys.Net.WebRequest._createUrl(methodName + ? (servicePath+"/"+encodeURIComponent(methodName)) + : servicePath, urlParams, jsonp ? (jsonpCallbackParameter + "=Sys." + tempCallback) : null); + if (jsonp) { + script = document.createElement("script"); + script.src = url; + loader = new Sys._ScriptLoaderTask(script, function(script, loaded) { + if (!loaded || tempCallback) { + jsonpComplete({ Message: String.format(Sys.Res.webServiceFailedNoMsg, methodName) }, -1); + } + }); + function jsonpComplete(data, statusCode) { + if (timeoutcookie !== null) { + window.clearTimeout(timeoutcookie); + timeoutcookie = null; + } + loader.dispose(); + delete Sys[tempCallback]; + tempCallback = null; + if ((typeof(statusCode) !== "undefined") && (statusCode !== 200)) { + if (onFailure) { + error = new Sys.Net.WebServiceError(false, + data.Message || String.format(Sys.Res.webServiceFailedNoMsg, methodName), + data.StackTrace || null, + data.ExceptionType || null, + data); + error._statusCode = statusCode; + onFailure(error, userContext, methodName); + } + else { + if (data.StackTrace && data.Message) { + error = data.StackTrace + "-- " + data.Message; + } + else { + error = data.StackTrace || data.Message; + } + error = String.format(error ? Sys.Res.webServiceFailed : Sys.Res.webServiceFailedNoMsg, methodName, error); + throw Sys.Net.WebServiceProxy._createFailedError(methodName, String.format(Sys.Res.webServiceFailed, methodName, error)); + } + } + else if (onSuccess) { + onSuccess(data, userContext, methodName); + } + } + Sys[tempCallback] = jsonpComplete; + loader.execute(); + return null; + } + var request = new Sys.Net.WebRequest(); + request.set_url(url); + request.get_headers()['Content-Type'] = 'application/json; charset=utf-8'; + if (!useGet) { + body = Sys.Serialization.JavaScriptSerializer.serialize(params); + if (body === "{}") body = ""; + } + request.set_body(body); + request.add_completed(onComplete); + if (timeout && timeout > 0) request.set_timeout(timeout); + request.invoke(); + + function onComplete(response, eventArgs) { + if (response.get_responseAvailable()) { + var statusCode = response.get_statusCode(); + var result = null; + + try { + var contentType = response.getResponseHeader("Content-Type"); + if (contentType.startsWith("application/json")) { + result = response.get_object(); + } + else if (contentType.startsWith("text/xml")) { + result = response.get_xml(); + } + else { + result = response.get_responseData(); + } + } catch (ex) { + } + var error = response.getResponseHeader("jsonerror"); + var errorObj = (error === "true"); + if (errorObj) { + if (result) { + result = new Sys.Net.WebServiceError(false, result.Message, result.StackTrace, result.ExceptionType, result); + } + } + else if (contentType.startsWith("application/json")) { + result = (!result || (typeof(result.d) === "undefined")) ? result : result.d; + } + if (((statusCode < 200) || (statusCode >= 300)) || errorObj) { + if (onFailure) { + if (!result || !errorObj) { + result = new Sys.Net.WebServiceError(false , String.format(Sys.Res.webServiceFailedNoMsg, methodName)); + } + result._statusCode = statusCode; + onFailure(result, userContext, methodName); + } + else { + if (result && errorObj) { + error = result.get_exceptionType() + "-- " + result.get_message(); + } + else { + error = response.get_responseData(); + } + throw Sys.Net.WebServiceProxy._createFailedError(methodName, String.format(Sys.Res.webServiceFailed, methodName, error)); + } + } + else if (onSuccess) { + onSuccess(result, userContext, methodName); + } + } + else { + var msg; + if (response.get_timedOut()) { + msg = String.format(Sys.Res.webServiceTimedOut, methodName); + } + else { + msg = String.format(Sys.Res.webServiceFailedNoMsg, methodName) + } + if (onFailure) { + onFailure(new Sys.Net.WebServiceError(response.get_timedOut(), msg, "", ""), userContext, methodName); + } + else { + throw Sys.Net.WebServiceProxy._createFailedError(methodName, msg); + } + } + } + return request; +} +Sys.Net.WebServiceProxy._createFailedError = function Sys$Net$WebServiceProxy$_createFailedError(methodName, errorMessage) { + var displayMessage = "Sys.Net.WebServiceFailedException: " + errorMessage; + var e = Error.create(displayMessage, { 'name': 'Sys.Net.WebServiceFailedException', 'methodName': methodName }); + e.popStackFrame(); + return e; +} +Sys.Net.WebServiceProxy._defaultFailedCallback = function Sys$Net$WebServiceProxy$_defaultFailedCallback(err, methodName) { + var error = err.get_exceptionType() + "-- " + err.get_message(); + throw Sys.Net.WebServiceProxy._createFailedError(methodName, String.format(Sys.Res.webServiceFailed, methodName, error)); +} +Sys.Net.WebServiceProxy._generateTypedConstructor = function Sys$Net$WebServiceProxy$_generateTypedConstructor(type) { + return function(properties) { + if (properties) { + for (var name in properties) { + this[name] = properties[name]; + } + } + this.__type = type; + } +} +Sys._jsonp = 0; +Sys.Net.WebServiceProxy._xdomain = /^\s*([a-zA-Z0-9\+\-\.]+\:)\/\/([^?#\/]+)/; + +Sys.Net.WebServiceError = function Sys$Net$WebServiceError(timedOut, message, stackTrace, exceptionType, errorObject) { + /// + /// + /// + /// + /// + /// + var e = Function._validateParams(arguments, [ + {name: "timedOut", type: Boolean}, + {name: "message", type: String, mayBeNull: true}, + {name: "stackTrace", type: String, mayBeNull: true, optional: true}, + {name: "exceptionType", type: String, mayBeNull: true, optional: true}, + {name: "errorObject", type: Object, mayBeNull: true, optional: true} + ]); + if (e) throw e; + this._timedOut = timedOut; + this._message = message; + this._stackTrace = stackTrace; + this._exceptionType = exceptionType; + this._errorObject = errorObject; + this._statusCode = -1; +} + function Sys$Net$WebServiceError$get_timedOut() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._timedOut; + } + function Sys$Net$WebServiceError$get_statusCode() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._statusCode; + } + function Sys$Net$WebServiceError$get_message() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._message; + } + function Sys$Net$WebServiceError$get_stackTrace() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._stackTrace || ""; + } + function Sys$Net$WebServiceError$get_exceptionType() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._exceptionType || ""; + } + function Sys$Net$WebServiceError$get_errorObject() { + /// + if (arguments.length !== 0) throw Error.parameterCount(); + return this._errorObject || null; + } +Sys.Net.WebServiceError.prototype = { + get_timedOut: Sys$Net$WebServiceError$get_timedOut, + get_statusCode: Sys$Net$WebServiceError$get_statusCode, + get_message: Sys$Net$WebServiceError$get_message, + get_stackTrace: Sys$Net$WebServiceError$get_stackTrace, + get_exceptionType: Sys$Net$WebServiceError$get_exceptionType, + get_errorObject: Sys$Net$WebServiceError$get_errorObject +} +Sys.Net.WebServiceError.registerClass('Sys.Net.WebServiceError'); + + +Type.registerNamespace('Sys'); + +Sys.Res={ +'urlMustBeLessThan1024chars':'The history state must be small enough to not make the url larger than 1024 characters.', +'argumentTypeName':'Value is not the name of an existing type.', +'cantBeCalledAfterDispose':'Can\'t be called after dispose.', +'componentCantSetIdAfterAddedToApp':'The id property of a component can\'t be set after it\'s been added to the Application object.', +'behaviorDuplicateName':'A behavior with name \'{0}\' already exists or it is the name of an existing property on the target element.', +'notATypeName':'Value is not a valid type name.', +'elementNotFound':'An element with id \'{0}\' could not be found.', +'stateMustBeStringDictionary':'The state object can only have null and string fields.', +'boolTrueOrFalse':'Value must be \'true\' or \'false\'.', +'scriptLoadFailedNoHead':'ScriptLoader requires pages to contain a element.', +'stringFormatInvalid':'The format string is invalid.', +'referenceNotFound':'Component \'{0}\' was not found.', +'enumReservedName':'\'{0}\' is a reserved name that can\'t be used as an enum value name.', +'circularParentChain':'The chain of control parents can\'t have circular references.', +'namespaceContainsNonObject':'Object {0} already exists and is not an object.', +'undefinedEvent':'\'{0}\' is not an event.', +'propertyUndefined':'\'{0}\' is not a property or an existing field.', +'observableConflict':'Object already contains a member with the name \'{0}\'.', +'historyCannotEnableHistory':'Cannot set enableHistory after initialization.', +'eventHandlerInvalid':'Handler was not added through the Sys.UI.DomEvent.addHandler method.', +'scriptLoadFailedDebug':'The script \'{0}\' failed to load. Check for:\r\n Inaccessible path.\r\n Script errors. (IE) Enable \'Display a notification about every script error\' under advanced settings.', +'propertyNotWritable':'\'{0}\' is not a writable property.', +'enumInvalidValueName':'\'{0}\' is not a valid name for an enum value.', +'controlAlreadyDefined':'A control is already associated with the element.', +'addHandlerCantBeUsedForError':'Can\'t add a handler for the error event using this method. Please set the window.onerror property instead.', +'cantAddNonFunctionhandler':'Can\'t add a handler that is not a function.', +'invalidNameSpace':'Value is not a valid namespace identifier.', +'notAnInterface':'Value is not a valid interface.', +'eventHandlerNotFunction':'Handler must be a function.', +'propertyNotAnArray':'\'{0}\' is not an Array property.', +'namespaceContainsClass':'Object {0} already exists as a class, enum, or interface.', +'typeRegisteredTwice':'Type {0} has already been registered. The type may be defined multiple times or the script file that defines it may have already been loaded. A possible cause is a change of settings during a partial update.', +'cantSetNameAfterInit':'The name property can\'t be set on this object after initialization.', +'historyMissingFrame':'For the history feature to work in IE, the page must have an iFrame element with id \'__historyFrame\' pointed to a page that gets its title from the \'title\' query string parameter and calls Sys.Application._onIFrameLoad() on the parent window. This can be done by setting EnableHistory to true on ScriptManager.', +'appDuplicateComponent':'Two components with the same id \'{0}\' can\'t be added to the application.', +'historyCannotAddHistoryPointWithHistoryDisabled':'A history point can only be added if enableHistory is set to true.', +'baseNotAClass':'Value is not a class.', +'expectedElementOrId':'Value must be a DOM element or DOM element Id.', +'methodNotFound':'No method found with name \'{0}\'.', +'arrayParseBadFormat':'Value must be a valid string representation for an array. It must start with a \'[\' and end with a \']\'.', +'stateFieldNameInvalid':'State field names must not contain any \'=\' characters.', +'cantSetId':'The id property can\'t be set on this object.', +'stringFormatBraceMismatch':'The format string contains an unmatched opening or closing brace.', +'enumValueNotInteger':'An enumeration definition can only contain integer values.', +'propertyNullOrUndefined':'Cannot set the properties of \'{0}\' because it returned a null value.', +'argumentDomNode':'Value must be a DOM element or a text node.', +'componentCantSetIdTwice':'The id property of a component can\'t be set more than once.', +'createComponentOnDom':'Value must be null for Components that are not Controls or Behaviors.', +'createNotComponent':'{0} does not derive from Sys.Component.', +'createNoDom':'Value must not be null for Controls and Behaviors.', +'cantAddWithoutId':'Can\'t add a component that doesn\'t have an id.', +'notObservable':'Instances of type \'{0}\' cannot be observed.', +'badTypeName':'Value is not the name of the type being registered or the name is a reserved word.', +'argumentInteger':'Value must be an integer.', +'invokeCalledTwice':'Cannot call invoke more than once.', +'webServiceFailed':'The server method \'{0}\' failed with the following error: {1}', +'argumentType':'Object cannot be converted to the required type.', +'argumentNull':'Value cannot be null.', +'scriptAlreadyLoaded':'The script \'{0}\' has been referenced multiple times. If referencing Microsoft AJAX scripts explicitly, set the MicrosoftAjaxMode property of the ScriptManager to Explicit.', +'scriptDependencyNotFound':'The script \'{0}\' failed to load because it is dependent on script \'{1}\'.', +'formatBadFormatSpecifier':'Format specifier was invalid.', +'requiredScriptReferenceNotIncluded':'\'{0}\' requires that you have included a script reference to \'{1}\'.', +'webServiceFailedNoMsg':'The server method \'{0}\' failed.', +'argumentDomElement':'Value must be a DOM element.', +'invalidExecutorType':'Could not create a valid Sys.Net.WebRequestExecutor from: {0}.', +'cannotCallBeforeResponse':'Cannot call {0} when responseAvailable is false.', +'actualValue':'Actual value was {0}.', +'enumInvalidValue':'\'{0}\' is not a valid value for enum {1}.', +'scriptLoadFailed':'The script \'{0}\' could not be loaded.', +'parameterCount':'Parameter count mismatch.', +'cannotDeserializeEmptyString':'Cannot deserialize empty string.', +'formatInvalidString':'Input string was not in a correct format.', +'invalidTimeout':'Value must be greater than or equal to zero.', +'cannotAbortBeforeStart':'Cannot abort when executor has not started.', +'argument':'Value does not fall within the expected range.', +'cannotDeserializeInvalidJson':'Cannot deserialize. The data does not correspond to valid JSON.', +'invalidHttpVerb':'httpVerb cannot be set to an empty or null string.', +'nullWebRequest':'Cannot call executeRequest with a null webRequest.', +'eventHandlerInvalid':'Handler was not added through the Sys.UI.DomEvent.addHandler method.', +'cannotSerializeNonFiniteNumbers':'Cannot serialize non finite numbers.', +'argumentUndefined':'Value cannot be undefined.', +'webServiceInvalidReturnType':'The server method \'{0}\' returned an invalid type. Expected type: {1}', +'servicePathNotSet':'The path to the web service has not been set.', +'argumentTypeWithTypes':'Object of type \'{0}\' cannot be converted to type \'{1}\'.', +'cannotCallOnceStarted':'Cannot call {0} once started.', +'badBaseUrl1':'Base URL does not contain ://.', +'badBaseUrl2':'Base URL does not contain another /.', +'badBaseUrl3':'Cannot find last / in base URL.', +'setExecutorAfterActive':'Cannot set executor after it has become active.', +'paramName':'Parameter name: {0}', +'nullReferenceInPath':'Null reference while evaluating data path: \'{0}\'.', +'cannotCallOutsideHandler':'Cannot call {0} outside of a completed event handler.', +'cannotSerializeObjectWithCycle':'Cannot serialize object with cyclic reference within child properties.', +'format':'One of the identified items was in an invalid format.', +'assertFailedCaller':'Assertion Failed: {0}\r\nat {1}', +'argumentOutOfRange':'Specified argument was out of the range of valid values.', +'webServiceTimedOut':'The server method \'{0}\' timed out.', +'notImplemented':'The method or operation is not implemented.', +'assertFailed':'Assertion Failed: {0}', +'invalidOperation':'Operation is not valid due to the current state of the object.', +'breakIntoDebugger':'{0}\r\n\r\nBreak into debugger?' +}; diff --git a/main/MyFriendsAround.Web/Scripts/MicrosoftAjax.js b/main/MyFriendsAround.Web/Scripts/MicrosoftAjax.js new file mode 100644 index 0000000..9994d1b --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/MicrosoftAjax.js @@ -0,0 +1,6 @@ +//---------------------------------------------------------- +// Copyright (C) Microsoft Corporation. All rights reserved. +//---------------------------------------------------------- +// MicrosoftAjax.js +Function.__typeName="Function";Function.__class=true;Function.createCallback=function(b,a){return function(){var e=arguments.length;if(e>0){var d=[];for(var c=0;c=d)break;a=Function._validateParameter(g[b],f,h);if(a){a.popStackFrame();return a}}return null};Function._validateParameterCount=function(j,d,i){var a,c,b=d.length,e=j.length;if(eb){c=true;for(a=0;a0&&(d=0};Array.dequeue=function(a){return a.shift()};Array.forEach=function(b,e,d){for(var a=0,f=b.length;a=0)b.splice(a,1);return a>=0};Array.removeAt=function(a,b){a.splice(b,1)};Sys._indexOf=function(d,e,a){if(typeof e==="undefined")return -1;var c=d.length;if(c!==0){a=a-0;if(isNaN(a))a=0;else{if(isFinite(a))a=a-a%1;if(a<0)a=Math.max(0,c+a)}for(var b=a;b-1){Sys.Browser.agent=Sys.Browser.InternetExplorer;Sys.Browser.version=parseFloat(navigator.userAgent.match(/MSIE (\d+\.\d+)/)[1]);if(Sys.Browser.version>=8)if(document.documentMode>=7)Sys.Browser.documentMode=document.documentMode;Sys.Browser.hasDebuggerStatement=true}else if(navigator.userAgent.indexOf(" Firefox/")>-1){Sys.Browser.agent=Sys.Browser.Firefox;Sys.Browser.version=parseFloat(navigator.userAgent.match(/Firefox\/(\d+\.\d+)/)[1]);Sys.Browser.name="Firefox";Sys.Browser.hasDebuggerStatement=true}else if(navigator.userAgent.indexOf(" AppleWebKit/")>-1){Sys.Browser.agent=Sys.Browser.Safari;Sys.Browser.version=parseFloat(navigator.userAgent.match(/AppleWebKit\/(\d+(\.\d+)?)/)[1]);Sys.Browser.name="Safari"}else if(navigator.userAgent.indexOf("Opera/")>-1)Sys.Browser.agent=Sys.Browser.Opera;Sys.EventArgs=function(){};Sys.EventArgs.registerClass("Sys.EventArgs");Sys.EventArgs.Empty=new Sys.EventArgs;Sys.CancelEventArgs=function(){Sys.CancelEventArgs.initializeBase(this);this._cancel=false};Sys.CancelEventArgs.prototype={get_cancel:function(){return this._cancel},set_cancel:function(a){this._cancel=a}};Sys.CancelEventArgs.registerClass("Sys.CancelEventArgs",Sys.EventArgs);Type.registerNamespace("Sys.UI");Sys._Debug=function(){};Sys._Debug.prototype={_appendConsole:function(a){if(typeof Debug!=="undefined"&&Debug.writeln)Debug.writeln(a);if(window.console&&window.console.log)window.console.log(a);if(window.opera)window.opera.postError(a);if(window.debugService)window.debugService.trace(a)},_appendTrace:function(b){var a=document.getElementById("TraceConsole");if(a&&a.tagName.toUpperCase()==="TEXTAREA")a.value+=b+"\n"},assert:function(c,a,b){if(!c){a=b&&this.assert.caller?String.format(Sys.Res.assertFailedCaller,a,this.assert.caller):String.format(Sys.Res.assertFailed,a);if(confirm(String.format(Sys.Res.breakIntoDebugger,a)))this.fail(a)}},clearTrace:function(){var a=document.getElementById("TraceConsole");if(a&&a.tagName.toUpperCase()==="TEXTAREA")a.value=""},fail:function(message){this._appendConsole(message);if(Sys.Browser.hasDebuggerStatement)eval("debugger")},trace:function(a){this._appendConsole(a);this._appendTrace(a)},traceDump:function(a,b){var c=this._traceDump(a,b,true)},_traceDump:function(a,c,f,b,d){c=c?c:"traceDump";b=b?b:"";if(a===null){this.trace(b+c+": null");return}switch(typeof a){case "undefined":this.trace(b+c+": Undefined");break;case "number":case "string":case "boolean":this.trace(b+c+": "+a);break;default:if(Date.isInstanceOfType(a)||RegExp.isInstanceOfType(a)){this.trace(b+c+": "+a.toString());break}if(!d)d=[];else if(Array.contains(d,a)){this.trace(b+c+": ...");return}Array.add(d,a);if(a==window||a===document||window.HTMLElement&&a instanceof HTMLElement||typeof a.nodeName==="string"){var k=a.tagName?a.tagName:"DomElement";if(a.id)k+=" - "+a.id;this.trace(b+c+" {"+k+"}")}else{var i=Object.getTypeName(a);this.trace(b+c+(typeof i==="string"?" {"+i+"}":""));if(b===""||f){b+=" ";var e,j,l,g,h;if(Array.isInstanceOfType(a)){j=a.length;for(e=0;e=0;d--){var k=h[d].trim();b=a[k];if(typeof b!=="number")throw Error.argument("value",String.format(Sys.Res.enumInvalidValue,c.split(",")[d].trim(),this.__typeName));j|=b}return j}}function Sys$Enum$toString(c){if(typeof c==="undefined"||c===null)return this.__string;var d=this.prototype,a;if(!this.__flags||c===0){for(a in d)if(d[a]===c)return a}else{var b=this.__sortedValues;if(!b){b=[];for(a in d)b[b.length]={key:a,value:d[a]};b.sort(function(a,b){return a.value-b.value});this.__sortedValues=b}var e=[],g=c;for(a=b.length-1;a>=0;a--){var h=b[a],f=h.value;if(f===0)continue;if((f&c)===f){e[e.length]=h.key;g-=f;if(g===0)break}}if(e.length&&g===0)return e.reverse().join(", ")}return ""}Type.prototype.registerEnum=function(b,c){Sys.__upperCaseTypes[b.toUpperCase()]=this;for(var a in this.prototype)this[a]=this.prototype[a];this.__typeName=b;this.parse=Sys$Enum$parse;this.__string=this.toString();this.toString=Sys$Enum$toString;this.__flags=c;this.__enum=true};Type.isEnum=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__enum};Type.isFlags=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__flags};Sys.CollectionChange=function(e,a,c,b,d){this.action=e;if(a)if(!(a instanceof Array))a=[a];this.newItems=a||null;if(typeof c!=="number")c=-1;this.newStartingIndex=c;if(b)if(!(b instanceof Array))b=[b];this.oldItems=b||null;if(typeof d!=="number")d=-1;this.oldStartingIndex=d};Sys.CollectionChange.registerClass("Sys.CollectionChange");Sys.NotifyCollectionChangedAction=function(){throw Error.notImplemented()};Sys.NotifyCollectionChangedAction.prototype={add:0,remove:1,reset:2};Sys.NotifyCollectionChangedAction.registerEnum("Sys.NotifyCollectionChangedAction");Sys.NotifyCollectionChangedEventArgs=function(a){this._changes=a;Sys.NotifyCollectionChangedEventArgs.initializeBase(this)};Sys.NotifyCollectionChangedEventArgs.prototype={get_changes:function(){return this._changes||[]}};Sys.NotifyCollectionChangedEventArgs.registerClass("Sys.NotifyCollectionChangedEventArgs",Sys.EventArgs);Sys.Observer=function(){};Sys.Observer.registerClass("Sys.Observer");Sys.Observer.makeObservable=function(a){var c=a instanceof Array,b=Sys.Observer;if(a.setValue===b._observeMethods.setValue)return a;b._addMethods(a,b._observeMethods);if(c)b._addMethods(a,b._arrayMethods);return a};Sys.Observer._addMethods=function(c,b){for(var a in b)c[a]=b[a]};Sys.Observer._addEventHandler=function(c,a,b){Sys.Observer._getContext(c,true).events._addHandler(a,b)};Sys.Observer.addEventHandler=function(c,a,b){Sys.Observer._addEventHandler(c,a,b)};Sys.Observer._removeEventHandler=function(c,a,b){Sys.Observer._getContext(c,true).events._removeHandler(a,b)};Sys.Observer.removeEventHandler=function(c,a,b){Sys.Observer._removeEventHandler(c,a,b)};Sys.Observer.raiseEvent=function(b,e,d){var c=Sys.Observer._getContext(b);if(!c)return;var a=c.events.getHandler(e);if(a)a(b,d)};Sys.Observer.addPropertyChanged=function(b,a){Sys.Observer._addEventHandler(b,"propertyChanged",a)};Sys.Observer.removePropertyChanged=function(b,a){Sys.Observer._removeEventHandler(b,"propertyChanged",a)};Sys.Observer.beginUpdate=function(a){Sys.Observer._getContext(a,true).updating=true};Sys.Observer.endUpdate=function(b){var a=Sys.Observer._getContext(b);if(!a||!a.updating)return;a.updating=false;var d=a.dirty;a.dirty=false;if(d){if(b instanceof Array){var c=a.changes;a.changes=null;Sys.Observer.raiseCollectionChanged(b,c)}Sys.Observer.raisePropertyChanged(b,"")}};Sys.Observer.isUpdating=function(b){var a=Sys.Observer._getContext(b);return a?a.updating:false};Sys.Observer._setValue=function(a,j,g){var b,f,k=a,d=j.split(".");for(var i=0,m=d.length-1;i-1&&ac.Calendar.TwoDigitYearMax)a-=100}return a};Date._getEra=function(e,c){if(!c)return 0;var b,d=e.getTime();for(var a=0,f=c.length;a=b)return a}return 0};Date._getEraYear=function(d,b,e,c){var a=d.getFullYear();if(!c&&b.eras)a-=b.eras[e+3];return a};Date._getParseRegExp=function(b,e){if(!b._parseRegExp)b._parseRegExp={};else if(b._parseRegExp[e])return b._parseRegExp[e];var c=Date._expandFormat(b,e);c=c.replace(/([\^\$\.\*\+\?\|\[\]\(\)\{\}])/g,"\\\\$1");var a=new Sys.StringBuilder("^"),j=[],f=0,i=0,h=Date._getTokenRegExp(),d;while((d=h.exec(c))!==null){var l=c.slice(f,d.index);f=h.lastIndex;i+=Date._appendPreOrPostMatch(l,a);if(i%2===1){a.append(d[0]);continue}switch(d[0]){case "dddd":case "ddd":case "MMMM":case "MMM":case "gg":case "g":a.append("(\\D+)");break;case "tt":case "t":a.append("(\\D*)");break;case "yyyy":a.append("(\\d{4})");break;case "fff":a.append("(\\d{3})");break;case "ff":a.append("(\\d{2})");break;case "f":a.append("(\\d)");break;case "dd":case "d":case "MM":case "M":case "yy":case "y":case "HH":case "H":case "hh":case "h":case "mm":case "m":case "ss":case "s":a.append("(\\d\\d?)");break;case "zzz":a.append("([+-]?\\d\\d?:\\d{2})");break;case "zz":case "z":a.append("([+-]?\\d\\d?)");break;case "/":a.append("(\\"+b.DateSeparator+")")}Array.add(j,d[0])}Date._appendPreOrPostMatch(c.slice(f),a);a.append("$");var k=a.toString().replace(/\s+/g,"\\s+"),g={"regExp":k,"groups":j};b._parseRegExp[e]=g;return g};Date._getTokenRegExp=function(){return /\/|dddd|ddd|dd|d|MMMM|MMM|MM|M|yyyy|yy|y|hh|h|HH|H|mm|m|ss|s|tt|t|fff|ff|f|zzz|zz|z|gg|g/g};Date.parseLocale=function(a){return Date._parse(a,Sys.CultureInfo.CurrentCulture,arguments)};Date.parseInvariant=function(a){return Date._parse(a,Sys.CultureInfo.InvariantCulture,arguments)};Date._parse=function(h,d,i){var a,c,b,f,e,g=false;for(a=1,c=i.length;a31)return null;break;case "MMMM":c=k._getMonthIndex(a);if(c<0||c>11)return null;break;case "MMM":c=k._getAbbrMonthIndex(a);if(c<0||c>11)return null;break;case "M":case "MM":c=parseInt(a,10)-1;if(c<0||c>11)return null;break;case "y":case "yy":e=Date._expandYear(g,parseInt(a,10));if(e<0||e>9999)return null;break;case "yyyy":e=parseInt(a,10);if(e<0||e>9999)return null;break;case "h":case "hh":d=parseInt(a,10);if(d===12)d=0;if(d<0||d>11)return null;break;case "H":case "HH":d=parseInt(a,10);if(d<0||d>23)return null;break;case "m":case "mm":q=parseInt(a,10);if(q<0||q>59)return null;break;case "s":case "ss":r=parseInt(a,10);if(r<0||r>59)return null;break;case "tt":case "t":var z=a.toUpperCase();v=z===g.PMDesignator.toUpperCase();if(!v&&z!==g.AMDesignator.toUpperCase())return null;break;case "f":f=parseInt(a,10)*100;if(f<0||f>999)return null;break;case "ff":f=parseInt(a,10)*10;if(f<0||f>999)return null;break;case "fff":f=parseInt(a,10);if(f<0||f>999)return null;break;case "dddd":i=k._getDayIndex(a);if(i<0||i>6)return null;break;case "ddd":i=k._getAbbrDayIndex(a);if(i<0||i>6)return null;break;case "zzz":var u=a.split(/:/);if(u.length!==2)return null;h=parseInt(u[0],10);if(h<-12||h>13)return null;var o=parseInt(u[1],10);if(o<0||o>59)return null;n=h*60+(a.startsWith("-")?-o:o);break;case "z":case "zz":h=parseInt(a,10);if(h<-12||h>13)return null;n=h*60;break;case "g":case "gg":var p=a;if(!p||!g.eras)return null;p=p.toLowerCase().trim();for(var s=0,F=g.eras.length;s0)return this.toLocaleString();else return this.toString();var o=["n %","n%","%n"],n=["-n %","-n%","-%n"],p=["(n)","-n","- n","n-","n -"],m=["$n","n$","$ n","n $"],l=["($n)","-$n","$-n","$n-","(n$)","-n$","n-$","n$-","-n $","-$ n","n $-","$ n-","$ -n","n- $","($ n)","(n $)"];function g(a,c,d){for(var b=a.length;b1?parseInt(e[1]):0;e=b.split(".");b=e[0];a=e.length>1?e[1]:"";var q;if(c>0){a=g(a,c,false);b+=a.slice(0,c);a=a.substr(c)}else if(c<0){c=-c;b=g(b,c+1,true);a=b.slice(-c,b.length)+a;b=b.slice(0,-c)}if(i>0){if(a.length>i)a=a.slice(0,i);else a=g(a,i,false);a=p+a}else a="";var d=b.length-1,f="";while(d>=0){if(h===0||h>d)if(f.length>0)return b.slice(0,d+1)+n+f+a;else return b.slice(0,d+1)+a;if(f.length>0)f=b.slice(d-h+1,d+1)+n+f;else f=b.slice(d-h+1,d+1);d-=h;if(k1)b=parseInt(e.slice(1),10);var c;switch(e.charAt(0)){case "d":case "D":c="n";if(b!==-1)d=g(""+d,b,true);if(this<0)d=-d;break;case "c":case "C":if(this<0)c=l[a.CurrencyNegativePattern];else c=m[a.CurrencyPositivePattern];if(b===-1)b=a.CurrencyDecimalDigits;d=i(Math.abs(this),b,a.CurrencyGroupSizes,a.CurrencyGroupSeparator,a.CurrencyDecimalSeparator);break;case "n":case "N":if(this<0)c=p[a.NumberNegativePattern];else c="n";if(b===-1)b=a.NumberDecimalDigits;d=i(Math.abs(this),b,a.NumberGroupSizes,a.NumberGroupSeparator,a.NumberDecimalSeparator);break;case "p":case "P":if(this<0)c=n[a.PercentNegativePattern];else c=o[a.PercentPositivePattern];if(b===-1)b=a.PercentDecimalDigits;d=i(Math.abs(this)*100,b,a.PercentGroupSizes,a.PercentGroupSeparator,a.PercentDecimalSeparator);break;default:throw Error.format(Sys.Res.formatBadFormatSpecifier)}var k=/n|\$|-|%/g,f="";for(;true;){var q=k.lastIndex,h=k.exec(c);f+=c.slice(q,h?h.index:c.length);if(!h)break;switch(h[0]){case "n":f+=d;break;case "$":f+=a.CurrencySymbol;break;case "-":if(/[1-9]/.test(d))f+=a.NegativeSign;break;case "%":f+=a.PercentSymbol}}return f};Sys.CultureInfo=function(c,b,a){this.name=c;this.numberFormat=b;this.dateTimeFormat=a};Sys.CultureInfo.prototype={_getDateTimeFormats:function(){if(!this._dateTimeFormats){var a=this.dateTimeFormat;this._dateTimeFormats=[a.MonthDayPattern,a.YearMonthPattern,a.ShortDatePattern,a.ShortTimePattern,a.LongDatePattern,a.LongTimePattern,a.FullDateTimePattern,a.RFC1123Pattern,a.SortableDateTimePattern,a.UniversalSortableDateTimePattern]}return this._dateTimeFormats},_getIndex:function(c,d,e){var b=this._toUpper(c),a=Array.indexOf(d,b);if(a===-1)a=Array.indexOf(e,b);return a},_getMonthIndex:function(a){if(!this._upperMonths){this._upperMonths=this._toUpperArray(this.dateTimeFormat.MonthNames);this._upperMonthsGenitive=this._toUpperArray(this.dateTimeFormat.MonthGenitiveNames)}return this._getIndex(a,this._upperMonths,this._upperMonthsGenitive)},_getAbbrMonthIndex:function(a){if(!this._upperAbbrMonths){this._upperAbbrMonths=this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);this._upperAbbrMonthsGenitive=this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthGenitiveNames)}return this._getIndex(a,this._upperAbbrMonths,this._upperAbbrMonthsGenitive)},_getDayIndex:function(a){if(!this._upperDays)this._upperDays=this._toUpperArray(this.dateTimeFormat.DayNames);return Array.indexOf(this._upperDays,this._toUpper(a))},_getAbbrDayIndex:function(a){if(!this._upperAbbrDays)this._upperAbbrDays=this._toUpperArray(this.dateTimeFormat.AbbreviatedDayNames);return Array.indexOf(this._upperAbbrDays,this._toUpper(a))},_toUpperArray:function(c){var b=[];for(var a=0,d=c.length;a0)a.append(",");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b[c],a,false,g)}a.append("]")}else{if(Date.isInstanceOfType(b)){a.append('"\\/Date(');a.append(b.getTime());a.append(')\\/"');break}var d=[],f=0;for(var e in b){if(e.startsWith("$"))continue;if(e===Sys.Serialization.JavaScriptSerializer._serverTypeFieldName&&f!==0){d[f++]=d[0];d[0]=e}else d[f++]=e}if(i)d.sort();a.append("{");var j=false;for(c=0;c=0;c--){var f=d[c];if(!g||f.autoRemove)$removeHandler(a,b,f.handler)}}a._events=null}};Sys.UI.DomEvent._disposeHandlers=function(){Sys.UI.DomEvent._clearHandlers(this,true);var b=this._chainDispose,a=typeof b;if(a!=="undefined"){this.dispose=b;this._chainDispose=null;if(a==="function")this.dispose()}};var $removeHandler=Sys.UI.DomEvent.removeHandler=function(b,a,c){Sys.UI.DomEvent._removeHandler(b,a,c)};Sys.UI.DomEvent._removeHandler=function(a,e,f){var d=null,c=a._events[e];for(var b=0,g=c.length;b=3){d+=parseInt(b.borderLeftWidth);e+=parseInt(b.borderTopWidth)}}b=Sys.UI.DomElement._getCurrentStyle(c);var h=b?b.position:null;if(!h||h!=="absolute")for(a=c.parentNode;a;a=a.parentNode){f=a.tagName?a.tagName.toUpperCase():null;if(f!=="BODY"&&f!=="HTML"&&(a.scrollLeft||a.scrollTop)){d-=a.scrollLeft||0;e-=a.scrollTop||0}b=Sys.UI.DomElement._getCurrentStyle(a);var i=b?b.position:null;if(i&&i==="absolute")break}return new Sys.UI.Point(d,e)};else Sys.UI.DomElement.getLocation=function(d){if(d.window&&d.window===d||d.nodeType===9)return new Sys.UI.Point(0,0);var e=0,f=0,a,i=null,g=null,b=null;for(a=d;a;i=a,(g=b,a=a.offsetParent)){var c=a.tagName?a.tagName.toUpperCase():null;b=Sys.UI.DomElement._getCurrentStyle(a);if((a.offsetLeft||a.offsetTop)&&!(c==="BODY"&&(!g||g.position!=="absolute"))){e+=a.offsetLeft;f+=a.offsetTop}if(i!==null&&b){if(c!=="TABLE"&&c!=="TD"&&c!=="HTML"){e+=parseInt(b.borderLeftWidth)||0;f+=parseInt(b.borderTopWidth)||0}if(c==="TABLE"&&(b.position==="relative"||b.position==="absolute")){e+=parseInt(b.marginLeft)||0;f+=parseInt(b.marginTop)||0}}}b=Sys.UI.DomElement._getCurrentStyle(d);var h=b?b.position:null;if(!h||h!=="absolute")for(a=d.parentNode;a;a=a.parentNode){c=a.tagName?a.tagName.toUpperCase():null;if(c!=="BODY"&&c!=="HTML"&&(a.scrollLeft||a.scrollTop)){e-=a.scrollLeft||0;f-=a.scrollTop||0;b=Sys.UI.DomElement._getCurrentStyle(a);if(b){e+=parseInt(b.borderLeftWidth)||0;f+=parseInt(b.borderTopWidth)||0}}}return new Sys.UI.Point(e,f)};Sys.UI.DomElement.isDomElement=function(a){return Sys._isDomElement(a)};Sys.UI.DomElement.removeCssClass=function(d,c){var a=" "+d.className+" ",b=a.indexOf(" "+c+" ");if(b>=0)d.className=(a.substr(0,b)+" "+a.substring(b+c.length+1,a.length)).trim()};Sys.UI.DomElement.resolveElement=function(b,c){var a=b;if(!a)return null;if(typeof a==="string")a=Sys.UI.DomElement.getElementById(a,c);return a};Sys.UI.DomElement.raiseBubbleEvent=function(c,d){var b=c;while(b){var a=b.control;if(a&&a.onBubbleEvent&&a.raiseBubbleEvent){Sys.UI.DomElement._raiseBubbleEventFromControl(a,c,d);return}b=b.parentNode}};Sys.UI.DomElement._raiseBubbleEventFromControl=function(a,b,c){if(!a.onBubbleEvent(b,c))a._raiseBubbleEvent(b,c)};Sys.UI.DomElement.setLocation=function(b,c,d){var a=b.style;a.position="absolute";a.left=c+"px";a.top=d+"px"};Sys.UI.DomElement.toggleCssClass=function(b,a){if(Sys.UI.DomElement.containsCssClass(b,a))Sys.UI.DomElement.removeCssClass(b,a);else Sys.UI.DomElement.addCssClass(b,a)};Sys.UI.DomElement.getVisibilityMode=function(a){return a._visibilityMode===Sys.UI.VisibilityMode.hide?Sys.UI.VisibilityMode.hide:Sys.UI.VisibilityMode.collapse};Sys.UI.DomElement.setVisibilityMode=function(a,b){Sys.UI.DomElement._ensureOldDisplayMode(a);if(a._visibilityMode!==b){a._visibilityMode=b;if(Sys.UI.DomElement.getVisible(a)===false)if(a._visibilityMode===Sys.UI.VisibilityMode.hide)a.style.display=a._oldDisplayMode;else a.style.display="none";a._visibilityMode=b}};Sys.UI.DomElement.getVisible=function(b){var a=b.currentStyle||Sys.UI.DomElement._getCurrentStyle(b);if(!a)return true;return a.visibility!=="hidden"&&a.display!=="none"};Sys.UI.DomElement.setVisible=function(a,b){if(b!==Sys.UI.DomElement.getVisible(a)){Sys.UI.DomElement._ensureOldDisplayMode(a);a.style.visibility=b?"visible":"hidden";if(b||a._visibilityMode===Sys.UI.VisibilityMode.hide)a.style.display=a._oldDisplayMode;else a.style.display="none"}};Sys.UI.DomElement._ensureOldDisplayMode=function(a){if(!a._oldDisplayMode){var b=a.currentStyle||Sys.UI.DomElement._getCurrentStyle(a);a._oldDisplayMode=b?b.display:null;if(!a._oldDisplayMode||a._oldDisplayMode==="none")switch(a.tagName.toUpperCase()){case "DIV":case "P":case "ADDRESS":case "BLOCKQUOTE":case "BODY":case "COL":case "COLGROUP":case "DD":case "DL":case "DT":case "FIELDSET":case "FORM":case "H1":case "H2":case "H3":case "H4":case "H5":case "H6":case "HR":case "IFRAME":case "LEGEND":case "OL":case "PRE":case "TABLE":case "TD":case "TH":case "TR":case "UL":a._oldDisplayMode="block";break;case "LI":a._oldDisplayMode="list-item";break;default:a._oldDisplayMode="inline"}}};Sys.UI.DomElement._getWindow=function(a){var b=a.ownerDocument||a.document||a;return b.defaultView||b.parentWindow};Sys.UI.DomElement._getCurrentStyle=function(a){if(a.nodeType===3)return null;var c=Sys.UI.DomElement._getWindow(a);if(a.documentElement)a=a.documentElement;var b=c&&a!==c&&c.getComputedStyle?c.getComputedStyle(a,null):a.currentStyle||a.style;if(!b&&Sys.Browser.agent===Sys.Browser.Safari&&a.style){var g=a.style.display,f=a.style.position;a.style.position="absolute";a.style.display="block";var e=c.getComputedStyle(a,null);a.style.display=g;a.style.position=f;b={};for(var d in e)b[d]=e[d];b.display="none"}return b};Sys.IContainer=function(){};Sys.IContainer.prototype={};Sys.IContainer.registerInterface("Sys.IContainer");Sys.ApplicationLoadEventArgs=function(b,a){Sys.ApplicationLoadEventArgs.initializeBase(this);this._components=b;this._isPartialLoad=a};Sys.ApplicationLoadEventArgs.prototype={get_components:function(){return this._components},get_isPartialLoad:function(){return this._isPartialLoad}};Sys.ApplicationLoadEventArgs.registerClass("Sys.ApplicationLoadEventArgs",Sys.EventArgs);Sys._Application=function(){Sys._Application.initializeBase(this);this._disposableObjects=[];this._components={};this._createdComponents=[];this._secondPassComponents=[];this._unloadHandlerDelegate=Function.createDelegate(this,this._unloadHandler);Sys.UI.DomEvent.addHandler(window,"unload",this._unloadHandlerDelegate);this._domReady()};Sys._Application.prototype={_creatingComponents:false,_disposing:false,_deleteCount:0,get_isCreatingComponents:function(){return this._creatingComponents},get_isDisposing:function(){return this._disposing},add_init:function(a){if(this._initialized)a(this,Sys.EventArgs.Empty);else this.get_events().addHandler("init",a)},remove_init:function(a){this.get_events().removeHandler("init",a)},add_load:function(a){this.get_events().addHandler("load",a)},remove_load:function(a){this.get_events().removeHandler("load",a)},add_unload:function(a){this.get_events().addHandler("unload",a)},remove_unload:function(a){this.get_events().removeHandler("unload",a)},addComponent:function(a){this._components[a.get_id()]=a},beginCreateComponents:function(){this._creatingComponents=true},dispose:function(){if(!this._disposing){this._disposing=true;if(this._timerCookie){window.clearTimeout(this._timerCookie);delete this._timerCookie}if(this._endRequestHandler){Sys.WebForms.PageRequestManager.getInstance().remove_endRequest(this._endRequestHandler);delete this._endRequestHandler}if(this._beginRequestHandler){Sys.WebForms.PageRequestManager.getInstance().remove_beginRequest(this._beginRequestHandler);delete this._beginRequestHandler}if(window.pageUnload)window.pageUnload(this,Sys.EventArgs.Empty);var c=this.get_events().getHandler("unload");if(c)c(this,Sys.EventArgs.Empty);var b=Array.clone(this._disposableObjects);for(var a=0,f=b.length;a=0;b--)this._disposeElementInternal(c[b]);if(!d)this._disposeElementInternal(a)}},endCreateComponents:function(){var b=this._secondPassComponents;for(var a=0,d=b.length;a1000){var c=[];for(var d=0,f=b.length;d=0;b--){var c=a[b];if(typeof c.dispose==="function")c.dispose()}},_disposeElementInternal:function(a){var d=a.dispose;if(d&&typeof d==="function")a.dispose();else{var c=a.control;if(c&&typeof c.dispose==="function")c.dispose()}var b=a._behaviors;if(b)this._disposeComponents(b);b=a._components;if(b){this._disposeComponents(b);a._components=null}},_domReady:function(){var a,g,f=this;function b(){f.initialize()}var c=function(){Sys.UI.DomEvent.removeHandler(window,"load",c);b()};Sys.UI.DomEvent.addHandler(window,"load",c);if(document.addEventListener)try{document.addEventListener("DOMContentLoaded",a=function(){document.removeEventListener("DOMContentLoaded",a,false);b()},false)}catch(h){}else if(document.attachEvent)if(window==window.top&&document.documentElement.doScroll){var e,d=document.createElement("div");a=function(){try{d.doScroll("left")}catch(c){e=window.setTimeout(a,0);return}d=null;b()};a()}else document.attachEvent("onreadystatechange",a=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",a);b()}})},_raiseInit:function(){var a=this.get_events().getHandler("init");if(a){this.beginCreateComponents();a(this,Sys.EventArgs.Empty);this.endCreateComponents()}},_unloadHandler:function(){this.dispose()}};Sys._Application.registerClass("Sys._Application",Sys.Component,Sys.IContainer);Sys.Application=new Sys._Application;var $find=Sys.Application.findComponent;Sys.UI.Behavior=function(b){Sys.UI.Behavior.initializeBase(this);this._element=b;var a=b._behaviors;if(!a)b._behaviors=[this];else a[a.length]=this};Sys.UI.Behavior.prototype={_name:null,get_element:function(){return this._element},get_id:function(){var a=Sys.UI.Behavior.callBaseMethod(this,"get_id");if(a)return a;if(!this._element||!this._element.id)return "";return this._element.id+"$"+this.get_name()},get_name:function(){if(this._name)return this._name;var a=Object.getTypeName(this),b=a.lastIndexOf(".");if(b!==-1)a=a.substr(b+1);if(!this.get_isInitialized())this._name=a;return a},set_name:function(a){this._name=a},initialize:function(){Sys.UI.Behavior.callBaseMethod(this,"initialize");var a=this.get_name();if(a)this._element[a]=this},dispose:function(){Sys.UI.Behavior.callBaseMethod(this,"dispose");var a=this._element;if(a){var c=this.get_name();if(c)a[c]=null;var b=a._behaviors;Array.remove(b,this);if(b.length===0)a._behaviors=null;delete this._element}}};Sys.UI.Behavior.registerClass("Sys.UI.Behavior",Sys.Component);Sys.UI.Behavior.getBehaviorByName=function(b,c){var a=b[c];return a&&Sys.UI.Behavior.isInstanceOfType(a)?a:null};Sys.UI.Behavior.getBehaviors=function(a){if(!a._behaviors)return [];return Array.clone(a._behaviors)};Sys.UI.Behavior.getBehaviorsByType=function(d,e){var a=d._behaviors,c=[];if(a)for(var b=0,f=a.length;b0&&a.charAt(0)==="#")a=a.substring(1);return a};Sys._Application.prototype.get_enableHistory=function(){return this._enableHistory};Sys._Application.prototype.set_enableHistory=function(a){this._enableHistory=a};Sys._Application.prototype.add_navigate=function(a){this.get_events().addHandler("navigate",a)};Sys._Application.prototype.remove_navigate=function(a){this.get_events().removeHandler("navigate",a)};Sys._Application.prototype.addHistoryPoint=function(c,f){this._ensureHistory();var b=this._state;for(var a in c){var d=c[a];if(d===null){if(typeof b[a]!=="undefined")delete b[a]}else b[a]=d}var e=this._serializeState(b);this._historyPointIsNew=true;this._setState(e,f);this._raiseNavigate()};Sys._Application.prototype.setServerId=function(a,b){this._clientId=a;this._uniqueId=b};Sys._Application.prototype.setServerState=function(a){this._ensureHistory();this._state.__s=a;this._updateHiddenField(a)};Sys._Application.prototype._deserializeState=function(a){var e={};a=a||"";var b=a.indexOf("&&");if(b!==-1&&b+2'");c.write(""+(b||document.title)+"parent.Sys.Application._onIFrameLoad('+Sys.Serialization.JavaScriptSerializer.serialize(a)+");");c.close()}this._ignoreTimer=false;this._currentEntry=a;if(this._historyFrame||this._historyPointIsNew){var f=this.get_stateString();if(a!==f){window.location.hash=a;this._currentEntry=this.get_stateString();if(typeof b!=="undefined"&&b!==null)document.title=b}}this._historyPointIsNew=false}}};Sys._Application.prototype._updateHiddenField=function(b){if(this._clientId){var a=document.getElementById(this._clientId);if(a)a.value=b}};if(!window.XMLHttpRequest)window.XMLHttpRequest=function(){var b=["Msxml2.XMLHTTP.3.0","Msxml2.XMLHTTP"];for(var a=0,c=b.length;a0)this._timer=window.setTimeout(Function.createDelegate(this,this._onTimeout),d);this._xmlHttpRequest.send(c);this._started=true},getResponseHeader:function(b){var a;try{a=this._xmlHttpRequest.getResponseHeader(b)}catch(c){}if(!a)a="";return a},getAllResponseHeaders:function(){return this._xmlHttpRequest.getAllResponseHeaders()},get_responseData:function(){return this._xmlHttpRequest.responseText},get_statusCode:function(){var a=0;try{a=this._xmlHttpRequest.status}catch(b){}return a},get_statusText:function(){return this._xmlHttpRequest.statusText},get_xml:function(){var a=this._xmlHttpRequest.responseXML;if(!a||!a.documentElement){a=Sys.Net.XMLDOM(this._xmlHttpRequest.responseText);if(!a||!a.documentElement)return null}else if(navigator.userAgent.indexOf("MSIE")!==-1)a.setProperty("SelectionLanguage","XPath");if(a.documentElement.namespaceURI==="http://www.mozilla.org/newlayout/xml/parsererror.xml"&&a.documentElement.tagName==="parsererror")return null;if(a.documentElement.firstChild&&a.documentElement.firstChild.tagName==="parsererror")return null;return a},abort:function(){if(this._aborted||this._responseAvailable||this._timedOut)return;this._aborted=true;this._clearTimer();if(this._xmlHttpRequest&&!this._responseAvailable){this._xmlHttpRequest.onreadystatechange=Function.emptyMethod;this._xmlHttpRequest.abort();this._xmlHttpRequest=null;this._webRequest.completed(Sys.EventArgs.Empty)}}};Sys.Net.XMLHttpExecutor.registerClass("Sys.Net.XMLHttpExecutor",Sys.Net.WebRequestExecutor);Sys.Net._WebRequestManager=function(){this._defaultTimeout=0;this._defaultExecutorType="Sys.Net.XMLHttpExecutor"};Sys.Net._WebRequestManager.prototype={add_invokingRequest:function(a){this._get_eventHandlerList().addHandler("invokingRequest",a)},remove_invokingRequest:function(a){this._get_eventHandlerList().removeHandler("invokingRequest",a)},add_completedRequest:function(a){this._get_eventHandlerList().addHandler("completedRequest",a)},remove_completedRequest:function(a){this._get_eventHandlerList().removeHandler("completedRequest",a)},_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_defaultTimeout:function(){return this._defaultTimeout},set_defaultTimeout:function(a){this._defaultTimeout=a},get_defaultExecutorType:function(){return this._defaultExecutorType},set_defaultExecutorType:function(a){this._defaultExecutorType=a},executeRequest:function(webRequest){var executor=webRequest.get_executor();if(!executor){var failed=false;try{var executorType=eval(this._defaultExecutorType);executor=new executorType}catch(a){failed=true}webRequest.set_executor(executor)}if(executor.get_aborted())return;var evArgs=new Sys.Net.NetworkRequestEventArgs(webRequest),handler=this._get_eventHandlerList().getHandler("invokingRequest");if(handler)handler(this,evArgs);if(!evArgs.get_cancel())executor.executeRequest()}};Sys.Net._WebRequestManager.registerClass("Sys.Net._WebRequestManager");Sys.Net.WebRequestManager=new Sys.Net._WebRequestManager;Sys.Net.NetworkRequestEventArgs=function(a){Sys.Net.NetworkRequestEventArgs.initializeBase(this);this._webRequest=a};Sys.Net.NetworkRequestEventArgs.prototype={get_webRequest:function(){return this._webRequest}};Sys.Net.NetworkRequestEventArgs.registerClass("Sys.Net.NetworkRequestEventArgs",Sys.CancelEventArgs);Sys.Net.WebRequest=function(){this._url="";this._headers={};this._body=null;this._userContext=null;this._httpVerb=null;this._executor=null;this._invokeCalled=false;this._timeout=0};Sys.Net.WebRequest.prototype={add_completed:function(a){this._get_eventHandlerList().addHandler("completed",a)},remove_completed:function(a){this._get_eventHandlerList().removeHandler("completed",a)},completed:function(b){var a=Sys.Net.WebRequestManager._get_eventHandlerList().getHandler("completedRequest");if(a)a(this._executor,b);a=this._get_eventHandlerList().getHandler("completed");if(a)a(this._executor,b)},_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_url:function(){return this._url},set_url:function(a){this._url=a},get_headers:function(){return this._headers},get_httpVerb:function(){if(this._httpVerb===null){if(this._body===null)return "GET";return "POST"}return this._httpVerb},set_httpVerb:function(a){this._httpVerb=a},get_body:function(){return this._body},set_body:function(a){this._body=a},get_userContext:function(){return this._userContext},set_userContext:function(a){this._userContext=a},get_executor:function(){return this._executor},set_executor:function(a){this._executor=a;this._executor._set_webRequest(this)},get_timeout:function(){if(this._timeout===0)return Sys.Net.WebRequestManager.get_defaultTimeout();return this._timeout},set_timeout:function(a){this._timeout=a},getResolvedUrl:function(){return Sys.Net.WebRequest._resolveUrl(this._url)},invoke:function(){Sys.Net.WebRequestManager.executeRequest(this);this._invokeCalled=true}};Sys.Net.WebRequest._resolveUrl=function(b,a){if(b&&b.indexOf("://")!==-1)return b;if(!a||a.length===0){var d=document.getElementsByTagName("base")[0];if(d&&d.href&&d.href.length>0)a=d.href;else a=document.URL}var c=a.indexOf("?");if(c!==-1)a=a.substr(0,c);c=a.indexOf("#");if(c!==-1)a=a.substr(0,c);a=a.substr(0,a.lastIndexOf("/")+1);if(!b||b.length===0)return a;if(b.charAt(0)==="/"){var e=a.indexOf("://"),g=a.indexOf("/",e+3);return a.substr(0,g)+b}else{var f=a.lastIndexOf("/");return a.substr(0,f+1)+b}};Sys.Net.WebRequest._createQueryString=function(c,b,f){b=b||encodeURIComponent;var h=0,e,g,d,a=new Sys.StringBuilder;if(c)for(d in c){e=c[d];if(typeof e==="function")continue;g=Sys.Serialization.JavaScriptSerializer.serialize(e);if(h++)a.append("&");a.append(d);a.append("=");a.append(b(g))}if(f){if(h)a.append("&");a.append(f)}return a.toString()};Sys.Net.WebRequest._createUrl=function(a,b,c){if(!b&&!c)return a;var d=Sys.Net.WebRequest._createQueryString(b,null,c);return d.length?a+(a&&a.indexOf("?")>=0?"&":"?")+d:a};Sys.Net.WebRequest.registerClass("Sys.Net.WebRequest");Sys._ScriptLoaderTask=function(b,a){this._scriptElement=b;this._completedCallback=a};Sys._ScriptLoaderTask.prototype={get_scriptElement:function(){return this._scriptElement},dispose:function(){if(this._disposed)return;this._disposed=true;this._removeScriptElementHandlers();Sys._ScriptLoaderTask._clearScript(this._scriptElement);this._scriptElement=null},execute:function(){this._addScriptElementHandlers();document.getElementsByTagName("head")[0].appendChild(this._scriptElement)},_addScriptElementHandlers:function(){this._scriptLoadDelegate=Function.createDelegate(this,this._scriptLoadHandler);if(Sys.Browser.agent!==Sys.Browser.InternetExplorer){this._scriptElement.readyState="loaded";$addHandler(this._scriptElement,"load",this._scriptLoadDelegate)}else $addHandler(this._scriptElement,"readystatechange",this._scriptLoadDelegate);if(this._scriptElement.addEventListener){this._scriptErrorDelegate=Function.createDelegate(this,this._scriptErrorHandler);this._scriptElement.addEventListener("error",this._scriptErrorDelegate,false)}},_removeScriptElementHandlers:function(){if(this._scriptLoadDelegate){var a=this.get_scriptElement();if(Sys.Browser.agent!==Sys.Browser.InternetExplorer)$removeHandler(a,"load",this._scriptLoadDelegate);else $removeHandler(a,"readystatechange",this._scriptLoadDelegate);if(this._scriptErrorDelegate){this._scriptElement.removeEventListener("error",this._scriptErrorDelegate,false);this._scriptErrorDelegate=null}this._scriptLoadDelegate=null}},_scriptErrorHandler:function(){if(this._disposed)return;this._completedCallback(this.get_scriptElement(),false)},_scriptLoadHandler:function(){if(this._disposed)return;var a=this.get_scriptElement();if(a.readyState!=="loaded"&&a.readyState!=="complete")return;this._completedCallback(a,true)}};Sys._ScriptLoaderTask.registerClass("Sys._ScriptLoaderTask",null,Sys.IDisposable);Sys._ScriptLoaderTask._clearScript=function(a){if(!Sys.Debug.isDebug)a.parentNode.removeChild(a)};Type.registerNamespace("Sys.Net");Sys.Net.WebServiceProxy=function(){};Sys.Net.WebServiceProxy.prototype={get_timeout:function(){return this._timeout||0},set_timeout:function(a){if(a<0)throw Error.argumentOutOfRange("value",a,Sys.Res.invalidTimeout);this._timeout=a},get_defaultUserContext:function(){return typeof this._userContext==="undefined"?null:this._userContext},set_defaultUserContext:function(a){this._userContext=a},get_defaultSucceededCallback:function(){return this._succeeded||null},set_defaultSucceededCallback:function(a){this._succeeded=a},get_defaultFailedCallback:function(){return this._failed||null},set_defaultFailedCallback:function(a){this._failed=a},get_enableJsonp:function(){return !!this._jsonp},set_enableJsonp:function(a){this._jsonp=a},get_path:function(){return this._path||null},set_path:function(a){this._path=a},get_jsonpCallbackParameter:function(){return this._callbackParameter||"callback"},set_jsonpCallbackParameter:function(a){this._callbackParameter=a},_invoke:function(d,e,g,f,c,b,a){c=c||this.get_defaultSucceededCallback();b=b||this.get_defaultFailedCallback();if(a===null||typeof a==="undefined")a=this.get_defaultUserContext();return Sys.Net.WebServiceProxy.invoke(d,e,g,f,c,b,a,this.get_timeout(),this.get_enableJsonp(),this.get_jsonpCallbackParameter())}};Sys.Net.WebServiceProxy.registerClass("Sys.Net.WebServiceProxy");Sys.Net.WebServiceProxy.invoke=function(q,a,m,l,j,b,g,e,w,p){var i=w!==false?Sys.Net.WebServiceProxy._xdomain.exec(q):null,c,n=i&&i.length===3&&(i[1]!==location.protocol||i[2]!==location.host);m=n||m;if(n){p=p||"callback";c="_jsonp"+Sys._jsonp++}if(!l)l={};var r=l;if(!m||!r)r={};var s,h,f=null,k,o=null,u=Sys.Net.WebRequest._createUrl(a?q+"/"+encodeURIComponent(a):q,r,n?p+"=Sys."+c:null);if(n){s=document.createElement("script");s.src=u;k=new Sys._ScriptLoaderTask(s,function(d,b){if(!b||c)t({Message:String.format(Sys.Res.webServiceFailedNoMsg,a)},-1)});function v(){if(f===null)return;f=null;h=new Sys.Net.WebServiceError(true,String.format(Sys.Res.webServiceTimedOut,a));k.dispose();delete Sys[c];if(b)b(h,g,a)}function t(d,e){if(f!==null){window.clearTimeout(f);f=null}k.dispose();delete Sys[c];c=null;if(typeof e!=="undefined"&&e!==200){if(b){h=new Sys.Net.WebServiceError(false,d.Message||String.format(Sys.Res.webServiceFailedNoMsg,a),d.StackTrace||null,d.ExceptionType||null,d);h._statusCode=e;b(h,g,a)}}else if(j)j(d,g,a)}Sys[c]=t;e=e||Sys.Net.WebRequestManager.get_defaultTimeout();if(e>0)f=window.setTimeout(v,e);k.execute();return null}var d=new Sys.Net.WebRequest;d.set_url(u);d.get_headers()["Content-Type"]="application/json; charset=utf-8";if(!m){o=Sys.Serialization.JavaScriptSerializer.serialize(l);if(o==="{}")o=""}d.set_body(o);d.add_completed(x);if(e&&e>0)d.set_timeout(e);d.invoke();function x(d){if(d.get_responseAvailable()){var f=d.get_statusCode(),c=null;try{var e=d.getResponseHeader("Content-Type");if(e.startsWith("application/json"))c=d.get_object();else if(e.startsWith("text/xml"))c=d.get_xml();else c=d.get_responseData()}catch(m){}var k=d.getResponseHeader("jsonerror"),h=k==="true";if(h){if(c)c=new Sys.Net.WebServiceError(false,c.Message,c.StackTrace,c.ExceptionType,c)}else if(e.startsWith("application/json"))c=!c||typeof c.d==="undefined"?c:c.d;if(f<200||f>=300||h){if(b){if(!c||!h)c=new Sys.Net.WebServiceError(false,String.format(Sys.Res.webServiceFailedNoMsg,a));c._statusCode=f;b(c,g,a)}}else if(j)j(c,g,a)}else{var i;if(d.get_timedOut())i=String.format(Sys.Res.webServiceTimedOut,a);else i=String.format(Sys.Res.webServiceFailedNoMsg,a);if(b)b(new Sys.Net.WebServiceError(d.get_timedOut(),i,"",""),g,a)}}return d};Sys.Net.WebServiceProxy._generateTypedConstructor=function(a){return function(b){if(b)for(var c in b)this[c]=b[c];this.__type=a}};Sys._jsonp=0;Sys.Net.WebServiceProxy._xdomain=/^\s*([a-zA-Z0-9\+\-\.]+\:)\/\/([^?#\/]+)/;Sys.Net.WebServiceError=function(d,e,c,a,b){this._timedOut=d;this._message=e;this._stackTrace=c;this._exceptionType=a;this._errorObject=b;this._statusCode=-1};Sys.Net.WebServiceError.prototype={get_timedOut:function(){return this._timedOut},get_statusCode:function(){return this._statusCode},get_message:function(){return this._message},get_stackTrace:function(){return this._stackTrace||""},get_exceptionType:function(){return this._exceptionType||""},get_errorObject:function(){return this._errorObject||null}};Sys.Net.WebServiceError.registerClass("Sys.Net.WebServiceError"); +Type.registerNamespace('Sys');Sys.Res={'argumentInteger':'Value must be an integer.','invokeCalledTwice':'Cannot call invoke more than once.','webServiceFailed':'The server method \'{0}\' failed with the following error: {1}','argumentType':'Object cannot be converted to the required type.','argumentNull':'Value cannot be null.','scriptAlreadyLoaded':'The script \'{0}\' has been referenced multiple times. If referencing Microsoft AJAX scripts explicitly, set the MicrosoftAjaxMode property of the ScriptManager to Explicit.','scriptDependencyNotFound':'The script \'{0}\' failed to load because it is dependent on script \'{1}\'.','formatBadFormatSpecifier':'Format specifier was invalid.','requiredScriptReferenceNotIncluded':'\'{0}\' requires that you have included a script reference to \'{1}\'.','webServiceFailedNoMsg':'The server method \'{0}\' failed.','argumentDomElement':'Value must be a DOM element.','invalidExecutorType':'Could not create a valid Sys.Net.WebRequestExecutor from: {0}.','cannotCallBeforeResponse':'Cannot call {0} when responseAvailable is false.','actualValue':'Actual value was {0}.','enumInvalidValue':'\'{0}\' is not a valid value for enum {1}.','scriptLoadFailed':'The script \'{0}\' could not be loaded.','parameterCount':'Parameter count mismatch.','cannotDeserializeEmptyString':'Cannot deserialize empty string.','formatInvalidString':'Input string was not in a correct format.','invalidTimeout':'Value must be greater than or equal to zero.','cannotAbortBeforeStart':'Cannot abort when executor has not started.','argument':'Value does not fall within the expected range.','cannotDeserializeInvalidJson':'Cannot deserialize. The data does not correspond to valid JSON.','invalidHttpVerb':'httpVerb cannot be set to an empty or null string.','nullWebRequest':'Cannot call executeRequest with a null webRequest.','eventHandlerInvalid':'Handler was not added through the Sys.UI.DomEvent.addHandler method.','cannotSerializeNonFiniteNumbers':'Cannot serialize non finite numbers.','argumentUndefined':'Value cannot be undefined.','webServiceInvalidReturnType':'The server method \'{0}\' returned an invalid type. Expected type: {1}','servicePathNotSet':'The path to the web service has not been set.','argumentTypeWithTypes':'Object of type \'{0}\' cannot be converted to type \'{1}\'.','cannotCallOnceStarted':'Cannot call {0} once started.','badBaseUrl1':'Base URL does not contain ://.','badBaseUrl2':'Base URL does not contain another /.','badBaseUrl3':'Cannot find last / in base URL.','setExecutorAfterActive':'Cannot set executor after it has become active.','paramName':'Parameter name: {0}','nullReferenceInPath':'Null reference while evaluating data path: \'{0}\'.','cannotCallOutsideHandler':'Cannot call {0} outside of a completed event handler.','cannotSerializeObjectWithCycle':'Cannot serialize object with cyclic reference within child properties.','format':'One of the identified items was in an invalid format.','assertFailedCaller':'Assertion Failed: {0}\r\nat {1}','argumentOutOfRange':'Specified argument was out of the range of valid values.','webServiceTimedOut':'The server method \'{0}\' timed out.','notImplemented':'The method or operation is not implemented.','assertFailed':'Assertion Failed: {0}','invalidOperation':'Operation is not valid due to the current state of the object.','breakIntoDebugger':'{0}\r\n\r\nBreak into debugger?'}; diff --git a/main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.debug.js b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.debug.js new file mode 100644 index 0000000..3a39062 --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.debug.js @@ -0,0 +1,408 @@ +//!---------------------------------------------------------- +//! Copyright (C) Microsoft Corporation. All rights reserved. +//!---------------------------------------------------------- +//! MicrosoftMvcAjax.js + +Type.registerNamespace('Sys.Mvc'); + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.AjaxOptions + +Sys.Mvc.$create_AjaxOptions = function Sys_Mvc_AjaxOptions() { return {}; } + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.InsertionMode + +Sys.Mvc.InsertionMode = function() { + /// + /// + /// + /// + /// + /// +}; +Sys.Mvc.InsertionMode.prototype = { + replace: 0, + insertBefore: 1, + insertAfter: 2 +} +Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false); + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.AjaxContext + +Sys.Mvc.AjaxContext = function Sys_Mvc_AjaxContext(request, updateTarget, loadingElement, insertionMode) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + this._request = request; + this._updateTarget = updateTarget; + this._loadingElement = loadingElement; + this._insertionMode = insertionMode; +} +Sys.Mvc.AjaxContext.prototype = { + _insertionMode: 0, + _loadingElement: null, + _response: null, + _request: null, + _updateTarget: null, + + get_data: function Sys_Mvc_AjaxContext$get_data() { + /// + if (this._response) { + return this._response.get_responseData(); + } + else { + return null; + } + }, + + get_insertionMode: function Sys_Mvc_AjaxContext$get_insertionMode() { + /// + return this._insertionMode; + }, + + get_loadingElement: function Sys_Mvc_AjaxContext$get_loadingElement() { + /// + return this._loadingElement; + }, + + get_object: function Sys_Mvc_AjaxContext$get_object() { + /// + var executor = this.get_response(); + return (executor) ? executor.get_object() : null; + }, + + get_response: function Sys_Mvc_AjaxContext$get_response() { + /// + return this._response; + }, + set_response: function Sys_Mvc_AjaxContext$set_response(value) { + /// + this._response = value; + return value; + }, + + get_request: function Sys_Mvc_AjaxContext$get_request() { + /// + return this._request; + }, + + get_updateTarget: function Sys_Mvc_AjaxContext$get_updateTarget() { + /// + return this._updateTarget; + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.AsyncHyperlink + +Sys.Mvc.AsyncHyperlink = function Sys_Mvc_AsyncHyperlink() { +} +Sys.Mvc.AsyncHyperlink.handleClick = function Sys_Mvc_AsyncHyperlink$handleClick(anchor, evt, ajaxOptions) { + /// + /// + /// + /// + /// + /// + evt.preventDefault(); + Sys.Mvc.MvcHelpers._asyncRequest(anchor.href, 'post', '', anchor, ajaxOptions); +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.MvcHelpers + +Sys.Mvc.MvcHelpers = function Sys_Mvc_MvcHelpers() { +} +Sys.Mvc.MvcHelpers._serializeSubmitButton = function Sys_Mvc_MvcHelpers$_serializeSubmitButton(element, offsetX, offsetY) { + /// + /// + /// + /// + /// + /// + /// + if (element.disabled) { + return null; + } + var name = element.name; + if (name) { + var tagName = element.tagName.toUpperCase(); + var encodedName = encodeURIComponent(name); + var inputElement = element; + if (tagName === 'INPUT') { + var type = inputElement.type; + if (type === 'submit') { + return encodedName + '=' + encodeURIComponent(inputElement.value); + } + else if (type === 'image') { + return encodedName + '.x=' + offsetX + '&' + encodedName + '.y=' + offsetY; + } + } + else if ((tagName === 'BUTTON') && (name.length) && (inputElement.type === 'submit')) { + return encodedName + '=' + encodeURIComponent(inputElement.value); + } + } + return null; +} +Sys.Mvc.MvcHelpers._serializeForm = function Sys_Mvc_MvcHelpers$_serializeForm(form) { + /// + /// + /// + var formElements = form.elements; + var formBody = new Sys.StringBuilder(); + var count = formElements.length; + for (var i = 0; i < count; i++) { + var element = formElements[i]; + var name = element.name; + if (!name || !name.length) { + continue; + } + var tagName = element.tagName.toUpperCase(); + if (tagName === 'INPUT') { + var inputElement = element; + var type = inputElement.type; + if ((type === 'text') || (type === 'password') || (type === 'hidden') || (((type === 'checkbox') || (type === 'radio')) && element.checked)) { + formBody.append(encodeURIComponent(name)); + formBody.append('='); + formBody.append(encodeURIComponent(inputElement.value)); + formBody.append('&'); + } + } + else if (tagName === 'SELECT') { + var selectElement = element; + var optionCount = selectElement.options.length; + for (var j = 0; j < optionCount; j++) { + var optionElement = selectElement.options[j]; + if (optionElement.selected) { + formBody.append(encodeURIComponent(name)); + formBody.append('='); + formBody.append(encodeURIComponent(optionElement.value)); + formBody.append('&'); + } + } + } + else if (tagName === 'TEXTAREA') { + formBody.append(encodeURIComponent(name)); + formBody.append('='); + formBody.append(encodeURIComponent((element.value))); + formBody.append('&'); + } + } + var additionalInput = form._additionalInput; + if (additionalInput) { + formBody.append(additionalInput); + formBody.append('&'); + } + return formBody.toString(); +} +Sys.Mvc.MvcHelpers._asyncRequest = function Sys_Mvc_MvcHelpers$_asyncRequest(url, verb, body, triggerElement, ajaxOptions) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + if (ajaxOptions.confirm) { + if (!confirm(ajaxOptions.confirm)) { + return; + } + } + if (ajaxOptions.url) { + url = ajaxOptions.url; + } + if (ajaxOptions.httpMethod) { + verb = ajaxOptions.httpMethod; + } + if (body.length > 0 && !body.endsWith('&')) { + body += '&'; + } + body += 'X-Requested-With=XMLHttpRequest'; + var upperCaseVerb = verb.toUpperCase(); + var isGetOrPost = (upperCaseVerb === 'GET' || upperCaseVerb === 'POST'); + if (!isGetOrPost) { + body += '&'; + body += 'X-HTTP-Method-Override=' + upperCaseVerb; + } + var requestBody = ''; + if (upperCaseVerb === 'GET' || upperCaseVerb === 'DELETE') { + if (url.indexOf('?') > -1) { + if (!url.endsWith('&')) { + url += '&'; + } + url += body; + } + else { + url += '?'; + url += body; + } + } + else { + requestBody = body; + } + var request = new Sys.Net.WebRequest(); + request.set_url(url); + if (isGetOrPost) { + request.set_httpVerb(verb); + } + else { + request.set_httpVerb('POST'); + request.get_headers()['X-HTTP-Method-Override'] = upperCaseVerb; + } + request.set_body(requestBody); + if (verb.toUpperCase() === 'PUT') { + request.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;'; + } + request.get_headers()['X-Requested-With'] = 'XMLHttpRequest'; + var updateElement = null; + if (ajaxOptions.updateTargetId) { + updateElement = $get(ajaxOptions.updateTargetId); + } + var loadingElement = null; + if (ajaxOptions.loadingElementId) { + loadingElement = $get(ajaxOptions.loadingElementId); + } + var ajaxContext = new Sys.Mvc.AjaxContext(request, updateElement, loadingElement, ajaxOptions.insertionMode); + var continueRequest = true; + if (ajaxOptions.onBegin) { + continueRequest = ajaxOptions.onBegin(ajaxContext) !== false; + } + if (loadingElement) { + Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), true); + } + if (continueRequest) { + request.add_completed(Function.createDelegate(null, function(executor) { + Sys.Mvc.MvcHelpers._onComplete(request, ajaxOptions, ajaxContext); + })); + request.invoke(); + } +} +Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request, ajaxOptions, ajaxContext) { + /// + /// + /// + /// + /// + /// + ajaxContext.set_response(request.get_executor()); + if (ajaxOptions.onComplete && ajaxOptions.onComplete(ajaxContext) === false) { + return; + } + var statusCode = ajaxContext.get_response().get_statusCode(); + if ((statusCode >= 200 && statusCode < 300) || statusCode === 304 || statusCode === 1223) { + if (statusCode !== 204 && statusCode !== 304 && statusCode !== 1223) { + var contentType = ajaxContext.get_response().getResponseHeader('Content-Type'); + if ((contentType) && (contentType.indexOf('application/x-javascript') !== -1)) { + eval(ajaxContext.get_data()); + } + else { + Sys.Mvc.MvcHelpers.updateDomElement(ajaxContext.get_updateTarget(), ajaxContext.get_insertionMode(), ajaxContext.get_data()); + } + } + if (ajaxOptions.onSuccess) { + ajaxOptions.onSuccess(ajaxContext); + } + } + else { + if (ajaxOptions.onFailure) { + ajaxOptions.onFailure(ajaxContext); + } + } + if (ajaxContext.get_loadingElement()) { + Sys.UI.DomElement.setVisible(ajaxContext.get_loadingElement(), false); + } +} +Sys.Mvc.MvcHelpers.updateDomElement = function Sys_Mvc_MvcHelpers$updateDomElement(target, insertionMode, content) { + /// + /// + /// + /// + /// + /// + if (target) { + switch (insertionMode) { + case Sys.Mvc.InsertionMode.replace: + target.innerHTML = content; + break; + case Sys.Mvc.InsertionMode.insertBefore: + if (content && content.length > 0) { + target.innerHTML = content + target.innerHTML.trimStart(); + } + break; + case Sys.Mvc.InsertionMode.insertAfter: + if (content && content.length > 0) { + target.innerHTML = target.innerHTML.trimEnd() + content; + } + break; + } + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.AsyncForm + +Sys.Mvc.AsyncForm = function Sys_Mvc_AsyncForm() { +} +Sys.Mvc.AsyncForm.handleClick = function Sys_Mvc_AsyncForm$handleClick(form, evt) { + /// + /// + /// + /// + var additionalInput = Sys.Mvc.MvcHelpers._serializeSubmitButton(evt.target, evt.offsetX, evt.offsetY); + form._additionalInput = additionalInput; +} +Sys.Mvc.AsyncForm.handleSubmit = function Sys_Mvc_AsyncForm$handleSubmit(form, evt, ajaxOptions) { + /// + /// + /// + /// + /// + /// + evt.preventDefault(); + var validationCallbacks = form.validationCallbacks; + if (validationCallbacks) { + for (var i = 0; i < validationCallbacks.length; i++) { + var callback = validationCallbacks[i]; + if (!callback()) { + return; + } + } + } + var body = Sys.Mvc.MvcHelpers._serializeForm(form); + Sys.Mvc.MvcHelpers._asyncRequest(form.action, form.method || 'post', body, form, ajaxOptions); +} + + +Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext'); +Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink'); +Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers'); +Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm'); + +// ---- Do not remove this footer ---- +// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) +// ----------------------------------- diff --git a/main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.js b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.js new file mode 100644 index 0000000..275103c --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcAjax.js @@ -0,0 +1,25 @@ +//---------------------------------------------------------- +// Copyright (C) Microsoft Corporation. All rights reserved. +//---------------------------------------------------------- +// MicrosoftMvcAjax.js + +Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_AjaxOptions=function(){return {};} +Sys.Mvc.InsertionMode=function(){};Sys.Mvc.InsertionMode.prototype = {replace:0,insertBefore:1,insertAfter:2} +Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode',false);Sys.Mvc.AjaxContext=function(request,updateTarget,loadingElement,insertionMode){this.$3=request;this.$4=updateTarget;this.$1=loadingElement;this.$0=insertionMode;} +Sys.Mvc.AjaxContext.prototype={$0:0,$1:null,$2:null,$3:null,$4:null,get_data:function(){if(this.$2){return this.$2.get_responseData();}else{return null;}},get_insertionMode:function(){return this.$0;},get_loadingElement:function(){return this.$1;},get_object:function(){var $0=this.get_response();return ($0)?$0.get_object():null;},get_response:function(){return this.$2;},set_response:function(value){this.$2=value;return value;},get_request:function(){return this.$3;},get_updateTarget:function(){return this.$4;}} +Sys.Mvc.AsyncHyperlink=function(){} +Sys.Mvc.AsyncHyperlink.handleClick=function(anchor,evt,ajaxOptions){evt.preventDefault();Sys.Mvc.MvcHelpers.$2(anchor.href,'post','',anchor,ajaxOptions);} +Sys.Mvc.MvcHelpers=function(){} +Sys.Mvc.MvcHelpers.$0=function($p0,$p1,$p2){if($p0.disabled){return null;}var $0=$p0.name;if($0){var $1=$p0.tagName.toUpperCase();var $2=encodeURIComponent($0);var $3=$p0;if($1==='INPUT'){var $4=$3.type;if($4==='submit'){return $2+'='+encodeURIComponent($3.value);}else if($4==='image'){return $2+'.x='+$p1+'&'+$2+'.y='+$p2;}}else if(($1==='BUTTON')&&($0.length)&&($3.type==='submit')){return $2+'='+encodeURIComponent($3.value);}}return null;} +Sys.Mvc.MvcHelpers.$1=function($p0){var $0=$p0.elements;var $1=new Sys.StringBuilder();var $2=$0.length;for(var $4=0;$4<$2;$4++){var $5=$0[$4];var $6=$5.name;if(!$6||!$6.length){continue;}var $7=$5.tagName.toUpperCase();if($7==='INPUT'){var $8=$5;var $9=$8.type;if(($9==='text')||($9==='password')||($9==='hidden')||((($9==='checkbox')||($9==='radio'))&&$5.checked)){$1.append(encodeURIComponent($6));$1.append('=');$1.append(encodeURIComponent($8.value));$1.append('&');}}else if($7==='SELECT'){var $A=$5;var $B=$A.options.length;for(var $C=0;$C<$B;$C++){var $D=$A.options[$C];if($D.selected){$1.append(encodeURIComponent($6));$1.append('=');$1.append(encodeURIComponent($D.value));$1.append('&');}}}else if($7==='TEXTAREA'){$1.append(encodeURIComponent($6));$1.append('=');$1.append(encodeURIComponent(($5.value)));$1.append('&');}}var $3=$p0._additionalInput;if($3){$1.append($3);$1.append('&');}return $1.toString();} +Sys.Mvc.MvcHelpers.$2=function($p0,$p1,$p2,$p3,$p4){if($p4.confirm){if(!confirm($p4.confirm)){return;}}if($p4.url){$p0=$p4.url;}if($p4.httpMethod){$p1=$p4.httpMethod;}if($p2.length>0&&!$p2.endsWith('&')){$p2+='&';}$p2+='X-Requested-With=XMLHttpRequest';var $0=$p1.toUpperCase();var $1=($0==='GET'||$0==='POST');if(!$1){$p2+='&';$p2+='X-HTTP-Method-Override='+$0;}var $2='';if($0==='GET'||$0==='DELETE'){if($p0.indexOf('?')>-1){if(!$p0.endsWith('&')){$p0+='&';}$p0+=$p2;}else{$p0+='?';$p0+=$p2;}}else{$2=$p2;}var $3=new Sys.Net.WebRequest();$3.set_url($p0);if($1){$3.set_httpVerb($p1);}else{$3.set_httpVerb('POST');$3.get_headers()['X-HTTP-Method-Override']=$0;}$3.set_body($2);if($p1.toUpperCase()==='PUT'){$3.get_headers()['Content-Type']='application/x-www-form-urlencoded;';}$3.get_headers()['X-Requested-With']='XMLHttpRequest';var $4=null;if($p4.updateTargetId){$4=$get($p4.updateTargetId);}var $5=null;if($p4.loadingElementId){$5=$get($p4.loadingElementId);}var $6=new Sys.Mvc.AjaxContext($3,$4,$5,$p4.insertionMode);var $7=true;if($p4.onBegin){$7=$p4.onBegin($6)!==false;}if($5){Sys.UI.DomElement.setVisible($6.get_loadingElement(),true);}if($7){$3.add_completed(Function.createDelegate(null,function($p1_0){ +Sys.Mvc.MvcHelpers.$3($3,$p4,$6);}));$3.invoke();}} +Sys.Mvc.MvcHelpers.$3=function($p0,$p1,$p2){$p2.set_response($p0.get_executor());if($p1.onComplete&&$p1.onComplete($p2)===false){return;}var $0=$p2.get_response().get_statusCode();if(($0>=200&&$0<300)||$0===304||$0===1223){if($0!==204&&$0!==304&&$0!==1223){var $1=$p2.get_response().getResponseHeader('Content-Type');if(($1)&&($1.indexOf('application/x-javascript')!==-1)){eval($p2.get_data());}else{Sys.Mvc.MvcHelpers.updateDomElement($p2.get_updateTarget(),$p2.get_insertionMode(),$p2.get_data());}}if($p1.onSuccess){$p1.onSuccess($p2);}}else{if($p1.onFailure){$p1.onFailure($p2);}}if($p2.get_loadingElement()){Sys.UI.DomElement.setVisible($p2.get_loadingElement(),false);}} +Sys.Mvc.MvcHelpers.updateDomElement=function(target,insertionMode,content){if(target){switch(insertionMode){case 0:target.innerHTML=content;break;case 1:if(content&&content.length>0){target.innerHTML=content+target.innerHTML.trimStart();}break;case 2:if(content&&content.length>0){target.innerHTML=target.innerHTML.trimEnd()+content;}break;}}} +Sys.Mvc.AsyncForm=function(){} +Sys.Mvc.AsyncForm.handleClick=function(form,evt){var $0=Sys.Mvc.MvcHelpers.$0(evt.target,evt.offsetX,evt.offsetY);form._additionalInput = $0;} +Sys.Mvc.AsyncForm.handleSubmit=function(form,evt,ajaxOptions){evt.preventDefault();var $0=form.validationCallbacks;if($0){for(var $2=0;$2<$0.length;$2++){var $3=$0[$2];if(!$3()){return;}}}var $1=Sys.Mvc.MvcHelpers.$1(form);Sys.Mvc.MvcHelpers.$2(form.action,form.method||'post',$1,form,ajaxOptions);} +Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext');Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink');Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers');Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm'); +// ---- Do not remove this footer ---- +// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) +// ----------------------------------- diff --git a/main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.debug.js b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.debug.js new file mode 100644 index 0000000..eb032ff --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.debug.js @@ -0,0 +1,883 @@ +//!---------------------------------------------------------- +//! Copyright (C) Microsoft Corporation. All rights reserved. +//!---------------------------------------------------------- +//! MicrosoftMvcValidation.js + + +Type.registerNamespace('Sys.Mvc'); + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.Validation + +Sys.Mvc.$create_Validation = function Sys_Mvc_Validation() { return {}; } + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.JsonValidationField + +Sys.Mvc.$create_JsonValidationField = function Sys_Mvc_JsonValidationField() { return {}; } + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.JsonValidationOptions + +Sys.Mvc.$create_JsonValidationOptions = function Sys_Mvc_JsonValidationOptions() { return {}; } + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.JsonValidationRule + +Sys.Mvc.$create_JsonValidationRule = function Sys_Mvc_JsonValidationRule() { return {}; } + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.ValidationContext + +Sys.Mvc.$create_ValidationContext = function Sys_Mvc_ValidationContext() { return {}; } + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.NumberValidator + +Sys.Mvc.NumberValidator = function Sys_Mvc_NumberValidator() { +} +Sys.Mvc.NumberValidator.create = function Sys_Mvc_NumberValidator$create(rule) { + /// + /// + /// + return Function.createDelegate(new Sys.Mvc.NumberValidator(), new Sys.Mvc.NumberValidator().validate); +} +Sys.Mvc.NumberValidator.prototype = { + + validate: function Sys_Mvc_NumberValidator$validate(value, context) { + /// + /// + /// + /// + /// + if (Sys.Mvc._validationUtil.stringIsNullOrEmpty(value)) { + return true; + } + var n = Number.parseLocale(value); + return (!isNaN(n)); + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.FormContext + +Sys.Mvc.FormContext = function Sys_Mvc_FormContext(formElement, validationSummaryElement) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + this._errors = []; + this.fields = new Array(0); + this._formElement = formElement; + this._validationSummaryElement = validationSummaryElement; + formElement[Sys.Mvc.FormContext._formValidationTag] = this; + if (validationSummaryElement) { + var ulElements = validationSummaryElement.getElementsByTagName('ul'); + if (ulElements.length > 0) { + this._validationSummaryULElement = ulElements[0]; + } + } + this._onClickHandler = Function.createDelegate(this, this._form_OnClick); + this._onSubmitHandler = Function.createDelegate(this, this._form_OnSubmit); +} +Sys.Mvc.FormContext._Application_Load = function Sys_Mvc_FormContext$_Application_Load() { + var allFormOptions = window.mvcClientValidationMetadata; + if (allFormOptions) { + while (allFormOptions.length > 0) { + var thisFormOptions = allFormOptions.pop(); + Sys.Mvc.FormContext._parseJsonOptions(thisFormOptions); + } + } +} +Sys.Mvc.FormContext._getFormElementsWithName = function Sys_Mvc_FormContext$_getFormElementsWithName(formElement, name) { + /// + /// + /// + /// + /// + var allElementsWithNameInForm = []; + var allElementsWithName = document.getElementsByName(name); + for (var i = 0; i < allElementsWithName.length; i++) { + var thisElement = allElementsWithName[i]; + if (Sys.Mvc.FormContext._isElementInHierarchy(formElement, thisElement)) { + Array.add(allElementsWithNameInForm, thisElement); + } + } + return allElementsWithNameInForm; +} +Sys.Mvc.FormContext.getValidationForForm = function Sys_Mvc_FormContext$getValidationForForm(formElement) { + /// + /// + /// + return formElement[Sys.Mvc.FormContext._formValidationTag]; +} +Sys.Mvc.FormContext._isElementInHierarchy = function Sys_Mvc_FormContext$_isElementInHierarchy(parent, child) { + /// + /// + /// + /// + /// + while (child) { + if (parent === child) { + return true; + } + child = child.parentNode; + } + return false; +} +Sys.Mvc.FormContext._parseJsonOptions = function Sys_Mvc_FormContext$_parseJsonOptions(options) { + /// + /// + /// + var formElement = $get(options.FormId); + var validationSummaryElement = (!Sys.Mvc._validationUtil.stringIsNullOrEmpty(options.ValidationSummaryId)) ? $get(options.ValidationSummaryId) : null; + var formContext = new Sys.Mvc.FormContext(formElement, validationSummaryElement); + formContext.enableDynamicValidation(); + formContext.replaceValidationSummary = options.ReplaceValidationSummary; + for (var i = 0; i < options.Fields.length; i++) { + var field = options.Fields[i]; + var fieldElements = Sys.Mvc.FormContext._getFormElementsWithName(formElement, field.FieldName); + var validationMessageElement = (!Sys.Mvc._validationUtil.stringIsNullOrEmpty(field.ValidationMessageId)) ? $get(field.ValidationMessageId) : null; + var fieldContext = new Sys.Mvc.FieldContext(formContext); + Array.addRange(fieldContext.elements, fieldElements); + fieldContext.validationMessageElement = validationMessageElement; + fieldContext.replaceValidationMessageContents = field.ReplaceValidationMessageContents; + for (var j = 0; j < field.ValidationRules.length; j++) { + var rule = field.ValidationRules[j]; + var validator = Sys.Mvc.ValidatorRegistry.getValidator(rule); + if (validator) { + var validation = Sys.Mvc.$create_Validation(); + validation.fieldErrorMessage = rule.ErrorMessage; + validation.validator = validator; + Array.add(fieldContext.validations, validation); + } + } + fieldContext.enableDynamicValidation(); + Array.add(formContext.fields, fieldContext); + } + var registeredValidatorCallbacks = formElement.validationCallbacks; + if (!registeredValidatorCallbacks) { + registeredValidatorCallbacks = []; + formElement.validationCallbacks = registeredValidatorCallbacks; + } + registeredValidatorCallbacks.push(Function.createDelegate(null, function() { + return Sys.Mvc._validationUtil.arrayIsNullOrEmpty(formContext.validate('submit')); + })); + return formContext; +} +Sys.Mvc.FormContext.prototype = { + _onClickHandler: null, + _onSubmitHandler: null, + _submitButtonClicked: null, + _validationSummaryElement: null, + _validationSummaryULElement: null, + _formElement: null, + replaceValidationSummary: false, + + addError: function Sys_Mvc_FormContext$addError(message) { + /// + /// + this.addErrors([ message ]); + }, + + addErrors: function Sys_Mvc_FormContext$addErrors(messages) { + /// + /// + if (!Sys.Mvc._validationUtil.arrayIsNullOrEmpty(messages)) { + Array.addRange(this._errors, messages); + this._onErrorCountChanged(); + } + }, + + clearErrors: function Sys_Mvc_FormContext$clearErrors() { + Array.clear(this._errors); + this._onErrorCountChanged(); + }, + + _displayError: function Sys_Mvc_FormContext$_displayError() { + if (this._validationSummaryElement) { + if (this._validationSummaryULElement) { + Sys.Mvc._validationUtil.removeAllChildren(this._validationSummaryULElement); + for (var i = 0; i < this._errors.length; i++) { + var liElement = document.createElement('li'); + Sys.Mvc._validationUtil.setInnerText(liElement, this._errors[i]); + this._validationSummaryULElement.appendChild(liElement); + } + } + Sys.UI.DomElement.removeCssClass(this._validationSummaryElement, Sys.Mvc.FormContext._validationSummaryValidCss); + Sys.UI.DomElement.addCssClass(this._validationSummaryElement, Sys.Mvc.FormContext._validationSummaryErrorCss); + } + }, + + _displaySuccess: function Sys_Mvc_FormContext$_displaySuccess() { + var validationSummaryElement = this._validationSummaryElement; + if (validationSummaryElement) { + var validationSummaryULElement = this._validationSummaryULElement; + if (validationSummaryULElement) { + validationSummaryULElement.innerHTML = ''; + } + Sys.UI.DomElement.removeCssClass(validationSummaryElement, Sys.Mvc.FormContext._validationSummaryErrorCss); + Sys.UI.DomElement.addCssClass(validationSummaryElement, Sys.Mvc.FormContext._validationSummaryValidCss); + } + }, + + enableDynamicValidation: function Sys_Mvc_FormContext$enableDynamicValidation() { + Sys.UI.DomEvent.addHandler(this._formElement, 'click', this._onClickHandler); + Sys.UI.DomEvent.addHandler(this._formElement, 'submit', this._onSubmitHandler); + }, + + _findSubmitButton: function Sys_Mvc_FormContext$_findSubmitButton(element) { + /// + /// + /// + if (element.disabled) { + return null; + } + var tagName = element.tagName.toUpperCase(); + var inputElement = element; + if (tagName === 'INPUT') { + var type = inputElement.type; + if (type === 'submit' || type === 'image') { + return inputElement; + } + } + else if ((tagName === 'BUTTON') && (inputElement.type === 'submit')) { + return inputElement; + } + return null; + }, + + _form_OnClick: function Sys_Mvc_FormContext$_form_OnClick(e) { + /// + /// + this._submitButtonClicked = this._findSubmitButton(e.target); + }, + + _form_OnSubmit: function Sys_Mvc_FormContext$_form_OnSubmit(e) { + /// + /// + var form = e.target; + var submitButton = this._submitButtonClicked; + if (submitButton && submitButton.disableValidation) { + return; + } + var errorMessages = this.validate('submit'); + if (!Sys.Mvc._validationUtil.arrayIsNullOrEmpty(errorMessages)) { + e.preventDefault(); + } + }, + + _onErrorCountChanged: function Sys_Mvc_FormContext$_onErrorCountChanged() { + if (!this._errors.length) { + this._displaySuccess(); + } + else { + this._displayError(); + } + }, + + validate: function Sys_Mvc_FormContext$validate(eventName) { + /// + /// + /// + var fields = this.fields; + var errors = []; + for (var i = 0; i < fields.length; i++) { + var field = fields[i]; + if (!field.elements[0].disabled) { + var thisErrors = field.validate(eventName); + if (thisErrors) { + Array.addRange(errors, thisErrors); + } + } + } + if (this.replaceValidationSummary) { + this.clearErrors(); + this.addErrors(errors); + } + return errors; + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.FieldContext + +Sys.Mvc.FieldContext = function Sys_Mvc_FieldContext(formContext) { + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + /// + this._errors = []; + this.elements = new Array(0); + this.validations = new Array(0); + this.formContext = formContext; + this._onBlurHandler = Function.createDelegate(this, this._element_OnBlur); + this._onChangeHandler = Function.createDelegate(this, this._element_OnChange); + this._onInputHandler = Function.createDelegate(this, this._element_OnInput); + this._onPropertyChangeHandler = Function.createDelegate(this, this._element_OnPropertyChange); +} +Sys.Mvc.FieldContext.prototype = { + _onBlurHandler: null, + _onChangeHandler: null, + _onInputHandler: null, + _onPropertyChangeHandler: null, + defaultErrorMessage: null, + formContext: null, + replaceValidationMessageContents: false, + validationMessageElement: null, + + addError: function Sys_Mvc_FieldContext$addError(message) { + /// + /// + this.addErrors([ message ]); + }, + + addErrors: function Sys_Mvc_FieldContext$addErrors(messages) { + /// + /// + if (!Sys.Mvc._validationUtil.arrayIsNullOrEmpty(messages)) { + Array.addRange(this._errors, messages); + this._onErrorCountChanged(); + } + }, + + clearErrors: function Sys_Mvc_FieldContext$clearErrors() { + Array.clear(this._errors); + this._onErrorCountChanged(); + }, + + _displayError: function Sys_Mvc_FieldContext$_displayError() { + var validationMessageElement = this.validationMessageElement; + if (validationMessageElement) { + if (this.replaceValidationMessageContents) { + Sys.Mvc._validationUtil.setInnerText(validationMessageElement, this._errors[0]); + } + Sys.UI.DomElement.removeCssClass(validationMessageElement, Sys.Mvc.FieldContext._validationMessageValidCss); + Sys.UI.DomElement.addCssClass(validationMessageElement, Sys.Mvc.FieldContext._validationMessageErrorCss); + } + var elements = this.elements; + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + Sys.UI.DomElement.removeCssClass(element, Sys.Mvc.FieldContext._inputElementValidCss); + Sys.UI.DomElement.addCssClass(element, Sys.Mvc.FieldContext._inputElementErrorCss); + } + }, + + _displaySuccess: function Sys_Mvc_FieldContext$_displaySuccess() { + var validationMessageElement = this.validationMessageElement; + if (validationMessageElement) { + if (this.replaceValidationMessageContents) { + Sys.Mvc._validationUtil.setInnerText(validationMessageElement, ''); + } + Sys.UI.DomElement.removeCssClass(validationMessageElement, Sys.Mvc.FieldContext._validationMessageErrorCss); + Sys.UI.DomElement.addCssClass(validationMessageElement, Sys.Mvc.FieldContext._validationMessageValidCss); + } + var elements = this.elements; + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + Sys.UI.DomElement.removeCssClass(element, Sys.Mvc.FieldContext._inputElementErrorCss); + Sys.UI.DomElement.addCssClass(element, Sys.Mvc.FieldContext._inputElementValidCss); + } + }, + + _element_OnBlur: function Sys_Mvc_FieldContext$_element_OnBlur(e) { + /// + /// + if (e.target[Sys.Mvc.FieldContext._hasTextChangedTag] || e.target[Sys.Mvc.FieldContext._hasValidationFiredTag]) { + this.validate('blur'); + } + }, + + _element_OnChange: function Sys_Mvc_FieldContext$_element_OnChange(e) { + /// + /// + e.target[Sys.Mvc.FieldContext._hasTextChangedTag] = true; + }, + + _element_OnInput: function Sys_Mvc_FieldContext$_element_OnInput(e) { + /// + /// + e.target[Sys.Mvc.FieldContext._hasTextChangedTag] = true; + if (e.target[Sys.Mvc.FieldContext._hasValidationFiredTag]) { + this.validate('input'); + } + }, + + _element_OnPropertyChange: function Sys_Mvc_FieldContext$_element_OnPropertyChange(e) { + /// + /// + if (e.rawEvent.propertyName === 'value') { + e.target[Sys.Mvc.FieldContext._hasTextChangedTag] = true; + if (e.target[Sys.Mvc.FieldContext._hasValidationFiredTag]) { + this.validate('input'); + } + } + }, + + enableDynamicValidation: function Sys_Mvc_FieldContext$enableDynamicValidation() { + var elements = this.elements; + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + if (Sys.Mvc._validationUtil.elementSupportsEvent(element, 'onpropertychange')) { + var compatMode = document.documentMode; + if (compatMode && compatMode >= 8) { + Sys.UI.DomEvent.addHandler(element, 'propertychange', this._onPropertyChangeHandler); + } + } + else { + Sys.UI.DomEvent.addHandler(element, 'input', this._onInputHandler); + } + Sys.UI.DomEvent.addHandler(element, 'change', this._onChangeHandler); + Sys.UI.DomEvent.addHandler(element, 'blur', this._onBlurHandler); + } + }, + + _getErrorString: function Sys_Mvc_FieldContext$_getErrorString(validatorReturnValue, fieldErrorMessage) { + /// + /// + /// + /// + /// + var fallbackErrorMessage = fieldErrorMessage || this.defaultErrorMessage; + if (Boolean.isInstanceOfType(validatorReturnValue)) { + return (validatorReturnValue) ? null : fallbackErrorMessage; + } + if (String.isInstanceOfType(validatorReturnValue)) { + return ((validatorReturnValue).length) ? validatorReturnValue : fallbackErrorMessage; + } + return null; + }, + + _getStringValue: function Sys_Mvc_FieldContext$_getStringValue() { + /// + var elements = this.elements; + return (elements.length > 0) ? elements[0].value : null; + }, + + _markValidationFired: function Sys_Mvc_FieldContext$_markValidationFired() { + var elements = this.elements; + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + element[Sys.Mvc.FieldContext._hasValidationFiredTag] = true; + } + }, + + _onErrorCountChanged: function Sys_Mvc_FieldContext$_onErrorCountChanged() { + if (!this._errors.length) { + this._displaySuccess(); + } + else { + this._displayError(); + } + }, + + validate: function Sys_Mvc_FieldContext$validate(eventName) { + /// + /// + /// + var validations = this.validations; + var errors = []; + var value = this._getStringValue(); + for (var i = 0; i < validations.length; i++) { + var validation = validations[i]; + var context = Sys.Mvc.$create_ValidationContext(); + context.eventName = eventName; + context.fieldContext = this; + context.validation = validation; + var retVal = validation.validator(value, context); + var errorMessage = this._getErrorString(retVal, validation.fieldErrorMessage); + if (!Sys.Mvc._validationUtil.stringIsNullOrEmpty(errorMessage)) { + Array.add(errors, errorMessage); + } + } + this._markValidationFired(); + this.clearErrors(); + this.addErrors(errors); + return errors; + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.RangeValidator + +Sys.Mvc.RangeValidator = function Sys_Mvc_RangeValidator(minimum, maximum) { + /// + /// + /// + /// + /// + /// + /// + /// + this._minimum = minimum; + this._maximum = maximum; +} +Sys.Mvc.RangeValidator.create = function Sys_Mvc_RangeValidator$create(rule) { + /// + /// + /// + var min = rule.ValidationParameters['min']; + var max = rule.ValidationParameters['max']; + return Function.createDelegate(new Sys.Mvc.RangeValidator(min, max), new Sys.Mvc.RangeValidator(min, max).validate); +} +Sys.Mvc.RangeValidator.prototype = { + _minimum: null, + _maximum: null, + + validate: function Sys_Mvc_RangeValidator$validate(value, context) { + /// + /// + /// + /// + /// + if (Sys.Mvc._validationUtil.stringIsNullOrEmpty(value)) { + return true; + } + var n = Number.parseLocale(value); + return (!isNaN(n) && this._minimum <= n && n <= this._maximum); + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.RegularExpressionValidator + +Sys.Mvc.RegularExpressionValidator = function Sys_Mvc_RegularExpressionValidator(pattern) { + /// + /// + /// + /// + this._pattern = pattern; +} +Sys.Mvc.RegularExpressionValidator.create = function Sys_Mvc_RegularExpressionValidator$create(rule) { + /// + /// + /// + var pattern = rule.ValidationParameters['pattern']; + return Function.createDelegate(new Sys.Mvc.RegularExpressionValidator(pattern), new Sys.Mvc.RegularExpressionValidator(pattern).validate); +} +Sys.Mvc.RegularExpressionValidator.prototype = { + _pattern: null, + + validate: function Sys_Mvc_RegularExpressionValidator$validate(value, context) { + /// + /// + /// + /// + /// + if (Sys.Mvc._validationUtil.stringIsNullOrEmpty(value)) { + return true; + } + var regExp = new RegExp(this._pattern); + var matches = regExp.exec(value); + return (!Sys.Mvc._validationUtil.arrayIsNullOrEmpty(matches) && matches[0].length === value.length); + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.RequiredValidator + +Sys.Mvc.RequiredValidator = function Sys_Mvc_RequiredValidator() { +} +Sys.Mvc.RequiredValidator.create = function Sys_Mvc_RequiredValidator$create(rule) { + /// + /// + /// + return Function.createDelegate(new Sys.Mvc.RequiredValidator(), new Sys.Mvc.RequiredValidator().validate); +} +Sys.Mvc.RequiredValidator._isRadioInputElement = function Sys_Mvc_RequiredValidator$_isRadioInputElement(element) { + /// + /// + /// + if (element.tagName.toUpperCase() === 'INPUT') { + var inputType = (element.type).toUpperCase(); + if (inputType === 'RADIO') { + return true; + } + } + return false; +} +Sys.Mvc.RequiredValidator._isSelectInputElement = function Sys_Mvc_RequiredValidator$_isSelectInputElement(element) { + /// + /// + /// + if (element.tagName.toUpperCase() === 'SELECT') { + return true; + } + return false; +} +Sys.Mvc.RequiredValidator._isTextualInputElement = function Sys_Mvc_RequiredValidator$_isTextualInputElement(element) { + /// + /// + /// + if (element.tagName.toUpperCase() === 'INPUT') { + var inputType = (element.type).toUpperCase(); + switch (inputType) { + case 'TEXT': + case 'PASSWORD': + case 'FILE': + return true; + } + } + if (element.tagName.toUpperCase() === 'TEXTAREA') { + return true; + } + return false; +} +Sys.Mvc.RequiredValidator._validateRadioInput = function Sys_Mvc_RequiredValidator$_validateRadioInput(elements) { + /// + /// + /// + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + if (element.checked) { + return true; + } + } + return false; +} +Sys.Mvc.RequiredValidator._validateSelectInput = function Sys_Mvc_RequiredValidator$_validateSelectInput(optionElements) { + /// + /// + /// + for (var i = 0; i < optionElements.length; i++) { + var element = optionElements[i]; + if (element.selected) { + if (!Sys.Mvc._validationUtil.stringIsNullOrEmpty(element.value)) { + return true; + } + } + } + return false; +} +Sys.Mvc.RequiredValidator._validateTextualInput = function Sys_Mvc_RequiredValidator$_validateTextualInput(element) { + /// + /// + /// + return (!Sys.Mvc._validationUtil.stringIsNullOrEmpty(element.value)); +} +Sys.Mvc.RequiredValidator.prototype = { + + validate: function Sys_Mvc_RequiredValidator$validate(value, context) { + /// + /// + /// + /// + /// + var elements = context.fieldContext.elements; + if (!elements.length) { + return true; + } + var sampleElement = elements[0]; + if (Sys.Mvc.RequiredValidator._isTextualInputElement(sampleElement)) { + return Sys.Mvc.RequiredValidator._validateTextualInput(sampleElement); + } + if (Sys.Mvc.RequiredValidator._isRadioInputElement(sampleElement)) { + return Sys.Mvc.RequiredValidator._validateRadioInput(elements); + } + if (Sys.Mvc.RequiredValidator._isSelectInputElement(sampleElement)) { + return Sys.Mvc.RequiredValidator._validateSelectInput((sampleElement).options); + } + return true; + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.StringLengthValidator + +Sys.Mvc.StringLengthValidator = function Sys_Mvc_StringLengthValidator(minLength, maxLength) { + /// + /// + /// + /// + /// + /// + /// + /// + this._minLength = minLength; + this._maxLength = maxLength; +} +Sys.Mvc.StringLengthValidator.create = function Sys_Mvc_StringLengthValidator$create(rule) { + /// + /// + /// + var minLength = (rule.ValidationParameters['min'] || 0); + var maxLength = (rule.ValidationParameters['max'] || Number.MAX_VALUE); + return Function.createDelegate(new Sys.Mvc.StringLengthValidator(minLength, maxLength), new Sys.Mvc.StringLengthValidator(minLength, maxLength).validate); +} +Sys.Mvc.StringLengthValidator.prototype = { + _maxLength: 0, + _minLength: 0, + + validate: function Sys_Mvc_StringLengthValidator$validate(value, context) { + /// + /// + /// + /// + /// + if (Sys.Mvc._validationUtil.stringIsNullOrEmpty(value)) { + return true; + } + return (this._minLength <= value.length && value.length <= this._maxLength); + } +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc._validationUtil + +Sys.Mvc._validationUtil = function Sys_Mvc__validationUtil() { +} +Sys.Mvc._validationUtil.arrayIsNullOrEmpty = function Sys_Mvc__validationUtil$arrayIsNullOrEmpty(array) { + /// + /// + /// + return (!array || !array.length); +} +Sys.Mvc._validationUtil.stringIsNullOrEmpty = function Sys_Mvc__validationUtil$stringIsNullOrEmpty(value) { + /// + /// + /// + return (!value || !value.length); +} +Sys.Mvc._validationUtil.elementSupportsEvent = function Sys_Mvc__validationUtil$elementSupportsEvent(element, eventAttributeName) { + /// + /// + /// + /// + /// + return (eventAttributeName in element); +} +Sys.Mvc._validationUtil.removeAllChildren = function Sys_Mvc__validationUtil$removeAllChildren(element) { + /// + /// + while (element.firstChild) { + element.removeChild(element.firstChild); + } +} +Sys.Mvc._validationUtil.setInnerText = function Sys_Mvc__validationUtil$setInnerText(element, innerText) { + /// + /// + /// + /// + var textNode = document.createTextNode(innerText); + Sys.Mvc._validationUtil.removeAllChildren(element); + element.appendChild(textNode); +} + + +//////////////////////////////////////////////////////////////////////////////// +// Sys.Mvc.ValidatorRegistry + +Sys.Mvc.ValidatorRegistry = function Sys_Mvc_ValidatorRegistry() { + /// + /// +} +Sys.Mvc.ValidatorRegistry.getValidator = function Sys_Mvc_ValidatorRegistry$getValidator(rule) { + /// + /// + /// + var creator = Sys.Mvc.ValidatorRegistry.validators[rule.ValidationType]; + return (creator) ? creator(rule) : null; +} +Sys.Mvc.ValidatorRegistry._getDefaultValidators = function Sys_Mvc_ValidatorRegistry$_getDefaultValidators() { + /// + return { required: Function.createDelegate(null, Sys.Mvc.RequiredValidator.create), length: Function.createDelegate(null, Sys.Mvc.StringLengthValidator.create), regex: Function.createDelegate(null, Sys.Mvc.RegularExpressionValidator.create), range: Function.createDelegate(null, Sys.Mvc.RangeValidator.create), number: Function.createDelegate(null, Sys.Mvc.NumberValidator.create) }; +} + + +Sys.Mvc.NumberValidator.registerClass('Sys.Mvc.NumberValidator'); +Sys.Mvc.FormContext.registerClass('Sys.Mvc.FormContext'); +Sys.Mvc.FieldContext.registerClass('Sys.Mvc.FieldContext'); +Sys.Mvc.RangeValidator.registerClass('Sys.Mvc.RangeValidator'); +Sys.Mvc.RegularExpressionValidator.registerClass('Sys.Mvc.RegularExpressionValidator'); +Sys.Mvc.RequiredValidator.registerClass('Sys.Mvc.RequiredValidator'); +Sys.Mvc.StringLengthValidator.registerClass('Sys.Mvc.StringLengthValidator'); +Sys.Mvc._validationUtil.registerClass('Sys.Mvc._validationUtil'); +Sys.Mvc.ValidatorRegistry.registerClass('Sys.Mvc.ValidatorRegistry'); +Sys.Mvc.FormContext._validationSummaryErrorCss = 'validation-summary-errors'; +Sys.Mvc.FormContext._validationSummaryValidCss = 'validation-summary-valid'; +Sys.Mvc.FormContext._formValidationTag = '__MVC_FormValidation'; +Sys.Mvc.FieldContext._hasTextChangedTag = '__MVC_HasTextChanged'; +Sys.Mvc.FieldContext._hasValidationFiredTag = '__MVC_HasValidationFired'; +Sys.Mvc.FieldContext._inputElementErrorCss = 'input-validation-error'; +Sys.Mvc.FieldContext._inputElementValidCss = 'input-validation-valid'; +Sys.Mvc.FieldContext._validationMessageErrorCss = 'field-validation-error'; +Sys.Mvc.FieldContext._validationMessageValidCss = 'field-validation-valid'; +Sys.Mvc.ValidatorRegistry.validators = Sys.Mvc.ValidatorRegistry._getDefaultValidators(); + +// ---- Do not remove this footer ---- +// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) +// ----------------------------------- + +// register validation +Sys.Application.add_load(function() { + Sys.Application.remove_load(arguments.callee); + Sys.Mvc.FormContext._Application_Load(); +}); diff --git a/main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.js b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.js new file mode 100644 index 0000000..f91163a --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/MicrosoftMvcValidation.js @@ -0,0 +1,55 @@ +//---------------------------------------------------------- +// Copyright (C) Microsoft Corporation. All rights reserved. +//---------------------------------------------------------- +// MicrosoftMvcValidation.js + +Type.registerNamespace('Sys.Mvc');Sys.Mvc.$create_Validation=function(){return {};} +Sys.Mvc.$create_JsonValidationField=function(){return {};} +Sys.Mvc.$create_JsonValidationOptions=function(){return {};} +Sys.Mvc.$create_JsonValidationRule=function(){return {};} +Sys.Mvc.$create_ValidationContext=function(){return {};} +Sys.Mvc.NumberValidator=function(){} +Sys.Mvc.NumberValidator.create=function(rule){return Function.createDelegate(new Sys.Mvc.NumberValidator(),new Sys.Mvc.NumberValidator().validate);} +Sys.Mvc.NumberValidator.prototype={validate:function(value,context){if(Sys.Mvc._ValidationUtil.$1(value)){return true;}var $0=Number.parseLocale(value);return (!isNaN($0));}} +Sys.Mvc.FormContext=function(formElement,validationSummaryElement){this.$5=[];this.fields=new Array(0);this.$9=formElement;this.$7=validationSummaryElement;formElement['__MVC_FormValidation'] = this;if(validationSummaryElement){var $0=validationSummaryElement.getElementsByTagName('ul');if($0.length>0){this.$8=$0[0];}}this.$3=Function.createDelegate(this,this.$D);this.$4=Function.createDelegate(this,this.$E);} +Sys.Mvc.FormContext._Application_Load=function(){var $0=window.mvcClientValidationMetadata;if($0){while($0.length>0){var $1=$0.pop();Sys.Mvc.FormContext.$12($1);}}} +Sys.Mvc.FormContext.$F=function($p0,$p1){var $0=[];var $1=document.getElementsByName($p1);for(var $2=0;$2<$1.length;$2++){var $3=$1[$2];if(Sys.Mvc.FormContext.$10($p0,$3)){Array.add($0,$3);}}return $0;} +Sys.Mvc.FormContext.getValidationForForm=function(formElement){return formElement['__MVC_FormValidation'];} +Sys.Mvc.FormContext.$10=function($p0,$p1){while($p1){if($p0===$p1){return true;}$p1=$p1.parentNode;}return false;} +Sys.Mvc.FormContext.$12=function($p0){var $0=$get($p0.FormId);var $1=(!Sys.Mvc._ValidationUtil.$1($p0.ValidationSummaryId))?$get($p0.ValidationSummaryId):null;var $2=new Sys.Mvc.FormContext($0,$1);$2.enableDynamicValidation();$2.replaceValidationSummary=$p0.ReplaceValidationSummary;for(var $4=0;$4<$p0.Fields.length;$4++){var $5=$p0.Fields[$4];var $6=Sys.Mvc.FormContext.$F($0,$5.FieldName);var $7=(!Sys.Mvc._ValidationUtil.$1($5.ValidationMessageId))?$get($5.ValidationMessageId):null;var $8=new Sys.Mvc.FieldContext($2);Array.addRange($8.elements,$6);$8.validationMessageElement=$7;$8.replaceValidationMessageContents=$5.ReplaceValidationMessageContents;for(var $9=0;$9<$5.ValidationRules.length;$9++){var $A=$5.ValidationRules[$9];var $B=Sys.Mvc.ValidatorRegistry.getValidator($A);if($B){var $C=Sys.Mvc.$create_Validation();$C.fieldErrorMessage=$A.ErrorMessage;$C.validator=$B;Array.add($8.validations,$C);}}$8.enableDynamicValidation();Array.add($2.fields,$8);}var $3=$0.validationCallbacks;if(!$3){$3=[];$0.validationCallbacks = $3;}$3.push(Function.createDelegate(null,function(){ +return Sys.Mvc._ValidationUtil.$0($2.validate('submit'));}));return $2;} +Sys.Mvc.FormContext.prototype={$3:null,$4:null,$6:null,$7:null,$8:null,$9:null,replaceValidationSummary:false,addError:function(message){this.addErrors([message]);},addErrors:function(messages){if(!Sys.Mvc._ValidationUtil.$0(messages)){Array.addRange(this.$5,messages);this.$11();}},clearErrors:function(){Array.clear(this.$5);this.$11();},$A:function(){if(this.$7){if(this.$8){Sys.Mvc._ValidationUtil.$3(this.$8);for(var $0=0;$0=8){Sys.UI.DomEvent.addHandler($2,'propertychange',this.$9);}}else{Sys.UI.DomEvent.addHandler($2,'input',this.$8);}Sys.UI.DomEvent.addHandler($2,'change',this.$7);Sys.UI.DomEvent.addHandler($2,'blur',this.$6);}},$11:function($p0,$p1){var $0=$p1||this.defaultErrorMessage;if(Boolean.isInstanceOfType($p0)){return ($p0)?null:$0;}if(String.isInstanceOfType($p0)){return (($p0).length)?$p0:$0;}return null;},$12:function(){var $0=this.elements;return ($0.length>0)?$0[0].value:null;},$13:function(){var $0=this.elements;for(var $1=0;$1<$0.length;$1++){var $2=$0[$1];$2['__MVC_HasValidationFired'] = true;}},$14:function(){if(!this.$A.length){this.$C();}else{this.$B();}},validate:function(eventName){var $0=this.validations;var $1=[];var $2=this.$12();for(var $3=0;$3<$0.length;$3++){var $4=$0[$3];var $5=Sys.Mvc.$create_ValidationContext();$5.eventName=eventName;$5.fieldContext=this;$5.validation=$4;var $6=$4.validator($2,$5);var $7=this.$11($6,$4.fieldErrorMessage);if(!Sys.Mvc._ValidationUtil.$1($7)){Array.add($1,$7);}}this.$13();this.clearErrors();this.addErrors($1);return $1;}} +Sys.Mvc.RangeValidator=function(minimum,maximum){this.$0=minimum;this.$1=maximum;} +Sys.Mvc.RangeValidator.create=function(rule){var $0=rule.ValidationParameters['min'];var $1=rule.ValidationParameters['max'];return Function.createDelegate(new Sys.Mvc.RangeValidator($0,$1),new Sys.Mvc.RangeValidator($0,$1).validate);} +Sys.Mvc.RangeValidator.prototype={$0:null,$1:null,validate:function(value,context){if(Sys.Mvc._ValidationUtil.$1(value)){return true;}var $0=Number.parseLocale(value);return (!isNaN($0)&&this.$0<=$0&&$0<=this.$1);}} +Sys.Mvc.RegularExpressionValidator=function(pattern){this.$0=pattern;} +Sys.Mvc.RegularExpressionValidator.create=function(rule){var $0=rule.ValidationParameters['pattern'];return Function.createDelegate(new Sys.Mvc.RegularExpressionValidator($0),new Sys.Mvc.RegularExpressionValidator($0).validate);} +Sys.Mvc.RegularExpressionValidator.prototype={$0:null,validate:function(value,context){if(Sys.Mvc._ValidationUtil.$1(value)){return true;}var $0=new RegExp(this.$0);var $1=$0.exec(value);return (!Sys.Mvc._ValidationUtil.$0($1)&&$1[0].length===value.length);}} +Sys.Mvc.RequiredValidator=function(){} +Sys.Mvc.RequiredValidator.create=function(rule){return Function.createDelegate(new Sys.Mvc.RequiredValidator(),new Sys.Mvc.RequiredValidator().validate);} +Sys.Mvc.RequiredValidator.$0=function($p0){if($p0.tagName.toUpperCase()==='INPUT'){var $0=($p0.type).toUpperCase();if($0==='RADIO'){return true;}}return false;} +Sys.Mvc.RequiredValidator.$1=function($p0){if($p0.tagName.toUpperCase()==='SELECT'){return true;}return false;} +Sys.Mvc.RequiredValidator.$2=function($p0){if($p0.tagName.toUpperCase()==='INPUT'){var $0=($p0.type).toUpperCase();switch($0){case 'TEXT':case 'PASSWORD':case 'FILE':return true;}}if($p0.tagName.toUpperCase()==='TEXTAREA'){return true;}return false;} +Sys.Mvc.RequiredValidator.$3=function($p0){for(var $0=0;$0<$p0.length;$0++){var $1=$p0[$0];if($1.checked){return true;}}return false;} +Sys.Mvc.RequiredValidator.$4=function($p0){for(var $0=0;$0<$p0.length;$0++){var $1=$p0[$0];if($1.selected){if(!Sys.Mvc._ValidationUtil.$1($1.value)){return true;}}}return false;} +Sys.Mvc.RequiredValidator.$5=function($p0){return (!Sys.Mvc._ValidationUtil.$1($p0.value));} +Sys.Mvc.RequiredValidator.prototype={validate:function(value,context){var $0=context.fieldContext.elements;if(!$0.length){return true;}var $1=$0[0];if(Sys.Mvc.RequiredValidator.$2($1)){return Sys.Mvc.RequiredValidator.$5($1);}if(Sys.Mvc.RequiredValidator.$0($1)){return Sys.Mvc.RequiredValidator.$3($0);}if(Sys.Mvc.RequiredValidator.$1($1)){return Sys.Mvc.RequiredValidator.$4(($1).options);}return true;}} +Sys.Mvc.StringLengthValidator=function(minLength,maxLength){this.$1=minLength;this.$0=maxLength;} +Sys.Mvc.StringLengthValidator.create=function(rule){var $0=(rule.ValidationParameters['min']||0);var $1=(rule.ValidationParameters['max']||Number.MAX_VALUE);return Function.createDelegate(new Sys.Mvc.StringLengthValidator($0,$1),new Sys.Mvc.StringLengthValidator($0,$1).validate);} +Sys.Mvc.StringLengthValidator.prototype={$0:0,$1:0,validate:function(value,context){if(Sys.Mvc._ValidationUtil.$1(value)){return true;}return (this.$1<=value.length&&value.length<=this.$0);}} +Sys.Mvc._ValidationUtil=function(){} +Sys.Mvc._ValidationUtil.$0=function($p0){return (!$p0||!$p0.length);} +Sys.Mvc._ValidationUtil.$1=function($p0){return (!$p0||!$p0.length);} +Sys.Mvc._ValidationUtil.$2=function($p0,$p1){return ($p1 in $p0);} +Sys.Mvc._ValidationUtil.$3=function($p0){while($p0.firstChild){$p0.removeChild($p0.firstChild);}} +Sys.Mvc._ValidationUtil.$4=function($p0,$p1){var $0=document.createTextNode($p1);Sys.Mvc._ValidationUtil.$3($p0);$p0.appendChild($0);} +Sys.Mvc.ValidatorRegistry=function(){} +Sys.Mvc.ValidatorRegistry.getValidator=function(rule){var $0=Sys.Mvc.ValidatorRegistry.validators[rule.ValidationType];return ($0)?$0(rule):null;} +Sys.Mvc.ValidatorRegistry.$0=function(){return {required:Function.createDelegate(null,Sys.Mvc.RequiredValidator.create),length:Function.createDelegate(null,Sys.Mvc.StringLengthValidator.create),regex:Function.createDelegate(null,Sys.Mvc.RegularExpressionValidator.create),range:Function.createDelegate(null,Sys.Mvc.RangeValidator.create),number:Function.createDelegate(null,Sys.Mvc.NumberValidator.create)};} +Sys.Mvc.NumberValidator.registerClass('Sys.Mvc.NumberValidator');Sys.Mvc.FormContext.registerClass('Sys.Mvc.FormContext');Sys.Mvc.FieldContext.registerClass('Sys.Mvc.FieldContext');Sys.Mvc.RangeValidator.registerClass('Sys.Mvc.RangeValidator');Sys.Mvc.RegularExpressionValidator.registerClass('Sys.Mvc.RegularExpressionValidator');Sys.Mvc.RequiredValidator.registerClass('Sys.Mvc.RequiredValidator');Sys.Mvc.StringLengthValidator.registerClass('Sys.Mvc.StringLengthValidator');Sys.Mvc._ValidationUtil.registerClass('Sys.Mvc._ValidationUtil');Sys.Mvc.ValidatorRegistry.registerClass('Sys.Mvc.ValidatorRegistry');Sys.Mvc.ValidatorRegistry.validators=Sys.Mvc.ValidatorRegistry.$0(); +// ---- Do not remove this footer ---- +// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net) +// ----------------------------------- +Sys.Application.add_load(function(){Sys.Application.remove_load(arguments.callee);Sys.Mvc.FormContext._Application_Load();}); \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Scripts/jquery-1.4.4-vsdoc.js b/main/MyFriendsAround.Web/Scripts/jquery-1.4.4-vsdoc.js new file mode 100644 index 0000000..cca69bc --- /dev/null +++ b/main/MyFriendsAround.Web/Scripts/jquery-1.4.4-vsdoc.js @@ -0,0 +1,9035 @@ +/* + * This file has been commented to support Visual Studio Intellisense. + * You should not use this file at runtime inside the browser--it is only + * intended to be used only for design-time IntelliSense. Please use the + * standard jQuery library for all production use. + * + * Comment version: 1.4.4a + */ + +/*! + * Note: While Microsoft is not the author of this file, Microsoft is + * offering you a license subject to the terms of the Microsoft Software + * License Terms for Microsoft ASP.NET Model View Controller 3. + * Microsoft reserves all other rights. The notices below are provided + * for informational purposes only and are not the license terms under + * which Microsoft distributed this file. + * + * jQuery JavaScript Library v1.4.4 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * + * Date: Thu Nov 11 19:04:53 2010 -0500 + */ +(function( window, undefined ) { + +// Use the correct document accordingly with window argument (sandbox) +var document = window.document; +var jQuery = (function() { + +// Define a local copy of jQuery +var jQuery = function( selector, context ) { + /// + /// 1: $(expression, context) - This function accepts a string containing a CSS selector which is then used to match a set of elements. + /// 2: $(html) - Create DOM elements on-the-fly from the provided String of raw HTML. + /// 3: $(elements) - Wrap jQuery functionality around a single or multiple DOM Element(s). + /// 4: $(callback) - A shorthand for $(document).ready(). + /// 5: $() - As of jQuery 1.4, if you pass no arguments in to the jQuery() method, an empty jQuery set will be returned. + /// + /// + /// 1: expression - An expression to search with. + /// 2: html - A string of HTML to create on the fly. + /// 3: elements - DOM element(s) to be encapsulated by a jQuery object. + /// 4: callback - The function to execute when the DOM is ready. + /// + /// + /// 1: context - A DOM Element, Document or jQuery to use as context. + /// + /// + + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context ); + }, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // A central reference to the root jQuery(document) + rootjQuery, + + // A simple way to check for HTML strings or ID strings + // (both of which we optimize for) + quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/, + + // Is it a simple selector + isSimple = /^.[^:#\[\.,]*$/, + + // Check if a string has a non-whitespace character in it + rnotwhite = /\S/, + rwhite = /\s/, + + // Used for trimming whitespace + trimLeft = /^\s+/, + trimRight = /\s+$/, + + // Check for non-word characters + rnonword = /\W/, + + // Check for digits + rdigit = /\d/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, + rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + + // Useragent RegExp + rwebkit = /(webkit)[ \/]([\w.]+)/, + ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, + rmsie = /(msie) ([\w.]+)/, + rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, + + // Keep a UserAgent string for use with jQuery.browser + userAgent = navigator.userAgent, + + // For matching the engine and version of the browser + browserMatch, + + // Has the ready events already been bound? + readyBound = false, + + // The functions to execute on DOM ready + readyList = [], + + // The ready event handler + DOMContentLoaded, + + // Save a reference to some core methods + toString = Object.prototype.toString, + hasOwn = Object.prototype.hasOwnProperty, + push = Array.prototype.push, + slice = Array.prototype.slice, + trim = String.prototype.trim, + indexOf = Array.prototype.indexOf, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + init: function( selector, context ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), or $(undefined) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // The body element only exists once, optimize finding it + if ( selector === "body" && !context && document.body ) { + this.context = document; + this[0] = document.body; + this.selector = "body"; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + // Are we dealing with HTML string or an ID? + match = quickExpr.exec( selector ); + + // Verify a match, and that no context was specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + doc = (context ? context.ownerDocument || context : document); + + // If a single string is passed in and it's a single tag + // just do a createElement and skip the rest + ret = rsingleTag.exec( selector ); + + if ( ret ) { + if ( jQuery.isPlainObject( context ) ) { + selector = [ document.createElement( ret[1] ) ]; + jQuery.fn.attr.call( selector, context, true ); + + } else { + selector = [ doc.createElement( ret[1] ) ]; + } + + } else { + ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); + selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes; + } + + return jQuery.merge( this, selector ); + + // HANDLE: $("#id") + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $("TAG") + } else if ( !context && !rnonword.test( selector ) ) { + this.selector = selector; + this.context = document; + selector = document.getElementsByTagName( selector ); + return jQuery.merge( this, selector ); + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return (context || rootjQuery).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return jQuery( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if (selector.selector !== undefined) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.4.4", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + /// + /// The number of elements currently matched. + /// Part of Core + /// + /// + + return this.length; + }, + + toArray: function() { + /// + /// Retrieve all the DOM elements contained in the jQuery set, as an array. + /// + /// + return slice.call( this, 0 ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + /// + /// Access a single matched element. num is used to access the + /// Nth element matched. + /// Part of Core + /// + /// + /// + /// Access the element in the Nth position. + /// + + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this.slice(num)[ 0 ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + /// + /// Set the jQuery object to an array of elements, while maintaining + /// the stack. + /// Part of Core + /// + /// + /// + /// An array of elements + /// + + // Build a new jQuery matched element set + var ret = jQuery(); + + if ( jQuery.isArray( elems ) ) { + push.apply( ret, elems ); + + } else { + jQuery.merge( ret, elems ); + } + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + (this.selector ? " " : "") + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + /// + /// Execute a function within the context of every matched element. + /// This means that every time the passed-in function is executed + /// (which is once for every element matched) the 'this' keyword + /// points to the specific element. + /// Additionally, the function, when executed, is passed a single + /// argument representing the position of the element in the matched + /// set. + /// Part of Core + /// + /// + /// + /// A function to execute + /// + + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + /// + /// Binds a function to be executed whenever the DOM is ready to be traversed and manipulated. + /// + /// The function to be executed when the DOM is ready. + + // Attach the listeners + jQuery.bindReady(); + + // If the DOM is already ready + if ( jQuery.isReady ) { + // Execute the function immediately + fn.call( document, jQuery ); + + // Otherwise, remember the function for later + } else if ( readyList ) { + // Add the function to the wait list + readyList.push( fn ); + } + + return this; + }, + + eq: function( i ) { + /// + /// Reduce the set of matched elements to a single element. + /// The position of the element in the set of matched elements + /// starts at 0 and goes to length - 1. + /// Part of Core + /// + /// + /// + /// pos The index of the element that you wish to limit to. + /// + + return i === -1 ? + this.slice( i ) : + this.slice( i, +i + 1 ); + }, + + first: function() { + /// + /// Reduce the set of matched elements to the first in the set. + /// + /// + + return this.eq( 0 ); + }, + + last: function() { + /// + /// Reduce the set of matched elements to the final one in the set. + /// + /// + + return this.eq( -1 ); + }, + + slice: function() { + /// + /// Selects a subset of the matched elements. Behaves exactly like the built-in Array slice method. + /// + /// Where to start the subset (0-based). + /// Where to end the subset (not including the end element itself). + /// If omitted, ends at the end of the selection + /// The sliced elements + + return this.pushStack( slice.apply( this, arguments ), + "slice", slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + /// + /// This member is internal. + /// + /// + /// + + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + /// + /// End the most recent 'destructive' operation, reverting the list of matched elements + /// back to its previous state. After an end operation, the list of matched elements will + /// revert to the last state of matched elements. + /// If there was no destructive operation before, an empty set is returned. + /// Part of DOM/Traversing + /// + /// + + return this.prevObject || jQuery(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + /// + /// Extend one object with one or more others, returning the original, + /// modified, object. This is a great utility for simple inheritance. + /// jQuery.extend(settings, options); + /// var settings = jQuery.extend({}, defaults, options); + /// Part of JavaScript + /// + /// + /// The object to extend + /// + /// + /// The object that will be merged into the first. + /// + /// + /// (optional) More objects to merge into the first + /// + /// + + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + /// + /// Run this function to give control of the $ variable back + /// to whichever library first implemented it. This helps to make + /// sure that jQuery doesn't conflict with the $ object + /// of other libraries. + /// By using this function, you will only be able to access jQuery + /// using the 'jQuery' variable. For example, where you used to do + /// $("div p"), you now must do jQuery("div p"). + /// Part of Core + /// + /// + + window.$ = _$; + + if ( deep ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + /// + /// This method is internal. + /// + /// + + // A third-party is pushing the ready event forwards + if ( wait === true ) { + jQuery.readyWait--; + } + + // Make sure that the DOM is not already loaded + if ( !jQuery.readyWait || (wait !== true && !jQuery.isReady) ) { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + if ( readyList ) { + // Execute all of them + var fn, + i = 0, + ready = readyList; + + // Reset the list of functions + readyList = null; + + while ( (fn = ready[ i++ ]) ) { + fn.call( document, jQuery ); + } + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger( "ready" ).unbind( "ready" ); + } + } + } + }, + + bindReady: function() { + if ( readyBound ) { + return; + } + + readyBound = true; + + // Catch cases where $(document).ready() is called after the + // browser event has already occurred. + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + return setTimeout( jQuery.ready, 1 ); + } + + // Mozilla, Opera and webkit nightlies currently support this event + if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else if ( document.attachEvent ) { + // ensure firing before onload, + // maybe late but safe also for iframes + document.attachEvent("onreadystatechange", DOMContentLoaded); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var toplevel = false; + + try { + toplevel = window.frameElement == null; + } catch(e) {} + + if ( document.documentElement.doScroll && toplevel ) { + doScrollCheck(); + } + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + /// + /// Determines if the parameter passed is a function. + /// + /// The object to check + /// True if the parameter is a function; otherwise false. + + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + /// + /// Determine if the parameter passed is an array. + /// + /// Object to test whether or not it is an array. + /// True if the parameter is a function; otherwise false. + + return jQuery.type(obj) === "array"; + }, + + // A crude way of determining if an object is a window + isWindow: function( obj ) { + return obj && typeof obj === "object" && "setInterval" in obj; + }, + + isNaN: function( obj ) { + return obj == null || !rdigit.test( obj ) || isNaN( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + /// + /// Check to see if an object is a plain object (created using "{}" or "new Object"). + /// + /// + /// The object that will be checked to see if it's a plain object. + /// + /// + + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call(obj, "constructor") && + !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + /// + /// Check to see if an object is empty (contains no properties). + /// + /// + /// The object that will be checked to see if it's empty. + /// + /// + + for ( var name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw msg; + }, + + parseJSON: function( data ) { + if ( typeof data !== "string" || !data ) { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test(data.replace(rvalidescape, "@") + .replace(rvalidtokens, "]") + .replace(rvalidbraces, "")) ) { + + // Try to use the native JSON parser first + return window.JSON && window.JSON.parse ? + window.JSON.parse( data ) : + (new Function("return " + data))(); + + } else { + jQuery.error( "Invalid JSON: " + data ); + } + }, + + noop: function() { + /// + /// An empty function. + /// + /// + }, + + // Evalulates a script in a global context + globalEval: function( data ) { + /// + /// Internally evaluates a script in a global context. + /// + /// + + if ( data && rnotwhite.test(data) ) { + // Inspired by code by Andrea Giammarchi + // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html + var head = document.getElementsByTagName("head")[0] || document.documentElement, + script = document.createElement("script"); + + script.type = "text/javascript"; + + if ( jQuery.support.scriptEval ) { + script.appendChild( document.createTextNode( data ) ); + } else { + script.text = data; + } + + // Use insertBefore instead of appendChild to circumvent an IE6 bug. + // This arises when a base node is used (#2709). + head.insertBefore( script, head.firstChild ); + head.removeChild( script ); + } + }, + + nodeName: function( elem, name ) { + /// + /// Checks whether the specified element has the specified DOM node name. + /// + /// The element to examine + /// The node name to check + /// True if the specified node name matches the node's DOM node name; otherwise false + + return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); + }, + + // args is for internal usage only + each: function( object, callback, args ) { + /// + /// A generic iterator function, which can be used to seemlessly + /// iterate over both objects and arrays. This function is not the same + /// as $().each() - which is used to iterate, exclusively, over a jQuery + /// object. This function can be used to iterate over anything. + /// The callback has two arguments:the key (objects) or index (arrays) as first + /// the first, and the value as the second. + /// Part of JavaScript + /// + /// + /// The object, or array, to iterate over. + /// + /// + /// The function that will be executed on every object. + /// + /// + + var name, i = 0, + length = object.length, + isObj = length === undefined || jQuery.isFunction(object); + + if ( args ) { + if ( isObj ) { + for ( name in object ) { + if ( callback.apply( object[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( object[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in object ) { + if ( callback.call( object[ name ], name, object[ name ] ) === false ) { + break; + } + } + } else { + for ( var value = object[0]; + i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {} + } + } + + return object; + }, + + // Use native String.trim function wherever possible + trim: trim ? + function( text ) { + return text == null ? + "" : + trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); + }, + + // results is for internal usage only + makeArray: function( array, results ) { + /// + /// Turns anything into a true array. This is an internal method. + /// + /// Anything to turn into an actual Array + /// + /// + + var ret = results || []; + + if ( array != null ) { + // The window, strings (and functions) also have 'length' + // The extra typeof function check is to prevent crashes + // in Safari 2 (See: #3039) + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + var type = jQuery.type(array); + + if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { + push.call( ret, array ); + } else { + jQuery.merge( ret, array ); + } + } + + return ret; + }, + + inArray: function( elem, array ) { + if ( array.indexOf ) { + return array.indexOf( elem ); + } + + for ( var i = 0, length = array.length; i < length; i++ ) { + if ( array[ i ] === elem ) { + return i; + } + } + + return -1; + }, + + merge: function( first, second ) { + /// + /// Merge two arrays together, removing all duplicates. + /// The new array is: All the results from the first array, followed + /// by the unique results from the second array. + /// Part of JavaScript + /// + /// + /// + /// The first array to merge. + /// + /// + /// The second array to merge. + /// + + var i = first.length, + j = 0; + + if ( typeof second.length === "number" ) { + for ( var l = second.length; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + /// + /// Filter items out of an array, by using a filter function. + /// The specified function will be passed two arguments: The + /// current array item and the index of the item in the array. The + /// function must return 'true' to keep the item in the array, + /// false to remove it. + /// }); + /// Part of JavaScript + /// + /// + /// + /// array The Array to find items in. + /// + /// + /// The function to process each item against. + /// + /// + /// Invert the selection - select the opposite of the function. + /// + + var ret = [], retVal; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( var i = 0, length = elems.length; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + /// + /// Translate all items in an array to another array of items. + /// The translation function that is provided to this method is + /// called for each item in the array and is passed one argument: + /// The item to be translated. + /// The function can then return the translated value, 'null' + /// (to remove the item), or an array of values - which will + /// be flattened into the full array. + /// Part of JavaScript + /// + /// + /// + /// array The Array to translate. + /// + /// + /// The function to process each item against. + /// + + var ret = [], value; + + // Go through the array, translating each of the items to their + // new value (or values). + for ( var i = 0, length = elems.length; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + proxy: function( fn, proxy, thisObject ) { + /// + /// Takes a function and returns a new one that will always have a particular scope. + /// + /// + /// The function whose scope will be changed. + /// + /// + /// The object to which the scope of the function should be set. + /// + /// + + if ( arguments.length === 2 ) { + if ( typeof proxy === "string" ) { + thisObject = fn; + fn = thisObject[ proxy ]; + proxy = undefined; + + } else if ( proxy && !jQuery.isFunction( proxy ) ) { + thisObject = proxy; + proxy = undefined; + } + } + + if ( !proxy && fn ) { + proxy = function() { + return fn.apply( thisObject || this, arguments ); + }; + } + + // Set the guid of unique handler to the same of original handler, so it can be removed + if ( fn ) { + proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; + } + + // So proxy can be declared as an argument + return proxy; + }, + + // Mutifunctional method to get and set values to a collection + // The value/s can be optionally by executed if its a function + access: function( elems, key, value, exec, fn, pass ) { + var length = elems.length; + + // Setting many attributes + if ( typeof key === "object" ) { + for ( var k in key ) { + jQuery.access( elems, k, key[k], exec, fn, value ); + } + return elems; + } + + // Setting one attribute + if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = !pass && exec && jQuery.isFunction(value); + + for ( var i = 0; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + + return elems; + } + + // Getting an attribute + return length ? fn( elems[0], key ) : undefined; + }, + + now: function() { + return (new Date()).getTime(); + }, + + // Use of jQuery.browser is frowned upon. + // More details: http://docs.jquery.com/Utilities/jQuery.browser + uaMatch: function( ua ) { + ua = ua.toLowerCase(); + + var match = rwebkit.exec( ua ) || + ropera.exec( ua ) || + rmsie.exec( ua ) || + ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || + []; + + return { browser: match[1] || "", version: match[2] || "0" }; + }, + + browser: {} +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +browserMatch = jQuery.uaMatch( userAgent ); +if ( browserMatch.browser ) { + jQuery.browser[ browserMatch.browser ] = true; + jQuery.browser.version = browserMatch.version; +} + +// Deprecated, use jQuery.browser.webkit instead +if ( jQuery.browser.webkit ) { + jQuery.browser.safari = true; +} + +if ( indexOf ) { + jQuery.inArray = function( elem, array ) { + /// + /// Determines the index of the first parameter in the array. + /// + /// The value to see if it exists in the array. + /// The array to look through for the value + /// The 0-based index of the item if it was found, otherwise -1. + + return indexOf.call( array, elem ); + }; +} + +// Verify that \s matches non-breaking spaces +// (IE fails on this test) +if ( !rwhite.test( "\xA0" ) ) { + trimLeft = /^[\s\xA0]+/; + trimRight = /[\s\xA0]+$/; +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); + +// Cleanup functions for the document ready method +if ( document.addEventListener ) { + DOMContentLoaded = function() { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + }; + +} else if ( document.attachEvent ) { + DOMContentLoaded = function() { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( document.readyState === "complete" ) { + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }; +} + +// The DOM ready check for Internet Explorer +function doScrollCheck() { + if ( jQuery.isReady ) { + return; + } + + try { + // If IE is used, use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + document.documentElement.doScroll("left"); + } catch(e) { + setTimeout( doScrollCheck, 1 ); + return; + } + + // and execute any waiting functions + jQuery.ready(); +} + +// Expose jQuery to the global object +return (window.jQuery = window.$ = jQuery); + +})(); + + + +// [vsdoc] The following function has been modified for IntelliSense. +// [vsdoc] Stubbing support properties to "false" for IntelliSense compat. +(function() { + + jQuery.support = {}; + + // var root = document.documentElement, + // script = document.createElement("script"), + // div = document.createElement("div"), + // id = "script" + jQuery.now(); + + // div.style.display = "none"; + // div.innerHTML = "
a"; + + // var all = div.getElementsByTagName("*"), + // a = div.getElementsByTagName("a")[0], + // select = document.createElement("select"), + // opt = select.appendChild( document.createElement("option") ); + + // // Can't get basic test support + // if ( !all || !all.length || !a ) { + // return; + // } + + jQuery.support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: false, + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: false, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: false, + + // Get the style information from getAttribute + // (IE uses .cssText insted) + style: false, + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: false, + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: false, + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: false, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: false, + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: false, + + // Will be defined later + deleteExpando: false, + optDisabled: false, + checkClone: false, + scriptEval: false, + noCloneEvent: false, + boxModel: false, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableHiddenOffsets: true + }; + + // // Make sure that the options inside disabled selects aren't marked as disabled + // // (WebKit marks them as diabled) + // select.disabled = true; + // jQuery.support.optDisabled = !opt.disabled; + + // script.type = "text/javascript"; + // try { + // script.appendChild( document.createTextNode( "window." + id + "=1;" ) ); + // } catch(e) {} + + // root.insertBefore( script, root.firstChild ); + + // // Make sure that the execution of code works by injecting a script + // // tag with appendChild/createTextNode + // // (IE doesn't support this, fails, and uses .text instead) + // if ( window[ id ] ) { + // jQuery.support.scriptEval = true; + // delete window[ id ]; + // } + + // // Test to see if it's possible to delete an expando from an element + // // Fails in Internet Explorer + // try { + // delete script.test; + + // } catch(e) { + // jQuery.support.deleteExpando = false; + // } + + // root.removeChild( script ); + + // if ( div.attachEvent && div.fireEvent ) { + // div.attachEvent("onclick", function click() { + // // Cloning a node shouldn't copy over any + // // bound event handlers (IE does this) + // jQuery.support.noCloneEvent = false; + // div.detachEvent("onclick", click); + // }); + // div.cloneNode(true).fireEvent("onclick"); + // } + + // div = document.createElement("div"); + // div.innerHTML = ""; + + // var fragment = document.createDocumentFragment(); + // fragment.appendChild( div.firstChild ); + + // // WebKit doesn't clone checked state correctly in fragments + // jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked; + + // // Figure out if the W3C box model works as expected + // // document.body must exist before we can do this + // jQuery(function() { + // var div = document.createElement("div"); + // div.style.width = div.style.paddingLeft = "1px"; + + // document.body.appendChild( div ); + // jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; + + // if ( "zoom" in div.style ) { + // // Check if natively block-level elements act like inline-block + // // elements when setting their display to 'inline' and giving + // // them layout + // // (IE < 8 does this) + // div.style.display = "inline"; + // div.style.zoom = 1; + // jQuery.support.inlineBlockNeedsLayout = div.offsetWidth === 2; + + // // Check if elements with layout shrink-wrap their children + // // (IE 6 does this) + // div.style.display = ""; + // div.innerHTML = "
"; + // jQuery.support.shrinkWrapBlocks = div.offsetWidth !== 2; + // } + + // div.innerHTML = "
t
"; + // var tds = div.getElementsByTagName("td"); + + // // Check if table cells still have offsetWidth/Height when they are set + // // to display:none and there are still other visible table cells in a + // // table row; if so, offsetWidth/Height are not reliable for use when + // // determining if an element has been hidden directly using + // // display:none (it is still safe to use offsets if a parent element is + // // hidden; don safety goggles and see bug #4512 for more information). + // // (only IE 8 fails this test) + // jQuery.support.reliableHiddenOffsets = tds[0].offsetHeight === 0; + + // tds[0].style.display = ""; + // tds[1].style.display = "none"; + + // // Check if empty table cells still have offsetWidth/Height + // // (IE < 8 fail this test) + // jQuery.support.reliableHiddenOffsets = jQuery.support.reliableHiddenOffsets && tds[0].offsetHeight === 0; + // div.innerHTML = ""; + + // document.body.removeChild( div ).style.display = "none"; + // div = tds = null; + // }); + + // // Technique from Juriy Zaytsev + // // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ + // var eventSupported = function( eventName ) { + // var el = document.createElement("div"); + // eventName = "on" + eventName; + + // var isSupported = (eventName in el); + // if ( !isSupported ) { + // el.setAttribute(eventName, "return;"); + // isSupported = typeof el[eventName] === "function"; + // } + // el = null; + + // return isSupported; + // }; + + jQuery.support.submitBubbles = false; + jQuery.support.changeBubbles = false; + + // // release memory in IE + // root = script = div = all = a = null; +})(); + + + +var windowData = {}, + rbrace = /^(?:\{.*\}|\[.*\])$/; + +jQuery.extend({ + cache: {}, + + // Please use with caution + uuid: 0, + + // Unique for each copy of jQuery on the page + expando: "jQuery" + jQuery.now(), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + data: function( elem, name, data ) { + /// + /// Store arbitrary data associated with the specified element. + /// + /// + /// The DOM element to associate with the data. + /// + /// + /// A string naming the piece of data to set. + /// + /// + /// The new data value. + /// + /// + + if ( !jQuery.acceptData( elem ) ) { + return; + } + + elem = elem == window ? + windowData : + elem; + + var isNode = elem.nodeType, + id = isNode ? elem[ jQuery.expando ] : null, + cache = jQuery.cache, thisCache; + + if ( isNode && !id && typeof name === "string" && data === undefined ) { + return; + } + + // Get the data from the object directly + if ( !isNode ) { + cache = elem; + + // Compute a unique ID for the element + } else if ( !id ) { + elem[ jQuery.expando ] = id = ++jQuery.uuid; + } + + // Avoid generating a new cache unless none exists and we + // want to manipulate it. + if ( typeof name === "object" ) { + if ( isNode ) { + cache[ id ] = jQuery.extend(cache[ id ], name); + + } else { + jQuery.extend( cache, name ); + } + + } else if ( isNode && !cache[ id ] ) { + cache[ id ] = {}; + } + + thisCache = isNode ? cache[ id ] : cache; + + // Prevent overriding the named cache with undefined values + if ( data !== undefined ) { + thisCache[ name ] = data; + } + + return typeof name === "string" ? thisCache[ name ] : thisCache; + }, + + removeData: function( elem, name ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + elem = elem == window ? + windowData : + elem; + + var isNode = elem.nodeType, + id = isNode ? elem[ jQuery.expando ] : elem, + cache = jQuery.cache, + thisCache = isNode ? cache[ id ] : id; + + // If we want to remove a specific section of the element's data + if ( name ) { + if ( thisCache ) { + // Remove the section of cache data + delete thisCache[ name ]; + + // If we've removed all the data, remove the element's cache + if ( isNode && jQuery.isEmptyObject(thisCache) ) { + jQuery.removeData( elem ); + } + } + + // Otherwise, we want to remove all of the element's data + } else { + if ( isNode && jQuery.support.deleteExpando ) { + delete elem[ jQuery.expando ]; + + } else if ( elem.removeAttribute ) { + elem.removeAttribute( jQuery.expando ); + + // Completely remove the data cache + } else if ( isNode ) { + delete cache[ id ]; + + // Remove all fields from the object + } else { + for ( var n in elem ) { + delete elem[ n ]; + } + } + } + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + if ( elem.nodeName ) { + var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; + + if ( match ) { + return !(match === true || elem.getAttribute("classid") !== match); + } + } + + return true; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + /// + /// Store arbitrary data associated with the matched elements. + /// + /// + /// A string naming the piece of data to set. + /// + /// + /// The new data value. + /// + /// + + var data = null; + + if ( typeof key === "undefined" ) { + if ( this.length ) { + var attr = this[0].attributes, name; + data = jQuery.data( this[0] ); + + for ( var i = 0, l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( name.indexOf( "data-" ) === 0 ) { + name = name.substr( 5 ); + dataAttr( this[0], name, data[ name ] ); + } + } + } + + return data; + + } else if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + var parts = key.split("."); + parts[1] = parts[1] ? "." + parts[1] : ""; + + if ( value === undefined ) { + data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); + + // Try to fetch any internally stored data first + if ( data === undefined && this.length ) { + data = jQuery.data( this[0], key ); + data = dataAttr( this[0], key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + + } else { + return this.each(function() { + var $this = jQuery( this ), + args = [ parts[0], value ]; + + $this.triggerHandler( "setData" + parts[1] + "!", args ); + jQuery.data( this, key, value ); + $this.triggerHandler( "changeData" + parts[1] + "!", args ); + }); + } + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + data = elem.getAttribute( "data-" + key ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + !jQuery.isNaN( data ) ? parseFloat( data ) : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + + + + +jQuery.extend({ + queue: function( elem, type, data ) { + if ( !elem ) { + return; + } + + type = (type || "fx") + "queue"; + var q = jQuery.data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( !data ) { + return q || []; + } + + if ( !q || jQuery.isArray(data) ) { + q = jQuery.data( elem, type, jQuery.makeArray(data) ); + + } else { + q.push( data ); + } + + return q; + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + fn = queue.shift(); + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + } + + if ( fn ) { + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift("inprogress"); + } + + fn.call(elem, function() { + jQuery.dequeue(elem, type); + }); + } + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + /// + /// 1: queue() - Returns a reference to the first element's queue (which is an array of functions). + /// 2: queue(callback) - Adds a new function, to be executed, onto the end of the queue of all matched elements. + /// 3: queue(queue) - Replaces the queue of all matched element with this new queue (the array of functions). + /// + /// The function to add to the queue. + /// + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + } + + if ( data === undefined ) { + return jQuery.queue( this[0], type ); + } + return this.each(function( i ) { + var queue = jQuery.queue( this, type, data ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + /// + /// Removes a queued function from the front of the queue and executes it. + /// + /// The type of queue to access. + /// + + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + /// + /// Set a timer to delay execution of subsequent items in the queue. + /// + /// + /// An integer indicating the number of milliseconds to delay execution of the next item in the queue. + /// + /// + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// + /// + + time = jQuery.fx ? jQuery.fx.speeds[time] || time : time; + type = type || "fx"; + + return this.queue( type, function() { + var elem = this; + setTimeout(function() { + jQuery.dequeue( elem, type ); + }, time ); + }); + }, + + clearQueue: function( type ) { + /// + /// Remove from the queue all items that have not yet been run. + /// + /// + /// A string containing the name of the queue. Defaults to fx, the standard effects queue. + /// + /// + + return this.queue( type || "fx", [] ); + } +}); + + + + +var rclass = /[\n\t]/g, + rspaces = /\s+/, + rreturn = /\r/g, + rspecialurl = /^(?:href|src|style)$/, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea)?$/i, + rradiocheck = /^(?:radio|checkbox)$/i; + +jQuery.props = { + "for": "htmlFor", + "class": "className", + readonly: "readOnly", + maxlength: "maxLength", + cellspacing: "cellSpacing", + rowspan: "rowSpan", + colspan: "colSpan", + tabindex: "tabIndex", + usemap: "useMap", + frameborder: "frameBorder" +}; + +jQuery.fn.extend({ + attr: function( name, value ) { + /// + /// Set a single property to a computed value, on all matched elements. + /// Instead of a value, a function is provided, that computes the value. + /// Part of DOM/Attributes + /// + /// + /// + /// The name of the property to set. + /// + /// + /// A function returning the value to set. + /// + + return jQuery.access( this, name, value, true, jQuery.attr ); + }, + + removeAttr: function( name, fn ) { + /// + /// Remove an attribute from each of the matched elements. + /// Part of DOM/Attributes + /// + /// + /// An attribute to remove. + /// + /// + + return this.each(function(){ + jQuery.attr( this, name, "" ); + if ( this.nodeType === 1 ) { + this.removeAttribute( name ); + } + }); + }, + + addClass: function( value ) { + /// + /// Adds the specified class(es) to each of the set of matched elements. + /// Part of DOM/Attributes + /// + /// + /// One or more class names to be added to the class attribute of each matched element. + /// + /// + + if ( jQuery.isFunction(value) ) { + return this.each(function(i) { + var self = jQuery(this); + self.addClass( value.call(this, i, self.attr("class")) ); + }); + } + + if ( value && typeof value === "string" ) { + var classNames = (value || "").split( rspaces ); + + for ( var i = 0, l = this.length; i < l; i++ ) { + var elem = this[i]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className ) { + elem.className = value; + + } else { + var className = " " + elem.className + " ", + setClass = elem.className; + + for ( var c = 0, cl = classNames.length; c < cl; c++ ) { + if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { + setClass += " " + classNames[c]; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + /// + /// Removes all or the specified class(es) from the set of matched elements. + /// Part of DOM/Attributes + /// + /// + /// (Optional) A class name to be removed from the class attribute of each matched element. + /// + /// + + if ( jQuery.isFunction(value) ) { + return this.each(function(i) { + var self = jQuery(this); + self.removeClass( value.call(this, i, self.attr("class")) ); + }); + } + + if ( (value && typeof value === "string") || value === undefined ) { + var classNames = (value || "").split( rspaces ); + + for ( var i = 0, l = this.length; i < l; i++ ) { + var elem = this[i]; + + if ( elem.nodeType === 1 && elem.className ) { + if ( value ) { + var className = (" " + elem.className + " ").replace(rclass, " "); + for ( var c = 0, cl = classNames.length; c < cl; c++ ) { + className = className.replace(" " + classNames[c] + " ", " "); + } + elem.className = jQuery.trim( className ); + + } else { + elem.className = ""; + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + /// + /// Add or remove a class from each element in the set of matched elements, depending + /// on either the class's presence or the value of the switch argument. + /// + /// + /// A class name to be toggled for each element in the matched set. + /// + /// + /// A boolean value to determine whether the class should be added or removed. + /// + /// + + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function(i) { + var self = jQuery(this); + self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( rspaces ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space seperated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery.data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery.data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + /// + /// Checks the current selection against a class and returns whether at least one selection has a given class. + /// + /// The class to check against + /// True if at least one element in the selection has the class, otherwise false. + + var className = " " + selector + " "; + for ( var i = 0, l = this.length; i < l; i++ ) { + if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + /// + /// Set the value of every matched element. + /// Part of DOM/Attributes + /// + /// + /// + /// A string of text or an array of strings to set as the value property of each + /// matched element. + /// + + if ( !arguments.length ) { + var elem = this[0]; + + if ( elem ) { + if ( jQuery.nodeName( elem, "option" ) ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + + // We need to handle select boxes special + if ( jQuery.nodeName( elem, "select" ) ) { + var index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type === "select-one"; + + // Nothing was selected + if ( index < 0 ) { + return null; + } + + // Loop through all the selected options + for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { + var option = options[ i ]; + + // Don't return options that are disabled or in a disabled optgroup + if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && + (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { + + // Get the specific value for the option + value = jQuery(option).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + } + + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) { + return elem.getAttribute("value") === null ? "on" : elem.value; + } + + + // Everything else, we just grab the value + return (elem.value || "").replace(rreturn, ""); + + } + + return undefined; + } + + var isFunction = jQuery.isFunction(value); + + return this.each(function(i) { + var self = jQuery(this), val = value; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call(this, i, self.val()); + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray(val) ) { + val = jQuery.map(val, function (value) { + return value == null ? "" : value + ""; + }); + } + + if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) { + this.checked = jQuery.inArray( self.val(), val ) >= 0; + + } else if ( jQuery.nodeName( this, "select" ) ) { + var values = jQuery.makeArray(val); + + jQuery( "option", this ).each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + this.selectedIndex = -1; + } + + } else { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + attrFn: { + val: true, + css: true, + html: true, + text: true, + data: true, + width: true, + height: true, + offset: true + }, + + attr: function( elem, name, value, pass ) { + /// + /// This method is internal. + /// + /// + + // don't set attributes on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { + return undefined; + } + + if ( pass && name in jQuery.attrFn ) { + return jQuery(elem)[name](value); + } + + var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ), + // Whether we are setting (or getting) + set = value !== undefined; + + // Try to normalize/fix the name + name = notxml && jQuery.props[ name ] || name; + + // These attributes require special treatment + var special = rspecialurl.test( name ); + + // Safari mis-reports the default selected property of an option + // Accessing the parent's selectedIndex property fixes it + if ( name === "selected" && !jQuery.support.optSelected ) { + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + + // If applicable, access the attribute via the DOM 0 way + // 'in' checks fail in Blackberry 4.7 #6931 + if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) { + if ( set ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } + + if ( value === null ) { + if ( elem.nodeType === 1 ) { + elem.removeAttribute( name ); + } + + } else { + elem[ name ] = value; + } + } + + // browsers index elements by id/name on forms, give priority to attributes. + if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) { + return elem.getAttributeNode( name ).nodeValue; + } + + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + if ( name === "tabIndex" ) { + var attributeNode = elem.getAttributeNode( "tabIndex" ); + + return attributeNode && attributeNode.specified ? + attributeNode.value : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + + return elem[ name ]; + } + + if ( !jQuery.support.style && notxml && name === "style" ) { + if ( set ) { + elem.style.cssText = "" + value; + } + + return elem.style.cssText; + } + + if ( set ) { + // convert the value to a string (all browsers do this but IE) see #1070 + elem.setAttribute( name, "" + value ); + } + + // Ensure that missing attributes return undefined + // Blackberry 4.7 returns "" from getAttribute #6938 + if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) { + return undefined; + } + + var attr = !jQuery.support.hrefNormalized && notxml && special ? + // Some attributes require a special call on IE + elem.getAttribute( name, 2 ) : + elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return attr === null ? undefined : attr; + } +}); + + + + +var rnamespaces = /\.(.*)$/, + rformElems = /^(?:textarea|input|select)$/i, + rperiod = /\./g, + rspace = / /g, + rescape = /[^\w\s.|`]/g, + fcleanup = function( nm ) { + return nm.replace(rescape, "\\$&"); + }, + focusCounts = { focusin: 0, focusout: 0 }; + +/* + * A number of helper functions used for managing events. + * Many of the ideas behind this code originated from + * Dean Edwards' addEvent library. + */ +jQuery.event = { + + // Bind an event to an element + // Original by Dean Edwards + add: function( elem, types, handler, data ) { + /// + /// This method is internal. + /// + /// + + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // For whatever reason, IE has trouble passing the window object + // around, causing it to be cloned in the process + if ( jQuery.isWindow( elem ) && ( elem !== window && !elem.frameElement ) ) { + elem = window; + } + + if ( handler === false ) { + handler = returnFalse; + } else if ( !handler ) { + // Fixes bug #7229. Fix recommended by jdalton + return; + } + + var handleObjIn, handleObj; + + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + } + + // Make sure that the function being executed has a unique ID + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure + var elemData = jQuery.data( elem ); + + // If no elemData is found then we must be trying to bind to one of the + // banned noData elements + if ( !elemData ) { + return; + } + + // Use a key less likely to result in collisions for plain JS objects. + // Fixes bug #7150. + var eventKey = elem.nodeType ? "events" : "__events__", + events = elemData[ eventKey ], + eventHandle = elemData.handle; + + if ( typeof events === "function" ) { + // On plain objects events is a fn that holds the the data + // which prevents this data from being JSON serialized + // the function does not need to be called, it just contains the data + eventHandle = events.handle; + events = events.events; + + } else if ( !events ) { + if ( !elem.nodeType ) { + // On plain objects, create a fn that acts as the holder + // of the values to avoid JSON serialization of event data + elemData[ eventKey ] = elemData = function(){}; + } + + elemData.events = events = {}; + } + + if ( !eventHandle ) { + elemData.handle = eventHandle = function() { + // Handle the second event of a trigger and when + // an event is called after a page has unloaded + return typeof jQuery !== "undefined" && !jQuery.event.triggered ? + jQuery.event.handle.apply( eventHandle.elem, arguments ) : + undefined; + }; + } + + // Add elem as a property of the handle function + // This is to prevent a memory leak with non-native events in IE. + eventHandle.elem = elem; + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = types.split(" "); + + var type, i = 0, namespaces; + + while ( (type = types[ i++ ]) ) { + handleObj = handleObjIn ? + jQuery.extend({}, handleObjIn) : + { handler: handler, data: data }; + + // Namespaced event handlers + if ( type.indexOf(".") > -1 ) { + namespaces = type.split("."); + type = namespaces.shift(); + handleObj.namespace = namespaces.slice(0).sort().join("."); + + } else { + namespaces = []; + handleObj.namespace = ""; + } + + handleObj.type = type; + if ( !handleObj.guid ) { + handleObj.guid = handler.guid; + } + + // Get the current list of functions bound to this event + var handlers = events[ type ], + special = jQuery.event.special[ type ] || {}; + + // Init the event handler queue + if ( !handlers ) { + handlers = events[ type ] = []; + + // Check for a special event handler + // Only use addEventListener/attachEvent if the special + // events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add the function to the element's handler list + handlers.push( handleObj ); + + // Keep track of which events have been used, for global triggering + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler ) { + /// + /// This method is internal. + /// + /// + + // don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + if ( handler === false ) { + handler = returnFalse; + } + + var ret, type, fn, j, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, + eventKey = elem.nodeType ? "events" : "__events__", + elemData = jQuery.data( elem ), + events = elemData && elemData[ eventKey ]; + + if ( !elemData || !events ) { + return; + } + + if ( typeof events === "function" ) { + elemData = events; + events = events.events; + } + + // types is actually an event object here + if ( types && types.type ) { + handler = types.handler; + types = types.type; + } + + // Unbind all events for the element + if ( !types || typeof types === "string" && types.charAt(0) === "." ) { + types = types || ""; + + for ( type in events ) { + jQuery.event.remove( elem, type + types ); + } + + return; + } + + // Handle multiple events separated by a space + // jQuery(...).unbind("mouseover mouseout", fn); + types = types.split(" "); + + while ( (type = types[ i++ ]) ) { + origType = type; + handleObj = null; + all = type.indexOf(".") < 0; + namespaces = []; + + if ( !all ) { + // Namespaced event handlers + namespaces = type.split("."); + type = namespaces.shift(); + + namespace = new RegExp("(^|\\.)" + + jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)"); + } + + eventType = events[ type ]; + + if ( !eventType ) { + continue; + } + + if ( !handler ) { + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( all || namespace.test( handleObj.namespace ) ) { + jQuery.event.remove( elem, origType, handleObj.handler, j ); + eventType.splice( j--, 1 ); + } + } + + continue; + } + + special = jQuery.event.special[ type ] || {}; + + for ( j = pos || 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( handler.guid === handleObj.guid ) { + // remove the given handler for the given type + if ( all || namespace.test( handleObj.namespace ) ) { + if ( pos == null ) { + eventType.splice( j--, 1 ); + } + + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + + if ( pos != null ) { + break; + } + } + } + + // remove generic event handler if no more handlers exist + if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { + if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + ret = null; + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + var handle = elemData.handle; + if ( handle ) { + handle.elem = null; + } + + delete elemData.events; + delete elemData.handle; + + if ( typeof elemData === "function" ) { + jQuery.removeData( elem, eventKey ); + + } else if ( jQuery.isEmptyObject( elemData ) ) { + jQuery.removeData( elem ); + } + } + }, + + // bubbling is internal + trigger: function( event, data, elem /*, bubbling */ ) { + /// + /// This method is internal. + /// + /// + + // Event object or event type + var type = event.type || event, + bubbling = arguments[3]; + + if ( !bubbling ) { + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + jQuery.extend( jQuery.Event(type), event ) : + // Just the event type (string) + jQuery.Event(type); + + if ( type.indexOf("!") >= 0 ) { + event.type = type = type.slice(0, -1); + event.exclusive = true; + } + + // Handle a global trigger + if ( !elem ) { + // Don't bubble custom events when global (to avoid too much overhead) + event.stopPropagation(); + + // Only trigger if we've ever bound an event for it + if ( jQuery.event.global[ type ] ) { + jQuery.each( jQuery.cache, function() { + if ( this.events && this.events[type] ) { + jQuery.event.trigger( event, data, this.handle.elem ); + } + }); + } + } + + // Handle triggering a single element + + // don't do events on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { + return undefined; + } + + // Clean up in case it is reused + event.result = undefined; + event.target = elem; + + // Clone the incoming data, if any + data = jQuery.makeArray( data ); + data.unshift( event ); + } + + event.currentTarget = elem; + + // Trigger the event, it is assumed that "handle" is a function + var handle = elem.nodeType ? + jQuery.data( elem, "handle" ) : + (jQuery.data( elem, "__events__" ) || {}).handle; + + if ( handle ) { + handle.apply( elem, data ); + } + + var parent = elem.parentNode || elem.ownerDocument; + + // Trigger an inline bound script + try { + if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) { + if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) { + event.result = false; + event.preventDefault(); + } + } + + // prevent IE from throwing an error for some elements with some event types, see #3533 + } catch (inlineError) {} + + if ( !event.isPropagationStopped() && parent ) { + jQuery.event.trigger( event, data, parent, true ); + + } else if ( !event.isDefaultPrevented() ) { + var old, + target = event.target, + targetType = type.replace( rnamespaces, "" ), + isClick = jQuery.nodeName( target, "a" ) && targetType === "click", + special = jQuery.event.special[ targetType ] || {}; + + if ( (!special._default || special._default.call( elem, event ) === false) && + !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { + + try { + if ( target[ targetType ] ) { + // Make sure that we don't accidentally re-trigger the onFOO events + old = target[ "on" + targetType ]; + + if ( old ) { + target[ "on" + targetType ] = null; + } + + jQuery.event.triggered = true; + target[ targetType ](); + } + + // prevent IE from throwing an error for some elements with some event types, see #3533 + } catch (triggerError) {} + + if ( old ) { + target[ "on" + targetType ] = old; + } + + jQuery.event.triggered = false; + } + } + }, + + handle: function( event ) { + /// + /// This method is internal. + /// + /// + + var all, handlers, namespaces, namespace_re, events, + namespace_sort = [], + args = jQuery.makeArray( arguments ); + + event = args[0] = jQuery.event.fix( event || window.event ); + event.currentTarget = this; + + // Namespaced event handlers + all = event.type.indexOf(".") < 0 && !event.exclusive; + + if ( !all ) { + namespaces = event.type.split("."); + event.type = namespaces.shift(); + namespace_sort = namespaces.slice(0).sort(); + namespace_re = new RegExp("(^|\\.)" + namespace_sort.join("\\.(?:.*\\.)?") + "(\\.|$)"); + } + + event.namespace = event.namespace || namespace_sort.join("."); + + events = jQuery.data(this, this.nodeType ? "events" : "__events__"); + + if ( typeof events === "function" ) { + events = events.events; + } + + handlers = (events || {})[ event.type ]; + + if ( events && handlers ) { + // Clone the handlers to prevent manipulation + handlers = handlers.slice(0); + + for ( var j = 0, l = handlers.length; j < l; j++ ) { + var handleObj = handlers[ j ]; + + // Filter the functions by class + if ( all || namespace_re.test( handleObj.namespace ) ) { + // Pass in a reference to the handler function itself + // So that we can later remove it + event.handler = handleObj.handler; + event.data = handleObj.data; + event.handleObj = handleObj; + + var ret = handleObj.handler.apply( this, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + + if ( event.isImmediatePropagationStopped() ) { + break; + } + } + } + } + + return event.result; + }, + + props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), + + fix: function( event ) { + /// + /// This method is internal. + /// + /// + + if ( event[ jQuery.expando ] ) { + return event; + } + + // store a copy of the original event object + // and "clone" to set read-only properties + var originalEvent = event; + event = jQuery.Event( originalEvent ); + + for ( var i = this.props.length, prop; i; ) { + prop = this.props[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary + if ( !event.target ) { + // Fixes #1925 where srcElement might not be defined either + event.target = event.srcElement || document; + } + + // check if target is a textnode (safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && event.fromElement ) { + event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement; + } + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && event.clientX != null ) { + var doc = document.documentElement, + body = document.body; + + event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0); + event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0); + } + + // Add which for key events + if ( event.which == null && (event.charCode != null || event.keyCode != null) ) { + event.which = event.charCode != null ? event.charCode : event.keyCode; + } + + // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs) + if ( !event.metaKey && event.ctrlKey ) { + event.metaKey = event.ctrlKey; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && event.button !== undefined ) { + event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); + } + + return event; + }, + + // Deprecated, use jQuery.guid instead + guid: 1E8, + + // Deprecated, use jQuery.proxy instead + proxy: jQuery.proxy, + + special: { + ready: { + // Make sure the ready event is setup + setup: jQuery.bindReady, + teardown: jQuery.noop + }, + + live: { + add: function( handleObj ) { + jQuery.event.add( this, + liveConvert( handleObj.origType, handleObj.selector ), + jQuery.extend({}, handleObj, {handler: liveHandler, guid: handleObj.handler.guid}) ); + }, + + remove: function( handleObj ) { + jQuery.event.remove( this, liveConvert( handleObj.origType, handleObj.selector ), handleObj ); + } + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + if ( elem.detachEvent ) { + elem.detachEvent( "on" + type, handle ); + } + }; + +jQuery.Event = function( src ) { + // Allow instantiation without the 'new' keyword + if ( !this.preventDefault ) { + return new jQuery.Event( src ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + // Event type + } else { + this.type = src; + } + + // timeStamp is buggy for some events on Firefox(#3843) + // So we won't rely on the native value + this.timeStamp = jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Checks if an event happened on an element within another element +// Used in jQuery.event.special.mouseenter and mouseleave handlers +var withinElement = function( event ) { + // Check if mouse(over|out) are still within the same parent element + var parent = event.relatedTarget; + + // Firefox sometimes assigns relatedTarget a XUL element + // which we cannot access the parentNode property of + try { + // Traverse up the tree + while ( parent && parent !== this ) { + parent = parent.parentNode; + } + + if ( parent !== this ) { + // set the correct event type + event.type = event.data; + + // handle event if we actually just moused on to a non sub-element + jQuery.event.handle.apply( this, arguments ); + } + + // assuming we've left the element since we most likely mousedover a xul element + } catch(e) { } +}, + +// In case of event delegation, we only need to rename the event.type, +// liveHandler will take care of the rest. +delegate = function( event ) { + event.type = event.data; + jQuery.event.handle.apply( this, arguments ); +}; + +// Create mouseenter and mouseleave events +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + setup: function( data ) { + jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig ); + }, + teardown: function( data ) { + jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement ); + } + }; +}); + +// submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function( data, namespaces ) { + if ( this.nodeName.toLowerCase() !== "form" ) { + jQuery.event.add(this, "click.specialSubmit", function( e ) { + var elem = e.target, + type = elem.type; + + if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { + e.liveFired = undefined; + return trigger( "submit", this, arguments ); + } + }); + + jQuery.event.add(this, "keypress.specialSubmit", function( e ) { + var elem = e.target, + type = elem.type; + + if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { + e.liveFired = undefined; + return trigger( "submit", this, arguments ); + } + }); + + } else { + return false; + } + }, + + teardown: function( namespaces ) { + jQuery.event.remove( this, ".specialSubmit" ); + } + }; + +} + +// change delegation, happens here so we have bind. +if ( !jQuery.support.changeBubbles ) { + + var changeFilters, + + getVal = function( elem ) { + var type = elem.type, val = elem.value; + + if ( type === "radio" || type === "checkbox" ) { + val = elem.checked; + + } else if ( type === "select-multiple" ) { + val = elem.selectedIndex > -1 ? + jQuery.map( elem.options, function( elem ) { + return elem.selected; + }).join("-") : + ""; + + } else if ( elem.nodeName.toLowerCase() === "select" ) { + val = elem.selectedIndex; + } + + return val; + }, + + testChange = function testChange( e ) { + var elem = e.target, data, val; + + if ( !rformElems.test( elem.nodeName ) || elem.readOnly ) { + return; + } + + data = jQuery.data( elem, "_change_data" ); + val = getVal(elem); + + // the current data will be also retrieved by beforeactivate + if ( e.type !== "focusout" || elem.type !== "radio" ) { + jQuery.data( elem, "_change_data", val ); + } + + if ( data === undefined || val === data ) { + return; + } + + if ( data != null || val ) { + e.type = "change"; + e.liveFired = undefined; + return jQuery.event.trigger( e, arguments[1], elem ); + } + }; + + jQuery.event.special.change = { + filters: { + focusout: testChange, + + beforedeactivate: testChange, + + click: function( e ) { + var elem = e.target, type = elem.type; + + if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { + return testChange.call( this, e ); + } + }, + + // Change has to be called before submit + // Keydown will be called before keypress, which is used in submit-event delegation + keydown: function( e ) { + var elem = e.target, type = elem.type; + + if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || + (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || + type === "select-multiple" ) { + return testChange.call( this, e ); + } + }, + + // Beforeactivate happens also before the previous element is blurred + // with this event you can't trigger a change event, but you can store + // information + beforeactivate: function( e ) { + var elem = e.target; + jQuery.data( elem, "_change_data", getVal(elem) ); + } + }, + + setup: function( data, namespaces ) { + if ( this.type === "file" ) { + return false; + } + + for ( var type in changeFilters ) { + jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); + } + + return rformElems.test( this.nodeName ); + }, + + teardown: function( namespaces ) { + jQuery.event.remove( this, ".specialChange" ); + + return rformElems.test( this.nodeName ); + } + }; + + changeFilters = jQuery.event.special.change.filters; + + // Handle when the input is .focus()'d + changeFilters.focus = changeFilters.beforeactivate; +} + +function trigger( type, elem, args ) { + args[0].type = type; + return jQuery.event.handle.apply( elem, args ); +} + +// Create "bubbling" focus and blur events +if ( document.addEventListener ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + jQuery.event.special[ fix ] = { + setup: function() { + /// + /// This method is internal. + /// + /// + + if ( focusCounts[fix]++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + /// + /// This method is internal. + /// + /// + + if ( --focusCounts[fix] === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + + function handler( e ) { + e = jQuery.event.fix( e ); + e.type = fix; + return jQuery.event.trigger( e, null, e.target ); + } + }); +} + +// jQuery.each(["bind", "one"], function( i, name ) { +// jQuery.fn[ name ] = function( type, data, fn ) { +// // Handle object literals +// if ( typeof type === "object" ) { +// for ( var key in type ) { +// this[ name ](key, data, type[key], fn); +// } +// return this; +// } + +// if ( jQuery.isFunction( data ) || data === false ) { +// fn = data; +// data = undefined; +// } + +// var handler = name === "one" ? jQuery.proxy( fn, function( event ) { +// jQuery( this ).unbind( event, handler ); +// return fn.apply( this, arguments ); +// }) : fn; + +// if ( type === "unload" && name !== "one" ) { +// this.one( type, data, fn ); + +// } else { +// for ( var i = 0, l = this.length; i < l; i++ ) { +// jQuery.event.add( this[i], type, handler, data ); +// } +// } + +// return this; +// }; +// }); + +jQuery.fn[ "bind" ] = function( type, data, fn ) { + /// + /// Binds a handler to one or more events for each matched element. Can also bind custom events. + /// + /// One or more event types separated by a space. Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error . + /// Additional data passed to the event handler as event.data + /// A function to bind to the event on each of the set of matched elements. function callback(eventObject) such that this corresponds to the dom element. + + // Handle object literals + if ( typeof type === "object" ) { + for ( var key in type ) { + this[ "bind" ](key, data, type[key], fn); + } + return this; + } + + if ( jQuery.isFunction( data ) ) { + fn = data; + data = undefined; + } + + var handler = "bind" === "one" ? jQuery.proxy( fn, function( event ) { + jQuery( this ).unbind( event, handler ); + return fn.apply( this, arguments ); + }) : fn; + + return type === "unload" && "bind" !== "one" ? + this.one( type, data, fn ) : + this.each(function() { + jQuery.event.add( this, type, handler, data ); + }); +}; + +jQuery.fn[ "one" ] = function( type, data, fn ) { + /// + /// Binds a handler to one or more events to be executed exactly once for each matched element. + /// + /// One or more event types separated by a space. Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error . + /// Additional data passed to the event handler as event.data + /// A function to bind to the event on each of the set of matched elements. function callback(eventObject) such that this corresponds to the dom element. + + // Handle object literals + if ( typeof type === "object" ) { + for ( var key in type ) { + this[ "one" ](key, data, type[key], fn); + } + return this; + } + + if ( jQuery.isFunction( data ) ) { + fn = data; + data = undefined; + } + + var handler = "one" === "one" ? jQuery.proxy( fn, function( event ) { + jQuery( this ).unbind( event, handler ); + return fn.apply( this, arguments ); + }) : fn; + + return type === "unload" && "one" !== "one" ? + this.one( type, data, fn ) : + this.each(function() { + jQuery.event.add( this, type, handler, data ); + }); +}; + +jQuery.fn.extend({ + unbind: function( type, fn ) { + /// + /// Unbinds a handler from one or more events for each matched element. + /// + /// One or more event types separated by a space. Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error . + /// A function to bind to the event on each of the set of matched elements. function callback(eventObject) such that this corresponds to the dom element. + + // Handle object literals + if ( typeof type === "object" && !type.preventDefault ) { + for ( var key in type ) { + this.unbind(key, type[key]); + } + + } else { + for ( var i = 0, l = this.length; i < l; i++ ) { + jQuery.event.remove( this[i], type, fn ); + } + } + + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.live( types, data, fn, selector ); + }, + + undelegate: function( selector, types, fn ) { + if ( arguments.length === 0 ) { + return this.unbind( "live" ); + + } else { + return this.die( types, null, fn, selector ); + } + }, + + trigger: function( type, data ) { + /// + /// Triggers a type of event on every matched element. + /// + /// One or more event types separated by a space. Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error . + /// Additional data passed to the event handler as additional arguments. + /// This parameter is undocumented. + + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + + triggerHandler: function( type, data ) { + /// + /// Triggers all bound event handlers on an element for a specific event type without executing the browser's default actions. + /// + /// One or more event types separated by a space. Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error . + /// Additional data passed to the event handler as additional arguments. + /// This parameter is undocumented. + + if ( this[0] ) { + var event = jQuery.Event( type ); + event.preventDefault(); + event.stopPropagation(); + jQuery.event.trigger( event, data, this[0] ); + return event.result; + } + }, + + toggle: function( fn ) { + /// + /// Toggles among two or more function calls every other click. + /// + /// The functions among which to toggle execution + + // Save reference to arguments for access in closure + var args = arguments, + i = 1; + + // link all the functions, so any of them can unbind this click handler + while ( i < args.length ) { + jQuery.proxy( fn, args[ i++ ] ); + } + + return this.click( jQuery.proxy( fn, function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery.data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery.data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + })); + }, + + hover: function( fnOver, fnOut ) { + /// + /// Simulates hovering (moving the mouse on or off of an object). + /// + /// The function to fire when the mouse is moved over a matched element. + /// The function to fire when the mouse is moved off of a matched element. + + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +var liveMap = { + focus: "focusin", + blur: "focusout", + mouseenter: "mouseover", + mouseleave: "mouseout" +}; + +// jQuery.each(["live", "die"], function( i, name ) { +// jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { +// var type, i = 0, match, namespaces, preType, +// selector = origSelector || this.selector, +// context = origSelector ? this : jQuery( this.context ); + +// if ( typeof types === "object" && !types.preventDefault ) { +// for ( var key in types ) { +// context[ name ]( key, data, types[key], selector ); +// } + +// return this; +// } + +// if ( jQuery.isFunction( data ) ) { +// fn = data; +// data = undefined; +// } + +// types = (types || "").split(" "); + +// while ( (type = types[ i++ ]) != null ) { +// match = rnamespaces.exec( type ); +// namespaces = ""; + +// if ( match ) { +// namespaces = match[0]; +// type = type.replace( rnamespaces, "" ); +// } + +// if ( type === "hover" ) { +// types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); +// continue; +// } + +// preType = type; + +// if ( type === "focus" || type === "blur" ) { +// types.push( liveMap[ type ] + namespaces ); +// type = type + namespaces; + +// } else { +// type = (liveMap[ type ] || type) + namespaces; +// } + +// if ( name === "live" ) { +// // bind live handler +// for ( var j = 0, l = context.length; j < l; j++ ) { +// jQuery.event.add( context[j], "live." + liveConvert( type, selector ), +// { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); +// } + +// } else { +// // unbind live handler +// context.unbind( "live." + liveConvert( type, selector ), fn ); +// } +// } + +// return this; +// }; +// }); + +jQuery.fn[ "live" ] = function( types, data, fn ) { + /// + /// Attach a handler to the event for all elements which match the current selector, now or + /// in the future. + /// + /// + /// A string containing a JavaScript event type, such as "click" or "keydown". + /// + /// + /// A map of data that will be passed to the event handler. + /// + /// + /// A function to execute at the time the event is triggered. + /// + /// + + var type, i = 0; + + if ( jQuery.isFunction( data ) ) { + fn = data; + data = undefined; + } + + types = (types || "").split( /\s+/ ); + + while ( (type = types[ i++ ]) != null ) { + type = type === "focus" ? "focusin" : // focus --> focusin + type === "blur" ? "focusout" : // blur --> focusout + type === "hover" ? types.push("mouseleave") && "mouseenter" : // hover support + type; + + if ( "live" === "live" ) { + // bind live handler + jQuery( this.context ).bind( liveConvert( type, this.selector ), { + data: data, selector: this.selector, live: type + }, fn ); + + } else { + // unbind live handler + jQuery( this.context ).unbind( liveConvert( type, this.selector ), fn ? { guid: fn.guid + this.selector + type } : null ); + } + } + + return this; +} + +jQuery.fn[ "die" ] = function( types, data, fn ) { + /// + /// Remove all event handlers previously attached using .live() from the elements. + /// + /// + /// A string containing a JavaScript event type, such as click or keydown. + /// + /// + /// The function that is to be no longer executed. + /// + /// + + var type, i = 0; + + if ( jQuery.isFunction( data ) ) { + fn = data; + data = undefined; + } + + types = (types || "").split( /\s+/ ); + + while ( (type = types[ i++ ]) != null ) { + type = type === "focus" ? "focusin" : // focus --> focusin + type === "blur" ? "focusout" : // blur --> focusout + type === "hover" ? types.push("mouseleave") && "mouseenter" : // hover support + type; + + if ( "die" === "live" ) { + // bind live handler + jQuery( this.context ).bind( liveConvert( type, this.selector ), { + data: data, selector: this.selector, live: type + }, fn ); + + } else { + // unbind live handler + jQuery( this.context ).unbind( liveConvert( type, this.selector ), fn ? { guid: fn.guid + this.selector + type } : null ); + } + } + + return this; +} + +function liveHandler( event ) { + var stop, maxLevel, related, match, handleObj, elem, j, i, l, data, close, namespace, ret, + elems = [], + selectors = [], + events = jQuery.data( this, this.nodeType ? "events" : "__events__" ); + + if ( typeof events === "function" ) { + events = events.events; + } + + // Make sure we avoid non-left-click bubbling in Firefox (#3861) + if ( event.liveFired === this || !events || !events.live || event.button && event.type === "click" ) { + return; + } + + if ( event.namespace ) { + namespace = new RegExp("(^|\\.)" + event.namespace.split(".").join("\\.(?:.*\\.)?") + "(\\.|$)"); + } + + event.liveFired = this; + + var live = events.live.slice(0); + + for ( j = 0; j < live.length; j++ ) { + handleObj = live[j]; + + if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { + selectors.push( handleObj.selector ); + + } else { + live.splice( j--, 1 ); + } + } + + match = jQuery( event.target ).closest( selectors, event.currentTarget ); + + for ( i = 0, l = match.length; i < l; i++ ) { + close = match[i]; + + for ( j = 0; j < live.length; j++ ) { + handleObj = live[j]; + + if ( close.selector === handleObj.selector && (!namespace || namespace.test( handleObj.namespace )) ) { + elem = close.elem; + related = null; + + // Those two events require additional checking + if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { + event.type = handleObj.preType; + related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; + } + + if ( !related || related !== elem ) { + elems.push({ elem: elem, handleObj: handleObj, level: close.level }); + } + } + } + } + + for ( i = 0, l = elems.length; i < l; i++ ) { + match = elems[i]; + + if ( maxLevel && match.level > maxLevel ) { + break; + } + + event.currentTarget = match.elem; + event.data = match.handleObj.data; + event.handleObj = match.handleObj; + + ret = match.handleObj.origHandler.apply( match.elem, arguments ); + + if ( ret === false || event.isPropagationStopped() ) { + maxLevel = match.level; + + if ( ret === false ) { + stop = false; + } + if ( event.isImmediatePropagationStopped() ) { + break; + } + } + } + + return stop; +} + +function liveConvert( type, selector ) { + return (type && type !== "*" ? type + "." : "") + selector.replace(rperiod, "`").replace(rspace, "&"); +} + +// jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + +// "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + +// "change select submit keydown keypress keyup error").split(" "), function( i, name ) { + +// // Handle event binding +// jQuery.fn[ name ] = function( data, fn ) { +// if ( fn == null ) { +// fn = data; +// data = null; +// } + +// return arguments.length > 0 ? +// this.bind( name, data, fn ) : +// this.trigger( name ); +// }; + +// if ( jQuery.attrFn ) { +// jQuery.attrFn[ name ] = true; +// } +// }); + +jQuery.fn[ "blur" ] = function( fn ) { + /// + /// 1: blur() - Triggers the blur event of each matched element. + /// 2: blur(fn) - Binds a function to the blur event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "blur", fn ) : this.trigger( "blur" ); +}; + +jQuery.fn[ "focus" ] = function( fn ) { + /// + /// 1: focus() - Triggers the focus event of each matched element. + /// 2: focus(fn) - Binds a function to the focus event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "focus", fn ) : this.trigger( "focus" ); +}; + +jQuery.fn[ "focusin" ] = function( fn ) { + /// + /// Bind an event handler to the "focusin" JavaScript event. + /// + /// + /// A function to execute each time the event is triggered. + /// + /// + + return fn ? this.bind( "focusin", fn ) : this.trigger( "focusin" ); +}; + +jQuery.fn[ "focusout" ] = function( fn ) { + /// + /// Bind an event handler to the "focusout" JavaScript event. + /// + /// + /// A function to execute each time the event is triggered. + /// + /// + + return fn ? this.bind( "focusout", fn ) : this.trigger( "focusout" ); +}; + +jQuery.fn[ "load" ] = function( fn ) { + /// + /// 1: load() - Triggers the load event of each matched element. + /// 2: load(fn) - Binds a function to the load event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "load", fn ) : this.trigger( "load" ); +}; + +jQuery.fn[ "resize" ] = function( fn ) { + /// + /// 1: resize() - Triggers the resize event of each matched element. + /// 2: resize(fn) - Binds a function to the resize event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "resize", fn ) : this.trigger( "resize" ); +}; + +jQuery.fn[ "scroll" ] = function( fn ) { + /// + /// 1: scroll() - Triggers the scroll event of each matched element. + /// 2: scroll(fn) - Binds a function to the scroll event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "scroll", fn ) : this.trigger( "scroll" ); +}; + +jQuery.fn[ "unload" ] = function( fn ) { + /// + /// 1: unload() - Triggers the unload event of each matched element. + /// 2: unload(fn) - Binds a function to the unload event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "unload", fn ) : this.trigger( "unload" ); +}; + +jQuery.fn[ "click" ] = function( fn ) { + /// + /// 1: click() - Triggers the click event of each matched element. + /// 2: click(fn) - Binds a function to the click event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "click", fn ) : this.trigger( "click" ); +}; + +jQuery.fn[ "dblclick" ] = function( fn ) { + /// + /// 1: dblclick() - Triggers the dblclick event of each matched element. + /// 2: dblclick(fn) - Binds a function to the dblclick event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "dblclick", fn ) : this.trigger( "dblclick" ); +}; + +jQuery.fn[ "mousedown" ] = function( fn ) { + /// + /// Binds a function to the mousedown event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mousedown", fn ) : this.trigger( "mousedown" ); +}; + +jQuery.fn[ "mouseup" ] = function( fn ) { + /// + /// Bind a function to the mouseup event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mouseup", fn ) : this.trigger( "mouseup" ); +}; + +jQuery.fn[ "mousemove" ] = function( fn ) { + /// + /// Bind a function to the mousemove event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mousemove", fn ) : this.trigger( "mousemove" ); +}; + +jQuery.fn[ "mouseover" ] = function( fn ) { + /// + /// Bind a function to the mouseover event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mouseover", fn ) : this.trigger( "mouseover" ); +}; + +jQuery.fn[ "mouseout" ] = function( fn ) { + /// + /// Bind a function to the mouseout event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mouseout", fn ) : this.trigger( "mouseout" ); +}; + +jQuery.fn[ "mouseenter" ] = function( fn ) { + /// + /// Bind a function to the mouseenter event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mouseenter", fn ) : this.trigger( "mouseenter" ); +}; + +jQuery.fn[ "mouseleave" ] = function( fn ) { + /// + /// Bind a function to the mouseleave event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "mouseleave", fn ) : this.trigger( "mouseleave" ); +}; + +jQuery.fn[ "change" ] = function( fn ) { + /// + /// 1: change() - Triggers the change event of each matched element. + /// 2: change(fn) - Binds a function to the change event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "change", fn ) : this.trigger( "change" ); +}; + +jQuery.fn[ "select" ] = function( fn ) { + /// + /// 1: select() - Triggers the select event of each matched element. + /// 2: select(fn) - Binds a function to the select event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "select", fn ) : this.trigger( "select" ); +}; + +jQuery.fn[ "submit" ] = function( fn ) { + /// + /// 1: submit() - Triggers the submit event of each matched element. + /// 2: submit(fn) - Binds a function to the submit event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "submit", fn ) : this.trigger( "submit" ); +}; + +jQuery.fn[ "keydown" ] = function( fn ) { + /// + /// 1: keydown() - Triggers the keydown event of each matched element. + /// 2: keydown(fn) - Binds a function to the keydown event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "keydown", fn ) : this.trigger( "keydown" ); +}; + +jQuery.fn[ "keypress" ] = function( fn ) { + /// + /// 1: keypress() - Triggers the keypress event of each matched element. + /// 2: keypress(fn) - Binds a function to the keypress event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "keypress", fn ) : this.trigger( "keypress" ); +}; + +jQuery.fn[ "keyup" ] = function( fn ) { + /// + /// 1: keyup() - Triggers the keyup event of each matched element. + /// 2: keyup(fn) - Binds a function to the keyup event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "keyup", fn ) : this.trigger( "keyup" ); +}; + +jQuery.fn[ "error" ] = function( fn ) { + /// + /// 1: error() - Triggers the error event of each matched element. + /// 2: error(fn) - Binds a function to the error event of each matched element. + /// + /// The function to execute. + /// + + return fn ? this.bind( "error", fn ) : this.trigger( "error" ); +}; + +// Prevent memory leaks in IE +// Window isn't included so as not to unbind existing unload events +// More info: +// - http://isaacschlueter.com/2006/10/msie-memory-leaks/ +if ( window.attachEvent && !window.addEventListener ) { + jQuery(window).bind("unload", function() { + for ( var id in jQuery.cache ) { + if ( jQuery.cache[ id ].handle ) { + // Try/Catch is to handle iframes being unloaded, see #4280 + try { + jQuery.event.remove( jQuery.cache[ id ].handle.elem ); + } catch(e) {} + } + } + }); +} + + +(function(){ + +var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, + done = 0, + toString = Object.prototype.toString, + hasDuplicate = false, + baseHasDuplicate = true; + +// Here we check if the JavaScript engine is using some sort of +// optimization where it does not always call our comparision +// function. If that is the case, discard the hasDuplicate value. +// Thus far that includes Google Chrome. +[0, 0].sort(function() { + baseHasDuplicate = false; + return 0; +}); + +var Sizzle = function( selector, context, results, seed ) { + results = results || []; + context = context || document; + + var origContext = context; + + if ( context.nodeType !== 1 && context.nodeType !== 9 ) { + return []; + } + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + var m, set, checkSet, extra, ret, cur, pop, i, + prune = true, + contextXML = Sizzle.isXML( context ), + parts = [], + soFar = selector; + + // Reset the position of the chunker regexp (start from head) + do { + chunker.exec( "" ); + m = chunker.exec( soFar ); + + if ( m ) { + soFar = m[3]; + + parts.push( m[1] ); + + if ( m[2] ) { + extra = m[3]; + break; + } + } + } while ( m ); + + if ( parts.length > 1 && origPOS.exec( selector ) ) { + + if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { + set = posProcess( parts[0] + parts[1], context ); + + } else { + set = Expr.relative[ parts[0] ] ? + [ context ] : + Sizzle( parts.shift(), context ); + + while ( parts.length ) { + selector = parts.shift(); + + if ( Expr.relative[ selector ] ) { + selector += parts.shift(); + } + + set = posProcess( selector, set ); + } + } + + } else { + // Take a shortcut and set the context if the root selector is an ID + // (but not if it'll be faster if the inner selector is an ID) + if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && + Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { + + ret = Sizzle.find( parts.shift(), context, contextXML ); + context = ret.expr ? + Sizzle.filter( ret.expr, ret.set )[0] : + ret.set[0]; + } + + if ( context ) { + ret = seed ? + { expr: parts.pop(), set: makeArray(seed) } : + Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); + + set = ret.expr ? + Sizzle.filter( ret.expr, ret.set ) : + ret.set; + + if ( parts.length > 0 ) { + checkSet = makeArray( set ); + + } else { + prune = false; + } + + while ( parts.length ) { + cur = parts.pop(); + pop = cur; + + if ( !Expr.relative[ cur ] ) { + cur = ""; + } else { + pop = parts.pop(); + } + + if ( pop == null ) { + pop = context; + } + + Expr.relative[ cur ]( checkSet, pop, contextXML ); + } + + } else { + checkSet = parts = []; + } + } + + if ( !checkSet ) { + checkSet = set; + } + + if ( !checkSet ) { + Sizzle.error( cur || selector ); + } + + if ( toString.call(checkSet) === "[object Array]" ) { + if ( !prune ) { + results.push.apply( results, checkSet ); + + } else if ( context && context.nodeType === 1 ) { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { + results.push( set[i] ); + } + } + + } else { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && checkSet[i].nodeType === 1 ) { + results.push( set[i] ); + } + } + } + + } else { + makeArray( checkSet, results ); + } + + if ( extra ) { + Sizzle( extra, origContext, results, seed ); + Sizzle.uniqueSort( results ); + } + + return results; +}; + +Sizzle.uniqueSort = function( results ) { + /// + /// Removes all duplicate elements from an array of elements. + /// + /// The array to translate + /// The array after translation. + + if ( sortOrder ) { + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( var i = 1; i < results.length; i++ ) { + if ( results[i] === results[ i - 1 ] ) { + results.splice( i--, 1 ); + } + } + } + } + + return results; +}; + +Sizzle.matches = function( expr, set ) { + return Sizzle( expr, null, null, set ); +}; + +Sizzle.matchesSelector = function( node, expr ) { + return Sizzle( expr, null, null, [node] ).length > 0; +}; + +Sizzle.find = function( expr, context, isXML ) { + var set; + + if ( !expr ) { + return []; + } + + for ( var i = 0, l = Expr.order.length; i < l; i++ ) { + var match, + type = Expr.order[i]; + + if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { + var left = match[1]; + match.splice( 1, 1 ); + + if ( left.substr( left.length - 1 ) !== "\\" ) { + match[1] = (match[1] || "").replace(/\\/g, ""); + set = Expr.find[ type ]( match, context, isXML ); + + if ( set != null ) { + expr = expr.replace( Expr.match[ type ], "" ); + break; + } + } + } + } + + if ( !set ) { + set = context.getElementsByTagName( "*" ); + } + + return { set: set, expr: expr }; +}; + +Sizzle.filter = function( expr, set, inplace, not ) { + var match, anyFound, + old = expr, + result = [], + curLoop = set, + isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); + + while ( expr && set.length ) { + for ( var type in Expr.filter ) { + if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { + var found, item, + filter = Expr.filter[ type ], + left = match[1]; + + anyFound = false; + + match.splice(1,1); + + if ( left.substr( left.length - 1 ) === "\\" ) { + continue; + } + + if ( curLoop === result ) { + result = []; + } + + if ( Expr.preFilter[ type ] ) { + match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); + + if ( !match ) { + anyFound = found = true; + + } else if ( match === true ) { + continue; + } + } + + if ( match ) { + for ( var i = 0; (item = curLoop[i]) != null; i++ ) { + if ( item ) { + found = filter( item, match, i, curLoop ); + var pass = not ^ !!found; + + if ( inplace && found != null ) { + if ( pass ) { + anyFound = true; + + } else { + curLoop[i] = false; + } + + } else if ( pass ) { + result.push( item ); + anyFound = true; + } + } + } + } + + if ( found !== undefined ) { + if ( !inplace ) { + curLoop = result; + } + + expr = expr.replace( Expr.match[ type ], "" ); + + if ( !anyFound ) { + return []; + } + + break; + } + } + } + + // Improper expression + if ( expr === old ) { + if ( anyFound == null ) { + Sizzle.error( expr ); + + } else { + break; + } + } + + old = expr; + } + + return curLoop; +}; + +Sizzle.error = function( msg ) { + throw "Syntax error, unrecognized expression: " + msg; +}; + +var Expr = Sizzle.selectors = { + order: [ "ID", "NAME", "TAG" ], + + match: { + ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, + ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/, + TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, + CHILD: /:(only|nth|last|first)-child(?:\((even|odd|[\dn+\-]*)\))?/, + POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, + PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ + }, + + leftMatch: {}, + + attrMap: { + "class": "className", + "for": "htmlFor" + }, + + attrHandle: { + href: function( elem ) { + return elem.getAttribute( "href" ); + } + }, + + relative: { + "+": function(checkSet, part){ + var isPartStr = typeof part === "string", + isTag = isPartStr && !/\W/.test( part ), + isPartStrNotTag = isPartStr && !isTag; + + if ( isTag ) { + part = part.toLowerCase(); + } + + for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { + if ( (elem = checkSet[i]) ) { + while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} + + checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? + elem || false : + elem === part; + } + } + + if ( isPartStrNotTag ) { + Sizzle.filter( part, checkSet, true ); + } + }, + + ">": function( checkSet, part ) { + var elem, + isPartStr = typeof part === "string", + i = 0, + l = checkSet.length; + + if ( isPartStr && !/\W/.test( part ) ) { + part = part.toLowerCase(); + + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + var parent = elem.parentNode; + checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; + } + } + + } else { + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + checkSet[i] = isPartStr ? + elem.parentNode : + elem.parentNode === part; + } + } + + if ( isPartStr ) { + Sizzle.filter( part, checkSet, true ); + } + } + }, + + "": function(checkSet, part, isXML){ + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !/\W/.test(part) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); + }, + + "~": function( checkSet, part, isXML ) { + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !/\W/.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); + } + }, + + find: { + ID: function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }, + + NAME: function( match, context ) { + if ( typeof context.getElementsByName !== "undefined" ) { + var ret = [], + results = context.getElementsByName( match[1] ); + + for ( var i = 0, l = results.length; i < l; i++ ) { + if ( results[i].getAttribute("name") === match[1] ) { + ret.push( results[i] ); + } + } + + return ret.length === 0 ? null : ret; + } + }, + + TAG: function( match, context ) { + return context.getElementsByTagName( match[1] ); + } + }, + preFilter: { + CLASS: function( match, curLoop, inplace, result, not, isXML ) { + match = " " + match[1].replace(/\\/g, "") + " "; + + if ( isXML ) { + return match; + } + + for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { + if ( elem ) { + if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n]/g, " ").indexOf(match) >= 0) ) { + if ( !inplace ) { + result.push( elem ); + } + + } else if ( inplace ) { + curLoop[i] = false; + } + } + } + + return false; + }, + + ID: function( match ) { + return match[1].replace(/\\/g, ""); + }, + + TAG: function( match, curLoop ) { + return match[1].toLowerCase(); + }, + + CHILD: function( match ) { + if ( match[1] === "nth" ) { + // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' + var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec( + match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || + !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); + + // calculate the numbers (first)n+(last) including if they are negative + match[2] = (test[1] + (test[2] || 1)) - 0; + match[3] = test[3] - 0; + } + + // TODO: Move to normal caching system + match[0] = done++; + + return match; + }, + + ATTR: function( match, curLoop, inplace, result, not, isXML ) { + var name = match[1].replace(/\\/g, ""); + + if ( !isXML && Expr.attrMap[name] ) { + match[1] = Expr.attrMap[name]; + } + + if ( match[2] === "~=" ) { + match[4] = " " + match[4] + " "; + } + + return match; + }, + + PSEUDO: function( match, curLoop, inplace, result, not ) { + if ( match[1] === "not" ) { + // If we're dealing with a complex expression, or a simple one + if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { + match[3] = Sizzle(match[3], null, null, curLoop); + + } else { + var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); + + if ( !inplace ) { + result.push.apply( result, ret ); + } + + return false; + } + + } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { + return true; + } + + return match; + }, + + POS: function( match ) { + match.unshift( true ); + + return match; + } + }, + + filters: { + enabled: function( elem ) { + return elem.disabled === false && elem.type !== "hidden"; + }, + + disabled: function( elem ) { + return elem.disabled === true; + }, + + checked: function( elem ) { + return elem.checked === true; + }, + + selected: function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + elem.parentNode.selectedIndex; + + return elem.selected === true; + }, + + parent: function( elem ) { + return !!elem.firstChild; + }, + + empty: function( elem ) { + return !elem.firstChild; + }, + + has: function( elem, i, match ) { + /// + /// Internal use only; use hasClass('class') + /// + /// + + return !!Sizzle( match[3], elem ).length; + }, + + header: function( elem ) { + return (/h\d/i).test( elem.nodeName ); + }, + + text: function( elem ) { + return "text" === elem.type; + }, + radio: function( elem ) { + return "radio" === elem.type; + }, + + checkbox: function( elem ) { + return "checkbox" === elem.type; + }, + + file: function( elem ) { + return "file" === elem.type; + }, + password: function( elem ) { + return "password" === elem.type; + }, + + submit: function( elem ) { + return "submit" === elem.type; + }, + + image: function( elem ) { + return "image" === elem.type; + }, + + reset: function( elem ) { + return "reset" === elem.type; + }, + + button: function( elem ) { + return "button" === elem.type || elem.nodeName.toLowerCase() === "button"; + }, + + input: function( elem ) { + return (/input|select|textarea|button/i).test( elem.nodeName ); + } + }, + setFilters: { + first: function( elem, i ) { + return i === 0; + }, + + last: function( elem, i, match, array ) { + return i === array.length - 1; + }, + + even: function( elem, i ) { + return i % 2 === 0; + }, + + odd: function( elem, i ) { + return i % 2 === 1; + }, + + lt: function( elem, i, match ) { + return i < match[3] - 0; + }, + + gt: function( elem, i, match ) { + return i > match[3] - 0; + }, + + nth: function( elem, i, match ) { + return match[3] - 0 === i; + }, + + eq: function( elem, i, match ) { + return match[3] - 0 === i; + } + }, + filter: { + PSEUDO: function( elem, match, i, array ) { + var name = match[1], + filter = Expr.filters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + + } else if ( name === "contains" ) { + return (elem.textContent || elem.innerText || Sizzle.getText([ elem ]) || "").indexOf(match[3]) >= 0; + + } else if ( name === "not" ) { + var not = match[3]; + + for ( var j = 0, l = not.length; j < l; j++ ) { + if ( not[j] === elem ) { + return false; + } + } + + return true; + + } else { + Sizzle.error( "Syntax error, unrecognized expression: " + name ); + } + }, + + CHILD: function( elem, match ) { + var type = match[1], + node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + + case "nth": + var first = match[2], + last = match[3]; + + if ( first === 1 && last === 0 ) { + return true; + } + + var doneName = match[0], + parent = elem.parentNode; + + if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) { + var count = 0; + + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + node.nodeIndex = ++count; + } + } + + parent.sizcache = doneName; + } + + var diff = elem.nodeIndex - last; + + if ( first === 0 ) { + return diff === 0; + + } else { + return ( diff % first === 0 && diff / first >= 0 ); + } + } + }, + + ID: function( elem, match ) { + return elem.nodeType === 1 && elem.getAttribute("id") === match; + }, + + TAG: function( elem, match ) { + return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match; + }, + + CLASS: function( elem, match ) { + return (" " + (elem.className || elem.getAttribute("class")) + " ") + .indexOf( match ) > -1; + }, + + ATTR: function( elem, match ) { + var name = match[1], + result = Expr.attrHandle[ name ] ? + Expr.attrHandle[ name ]( elem ) : + elem[ name ] != null ? + elem[ name ] : + elem.getAttribute( name ), + value = result + "", + type = match[2], + check = match[4]; + + return result == null ? + type === "!=" : + type === "=" ? + value === check : + type === "*=" ? + value.indexOf(check) >= 0 : + type === "~=" ? + (" " + value + " ").indexOf(check) >= 0 : + !check ? + value && result !== false : + type === "!=" ? + value !== check : + type === "^=" ? + value.indexOf(check) === 0 : + type === "$=" ? + value.substr(value.length - check.length) === check : + type === "|=" ? + value === check || value.substr(0, check.length + 1) === check + "-" : + false; + }, + + POS: function( elem, match, i, array ) { + var name = match[2], + filter = Expr.setFilters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + } + } + } +}; + +var origPOS = Expr.match.POS, + fescape = function(all, num){ + return "\\" + (num - 0 + 1); + }; + +for ( var type in Expr.match ) { + Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); + Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); +} + +var makeArray = function( array, results ) { + array = Array.prototype.slice.call( array, 0 ); + + if ( results ) { + results.push.apply( results, array ); + return results; + } + + return array; +}; + +// Perform a simple check to determine if the browser is capable of +// converting a NodeList to an array using builtin methods. +// Also verifies that the returned array holds DOM nodes +// (which is not the case in the Blackberry browser) +try { + Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; + +// Provide a fallback method if it does not work +} catch( e ) { + makeArray = function( array, results ) { + var i = 0, + ret = results || []; + + if ( toString.call(array) === "[object Array]" ) { + Array.prototype.push.apply( ret, array ); + + } else { + if ( typeof array.length === "number" ) { + for ( var l = array.length; i < l; i++ ) { + ret.push( array[i] ); + } + + } else { + for ( ; array[i]; i++ ) { + ret.push( array[i] ); + } + } + } + + return ret; + }; +} + +var sortOrder, siblingCheck; + +if ( document.documentElement.compareDocumentPosition ) { + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { + return a.compareDocumentPosition ? -1 : 1; + } + + return a.compareDocumentPosition(b) & 4 ? -1 : 1; + }; + +} else { + sortOrder = function( a, b ) { + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // If the nodes are siblings (or identical) we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + + siblingCheck = function( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; + }; +} + +// Utility function for retreiving the text value of an array of DOM nodes +Sizzle.getText = function( elems ) { + var ret = "", elem; + + for ( var i = 0; elems[i]; i++ ) { + elem = elems[i]; + + // Get the text from text nodes and CDATA nodes + if ( elem.nodeType === 3 || elem.nodeType === 4 ) { + ret += elem.nodeValue; + + // Traverse everything else, except comment nodes + } else if ( elem.nodeType !== 8 ) { + ret += Sizzle.getText( elem.childNodes ); + } + } + + return ret; +}; + +// [vsdoc] The following function has been modified for IntelliSense. +// Check to see if the browser returns elements by name when +// querying by getElementById (and provide a workaround) +(function(){ + // We're going to inject a fake input element with a specified name + // var form = document.createElement("div"), + // id = "script" + (new Date()).getTime(), + // root = document.documentElement; + + // form.innerHTML = ""; + + // // Inject it into the root element, check its status, and remove it quickly + // root.insertBefore( form, root.firstChild ); + + // // The workaround has to do additional checks after a getElementById + // // Which slows things down for other browsers (hence the branching) + // if ( document.getElementById( id ) ) { + Expr.find.ID = function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + + return m ? + m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? + [m] : + undefined : + []; + } + }; + + Expr.filter.ID = function( elem, match ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + + return elem.nodeType === 1 && node && node.nodeValue === match; + }; + // } + + // root.removeChild( form ); + + // release memory in IE + root = form = null; +})(); + +// [vsdoc] The following function has been modified for IntelliSense. +(function(){ + // Check to see if the browser returns only elements + // when doing getElementsByTagName("*") + + // Create a fake element + // var div = document.createElement("div"); + // div.appendChild( document.createComment("") ); + + // Make sure no comments are found + // if ( div.getElementsByTagName("*").length > 0 ) { + Expr.find.TAG = function( match, context ) { + var results = context.getElementsByTagName( match[1] ); + + // Filter out possible comments + if ( match[1] === "*" ) { + var tmp = []; + + for ( var i = 0; results[i]; i++ ) { + if ( results[i].nodeType === 1 ) { + tmp.push( results[i] ); + } + } + + results = tmp; + } + + return results; + }; + // } + + // Check to see if an attribute returns normalized href attributes + // div.innerHTML = ""; + + // if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && + // div.firstChild.getAttribute("href") !== "#" ) { + + // Expr.attrHandle.href = function( elem ) { + // return elem.getAttribute( "href", 2 ); + // }; + // } + + // release memory in IE + div = null; +})(); + +if ( document.querySelectorAll ) { + (function(){ + var oldSizzle = Sizzle, + div = document.createElement("div"), + id = "__sizzle__"; + + div.innerHTML = "

"; + + // Safari can't handle uppercase or unicode characters when + // in quirks mode. + if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { + return; + } + + Sizzle = function( query, context, extra, seed ) { + context = context || document; + + // Make sure that attribute selectors are quoted + query = query.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); + + // Only use querySelectorAll on non-XML documents + // (ID selectors don't work in non-HTML documents) + if ( !seed && !Sizzle.isXML(context) ) { + if ( context.nodeType === 9 ) { + try { + return makeArray( context.querySelectorAll(query), extra ); + } catch(qsaError) {} + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + var old = context.getAttribute( "id" ), + nid = old || id; + + if ( !old ) { + context.setAttribute( "id", nid ); + } + + try { + return makeArray( context.querySelectorAll( "#" + nid + " " + query ), extra ); + + } catch(pseudoError) { + } finally { + if ( !old ) { + context.removeAttribute( "id" ); + } + } + } + } + + return oldSizzle(query, context, extra, seed); + }; + + for ( var prop in oldSizzle ) { + Sizzle[ prop ] = oldSizzle[ prop ]; + } + + // release memory in IE + div = null; + })(); +} + +(function(){ + var html = document.documentElement, + matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector, + pseudoWorks = false; + + try { + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( document.documentElement, "[test!='']:sizzle" ); + + } catch( pseudoError ) { + pseudoWorks = true; + } + + if ( matches ) { + Sizzle.matchesSelector = function( node, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); + + if ( !Sizzle.isXML( node ) ) { + try { + if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { + return matches.call( node, expr ); + } + } catch(e) {} + } + + return Sizzle(expr, null, null, [node]).length > 0; + }; + } +})(); + +(function(){ + var div = document.createElement("div"); + + div.innerHTML = "
"; + + // Opera can't find a second classname (in 9.6) + // Also, make sure that getElementsByClassName actually exists + if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { + return; + } + + // Safari caches class attributes, doesn't catch changes (in 3.2) + div.lastChild.className = "e"; + + if ( div.getElementsByClassName("e").length === 1 ) { + return; + } + + Expr.order.splice(1, 0, "CLASS"); + Expr.find.CLASS = function( match, context, isXML ) { + if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { + return context.getElementsByClassName(match[1]); + } + }; + + // release memory in IE + div = null; +})(); + +function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem.sizcache === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 && !isXML ){ + elem.sizcache = doneName; + elem.sizset = i; + } + + if ( elem.nodeName.toLowerCase() === cur ) { + match = elem; + break; + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem.sizcache === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 ) { + if ( !isXML ) { + elem.sizcache = doneName; + elem.sizset = i; + } + + if ( typeof cur !== "string" ) { + if ( elem === cur ) { + match = true; + break; + } + + } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { + match = elem; + break; + } + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +if ( document.documentElement.contains ) { + Sizzle.contains = function( a, b ) { + /// + /// Check to see if a DOM node is within another DOM node. + /// + /// + /// The DOM element that may contain the other element. + /// + /// + /// The DOM node that may be contained by the other element. + /// + /// + + return a !== b && (a.contains ? a.contains(b) : true); + }; + +} else if ( document.documentElement.compareDocumentPosition ) { + Sizzle.contains = function( a, b ) { + /// + /// Check to see if a DOM node is within another DOM node. + /// + /// + /// The DOM element that may contain the other element. + /// + /// + /// The DOM node that may be contained by the other element. + /// + /// + + return !!(a.compareDocumentPosition(b) & 16); + }; + +} else { + Sizzle.contains = function() { + return false; + }; +} + +Sizzle.isXML = function( elem ) { + /// + /// Determines if the parameter passed is an XML document. + /// + /// The object to test + /// True if the parameter is an XML document; otherwise false. + + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; + + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +var posProcess = function( selector, context ) { + var match, + tmpSet = [], + later = "", + root = context.nodeType ? [context] : context; + + // Position selectors must be done after the filter + // And so must :not(positional) so we move all PSEUDOs to the end + while ( (match = Expr.match.PSEUDO.exec( selector )) ) { + later += match[0]; + selector = selector.replace( Expr.match.PSEUDO, "" ); + } + + selector = Expr.relative[selector] ? selector + "*" : selector; + + for ( var i = 0, l = root.length; i < l; i++ ) { + Sizzle( selector, root[i], tmpSet ); + } + + return Sizzle.filter( later, tmpSet ); +}; + +// EXPOSE +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.filters; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})(); + + +var runtil = /Until$/, + rparentsprev = /^(?:parents|prevUntil|prevAll)/, + // Note: This RegExp should be improved, or likely pulled from Sizzle + rmultiselector = /,/, + isSimple = /^.[^:#\[\.,]*$/, + slice = Array.prototype.slice, + POS = jQuery.expr.match.POS; + +jQuery.fn.extend({ + find: function( selector ) { + /// + /// Searches for all elements that match the specified expression. + /// This method is a good way to find additional descendant + /// elements with which to process. + /// All searching is done using a jQuery expression. The expression can be + /// written using CSS 1-3 Selector syntax, or basic XPath. + /// Part of DOM/Traversing + /// + /// + /// + /// An expression to search with. + /// + /// + + var ret = this.pushStack( "", "find", selector ), + length = 0; + + for ( var i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( var n = length; n < ret.length; n++ ) { + for ( var r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + /// + /// Reduce the set of matched elements to those that have a descendant that matches the + /// selector or DOM element. + /// + /// + /// A string containing a selector expression to match elements against. + /// + /// + + var targets = jQuery( target ); + return this.filter(function() { + for ( var i = 0, l = targets.length; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + /// + /// Removes any elements inside the array of elements from the set + /// of matched elements. This method is used to remove one or more + /// elements from a jQuery object. + /// Part of DOM/Traversing + /// + /// + /// A set of elements to remove from the jQuery set of matched elements. + /// + /// + + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + /// + /// Removes all elements from the set of matched elements that do not + /// pass the specified filter. This method is used to narrow down + /// the results of a search. + /// }) + /// Part of DOM/Traversing + /// + /// + /// + /// A function to use for filtering + /// + /// + + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + /// + /// Checks the current selection against an expression and returns true, + /// if at least one element of the selection fits the given expression. + /// Does return false, if no element fits or the expression is not valid. + /// filter(String) is used internally, therefore all rules that apply there + /// apply here, too. + /// Part of DOM/Traversing + /// + /// + /// + /// The expression with which to filter + /// + + return !!selector && jQuery.filter( selector, this ).length > 0; + }, + + closest: function( selectors, context ) { + /// + /// Get a set of elements containing the closest parent element that matches the specified selector, the starting element included. + /// + /// + /// A string containing a selector expression to match elements against. + /// + /// + /// A DOM element within which a matching element may be found. If no context is passed + /// in then the context of the jQuery set will be used instead. + /// + /// + + var ret = [], i, l, cur = this[0]; + + if ( jQuery.isArray( selectors ) ) { + var match, selector, + matches = {}, + level = 1; + + if ( cur && selectors.length ) { + for ( i = 0, l = selectors.length; i < l; i++ ) { + selector = selectors[i]; + + if ( !matches[selector] ) { + matches[selector] = jQuery.expr.match.POS.test( selector ) ? + jQuery( selector, context || this.context ) : + selector; + } + } + + while ( cur && cur.ownerDocument && cur !== context ) { + for ( selector in matches ) { + match = matches[selector]; + + if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) { + ret.push({ selector: selector, elem: cur, level: level }); + } + } + + cur = cur.parentNode; + level++; + } + } + + return ret; + } + + var pos = POS.test( selectors ) ? + jQuery( selectors, context || this.context ) : null; + + for ( i = 0, l = this.length; i < l; i++ ) { + cur = this[i]; + + while ( cur ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + + } else { + cur = cur.parentNode; + if ( !cur || !cur.ownerDocument || cur === context ) { + break; + } + } + } + } + + ret = ret.length > 1 ? jQuery.unique(ret) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + /// + /// Searches every matched element for the object and returns + /// the index of the element, if found, starting with zero. + /// Returns -1 if the object wasn't found. + /// Part of Core + /// + /// + /// + /// Object to search for + /// + + if ( !elem || typeof elem === "string" ) { + return jQuery.inArray( this[0], + // If it receives a string, the selector is used + // If it receives nothing, the siblings are used + elem ? jQuery( elem ) : this.parent().children() ); + } + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + /// + /// Adds one or more Elements to the set of matched elements. + /// Part of DOM/Traversing + /// + /// + /// A string containing a selector expression to match additional elements against. + /// + /// + /// Add some elements rooted against the specified context. + /// + /// + + var set = typeof selector === "string" ? + jQuery( selector, context || this.context ) : + jQuery.makeArray( selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + andSelf: function() { + /// + /// Adds the previous selection to the current selection. + /// + /// + + return this.add( this.prevObject ); + } +}); + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + /// + /// Get the ancestors of each element in the current set of matched elements, up to but not + /// including the element matched by the selector. + /// + /// + /// A string containing a selector expression to indicate where to stop matching ancestor + /// elements. + /// + /// + + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return jQuery.nth( elem, 2, "nextSibling" ); + }, + prev: function( elem ) { + return jQuery.nth( elem, 2, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + /// + /// Get all following siblings of each element up to but not including the element matched + /// by the selector. + /// + /// + /// A string containing a selector expression to indicate where to stop matching following + /// sibling elements. + /// + /// + + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + /// + /// Get all preceding siblings of each element up to but not including the element matched + /// by the selector. + /// + /// + /// A string containing a selector expression to indicate where to stop matching preceding + /// sibling elements. + /// + /// + + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( elem.parentNode.firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.makeArray( elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 ? jQuery.unique( ret ) : ret; + + if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, slice.call(arguments).join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + /// + /// This member is internal only. + /// + /// + + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + nth: function( cur, result, dir, elem ) { + /// + /// This member is internal only. + /// + /// + + result = result || 1; + var num = 0; + + for ( ; cur; cur = cur[dir] ) { + if ( cur.nodeType === 1 && ++num === result ) { + break; + } + } + + return cur; + }, + + sibling: function( n, elem ) { + /// + /// This member is internal only. + /// + /// + + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return (elem === qualifier) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return (jQuery.inArray( elem, qualifier ) >= 0) === keep; + }); +} + + + + +var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, + rtagName = /<([\w:]+)/, + rtbody = /\s]+\/)>/g, + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
", "
" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + col: [ 2, "", "
" ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }; + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE can't serialize and + + +@using (Html.BeginForm()) { + @Html.ValidationSummary(true, "Password change was unsuccessful. Please correct the errors and try again.") +
+
+ Account Information + +
+ @Html.LabelFor(m => m.OldPassword) +
+
+ @Html.PasswordFor(m => m.OldPassword) + @Html.ValidationMessageFor(m => m.OldPassword) +
+ +
+ @Html.LabelFor(m => m.NewPassword) +
+
+ @Html.PasswordFor(m => m.NewPassword) + @Html.ValidationMessageFor(m => m.NewPassword) +
+ +
+ @Html.LabelFor(m => m.ConfirmPassword) +
+
+ @Html.PasswordFor(m => m.ConfirmPassword) + @Html.ValidationMessageFor(m => m.ConfirmPassword) +
+ +

+ +

+
+
+} diff --git a/main/MyFriendsAround.Web/Views/Account/ChangePasswordSuccess.cshtml b/main/MyFriendsAround.Web/Views/Account/ChangePasswordSuccess.cshtml new file mode 100644 index 0000000..8a32b7d --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Account/ChangePasswordSuccess.cshtml @@ -0,0 +1,8 @@ +@{ + ViewBag.Title = "Change Password"; +} + +

Change Password

+

+ Your password has been changed successfully. +

diff --git a/main/MyFriendsAround.Web/Views/Account/LogOn.cshtml b/main/MyFriendsAround.Web/Views/Account/LogOn.cshtml new file mode 100644 index 0000000..e04b084 --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Account/LogOn.cshtml @@ -0,0 +1,48 @@ +@model MyFriendsAround.Web.Models.LogOnModel + +@{ + ViewBag.Title = "Log On"; +} + +

Log On

+

+ Please enter your username and password. @Html.ActionLink("Register", "Register") if you don't have an account. +

+ + + + +@Html.ValidationSummary(true, "Login was unsuccessful. Please correct the errors and try again.") + +@using (Html.BeginForm()) { +
+
+ Account Information + +
+ @Html.LabelFor(m => m.UserName) +
+
+ @Html.TextBoxFor(m => m.UserName) + @Html.ValidationMessageFor(m => m.UserName) +
+ +
+ @Html.LabelFor(m => m.Password) +
+
+ @Html.PasswordFor(m => m.Password) + @Html.ValidationMessageFor(m => m.Password) +
+ +
+ @Html.CheckBoxFor(m => m.RememberMe) + @Html.LabelFor(m => m.RememberMe) +
+ +

+ +

+
+
+} diff --git a/main/MyFriendsAround.Web/Views/Account/Register.cshtml b/main/MyFriendsAround.Web/Views/Account/Register.cshtml new file mode 100644 index 0000000..8b97e54 --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Account/Register.cshtml @@ -0,0 +1,61 @@ +@model MyFriendsAround.Web.Models.RegisterModel + +@{ + ViewBag.Title = "Register"; +} + +

Create a New Account

+

+ Use the form below to create a new account. +

+

+ Passwords are required to be a minimum of @ViewBag.PasswordLength characters in length. +

+ + + + +@using (Html.BeginForm()) { + @Html.ValidationSummary(true, "Account creation was unsuccessful. Please correct the errors and try again.") +
+
+ Account Information + +
+ @Html.LabelFor(m => m.UserName) +
+
+ @Html.TextBoxFor(m => m.UserName) + @Html.ValidationMessageFor(m => m.UserName) +
+ +
+ @Html.LabelFor(m => m.Email) +
+
+ @Html.TextBoxFor(m => m.Email) + @Html.ValidationMessageFor(m => m.Email) +
+ +
+ @Html.LabelFor(m => m.Password) +
+
+ @Html.PasswordFor(m => m.Password) + @Html.ValidationMessageFor(m => m.Password) +
+ +
+ @Html.LabelFor(m => m.ConfirmPassword) +
+
+ @Html.PasswordFor(m => m.ConfirmPassword) + @Html.ValidationMessageFor(m => m.ConfirmPassword) +
+ +

+ +

+
+
+} diff --git a/main/MyFriendsAround.Web/Views/Home/About.cshtml b/main/MyFriendsAround.Web/Views/Home/About.cshtml new file mode 100644 index 0000000..6bb3e8a --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Home/About.cshtml @@ -0,0 +1,10 @@ +@{ + ViewBag.Title = "About My Friends Around"; +} + +

About this site

+

+ My Friend Around website aims to show users map geolocation.
+ It is a proof of concept sample used in Windows Phone 7 integration presentation. + +

diff --git a/main/MyFriendsAround.Web/Views/Home/Index.cshtml b/main/MyFriendsAround.Web/Views/Home/Index.cshtml new file mode 100644 index 0000000..4773877 --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Home/Index.cshtml @@ -0,0 +1,24 @@ +@using GoogleMaps.Models +@{ + ViewBag.Title = "My Friends Around - Home Page"; +} +
+

@ViewBag.Message

+
+

+ @Html.Raw(Html.DrawMap("ABQIAAAAksAhKXCpVW3aANz3gzuv4xT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRJW_HFuarMuHR-nqN1g7x09OKIPQ", "/Home/GetMarkers?timestamp=" + DateTime.Now.Ticks.ToString(), "1000", "500")) + +

diff --git a/main/MyFriendsAround.Web/Views/Shared/Error.cshtml b/main/MyFriendsAround.Web/Views/Shared/Error.cshtml new file mode 100644 index 0000000..5cce852 --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Shared/Error.cshtml @@ -0,0 +1,9 @@ +@model System.Web.Mvc.HandleErrorInfo + +@{ + ViewBag.Title = "Error"; +} + +

+ Sorry, an error occurred while processing your request. +

diff --git a/main/MyFriendsAround.Web/Views/Shared/_Layout.cshtml b/main/MyFriendsAround.Web/Views/Shared/_Layout.cshtml new file mode 100644 index 0000000..1c8a044 --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Shared/_Layout.cshtml @@ -0,0 +1,38 @@ + + + + @ViewBag.Title + + + + + +
+ + + +
+ @RenderBody() + +
+
+ + diff --git a/main/MyFriendsAround.Web/Views/Shared/_LogOnPartial.cshtml b/main/MyFriendsAround.Web/Views/Shared/_LogOnPartial.cshtml new file mode 100644 index 0000000..b6fd9fe --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Shared/_LogOnPartial.cshtml @@ -0,0 +1,7 @@ +@if(Request.IsAuthenticated) { + Welcome @Context.User.Identity.Name! + [ @Html.ActionLink("Log Off", "LogOff", "Account") ] +} +else { + @:[ @Html.ActionLink("Log On", "LogOn", "Account") ] +} diff --git a/main/MyFriendsAround.Web/Views/Web.config b/main/MyFriendsAround.Web/Views/Web.config new file mode 100644 index 0000000..4c30ef2 --- /dev/null +++ b/main/MyFriendsAround.Web/Views/Web.config @@ -0,0 +1,58 @@ + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/main/MyFriendsAround.Web/Views/_ViewStart.cshtml b/main/MyFriendsAround.Web/Views/_ViewStart.cshtml new file mode 100644 index 0000000..9c30ccf --- /dev/null +++ b/main/MyFriendsAround.Web/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "~/Views/Shared/_Layout.cshtml"; +} \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Web.Debug.config b/main/MyFriendsAround.Web/Web.Debug.config new file mode 100644 index 0000000..962e6b7 --- /dev/null +++ b/main/MyFriendsAround.Web/Web.Debug.config @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Web.Release.config b/main/MyFriendsAround.Web/Web.Release.config new file mode 100644 index 0000000..141832b --- /dev/null +++ b/main/MyFriendsAround.Web/Web.Release.config @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/main/MyFriendsAround.Web/Web.config b/main/MyFriendsAround.Web/Web.config new file mode 100644 index 0000000..1618396 --- /dev/null +++ b/main/MyFriendsAround.Web/Web.config @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/main/MyFriendsAround.Web/myfriends.svc b/main/MyFriendsAround.Web/myfriends.svc new file mode 100644 index 0000000..6763435 --- /dev/null +++ b/main/MyFriendsAround.Web/myfriends.svc @@ -0,0 +1 @@ +<%@ ServiceHost Language="C#" Debug="true" Service="MyFriendsAround.Web.myfriends" CodeBehind="myfriends.svc.cs" %> diff --git a/main/MyFriendsAround.Web/myfriends.svc.cs b/main/MyFriendsAround.Web/myfriends.svc.cs new file mode 100644 index 0000000..bccdc4a --- /dev/null +++ b/main/MyFriendsAround.Web/myfriends.svc.cs @@ -0,0 +1,39 @@ +using System; +using System.Data; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.ServiceModel.Activation; +using System.ServiceModel.Web; +using System.Text; +using MyFriendsAround.Common.Entities; +using MyFriendsAround.Data; +using MyFriendsAround.Data.BLL; + +namespace MyFriendsAround.Web +{ + [ServiceContract(Namespace = "http://myfriendsaround.com/")] + [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)] + [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)] + public class myfriends + { + + [OperationContract] + [WebGet(ResponseFormat = WebMessageFormat.Json)] + public List GetFriends() + { + return FriendsRepository.GetFriends(); + } + + + [OperationContract] + [WebInvoke(ResponseFormat = WebMessageFormat.Json, Method = "POST")] + public bool PublishLocation(Friend friend) + { + return FriendsRepository.PublishLocation(friend); + } + + } +} diff --git a/main/MyFriendsAround.sln b/main/MyFriendsAround.sln new file mode 100644 index 0000000..fd5d54e --- /dev/null +++ b/main/MyFriendsAround.sln @@ -0,0 +1,217 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyFriendsAround.Web", "MyFriendsAround.Web\MyFriendsAround.Web.csproj", "{41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyFriendsAround.Web.Tests", "MyFriendsAround.Web.Tests\MyFriendsAround.Web.Tests.csproj", "{9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyFriendsAround.Common", "MyFriendsAround.Common\MyFriendsAround.Common.csproj", "{80664694-C63F-4653-B3FC-617AEC468B3C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyFriendsAround.Data", "MyFriendsAround.Data\MyFriendsAround.Data.csproj", "{C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}" +EndProject +Project("{C8D11400-126E-41CD-887F-60BD40844F9E}") = "MyFriendsAround.DB", "MyFriendsAround.DB\MyFriendsAround.DB.dbproj", "{67CBC824-A49E-4E9B-A947-360F3DFE65C3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyFriendsAround.BLL", "MyFriendsAround.Data.BLL\MyFriendsAround.BLL.csproj", "{C78D400C-204A-4FAE-B63E-4D86A9871641}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyFriendsAround.WP7", "MyFriendsAround.WP7\MyFriendsAround.WP7.csproj", "{B690843F-9163-4292-9450-8855AAA3FD5B}" + ProjectSection(ProjectDependencies) = postProject + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D} = {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D} + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libs", "Libs", "{340549A1-45EA-4B49-B194-347C0078BAD8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GpsEmulator", "Libs\GpsEmulator\GpsEmulator\GpsEmulator.csproj", "{566AEE14-134C-4EE4-93B5-1FFB021DE678}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GpsEmulatorClient", "Libs\GpsEmulator\GpsEmulatorClient\GpsEmulatorClient.csproj", "{A128812A-1249-4562-BDF4-5E17951B8434}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GpsEmulatorPhoneTestClient", "Libs\GpsEmulator\GpsEmulatorPhoneTestClient\GpsEmulatorPhoneTestClient.csproj", "{BF7316A8-A2C5-4176-8D7F-672AD12F474D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + Tests|Any CPU = Tests|Any CPU + Tests|Mixed Platforms = Tests|Mixed Platforms + Tests|x86 = Tests|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Debug|x86.ActiveCfg = Debug|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Release|Any CPU.Build.0 = Release|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Release|x86.ActiveCfg = Release|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Tests|Any CPU.Build.0 = Tests|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {41FDB0B4-0F93-4D1C-99C1-57F4A7E7EF3D}.Tests|x86.ActiveCfg = Tests|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Debug|x86.ActiveCfg = Debug|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Release|Any CPU.Build.0 = Release|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Release|x86.ActiveCfg = Release|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Tests|Any CPU.Build.0 = Tests|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {9FBA5EA7-7308-4B39-ADE9-DF2EB28C116F}.Tests|x86.ActiveCfg = Tests|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Debug|x86.ActiveCfg = Debug|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Release|Any CPU.Build.0 = Release|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Release|x86.ActiveCfg = Release|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Tests|Any CPU.Build.0 = Tests|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {80664694-C63F-4653-B3FC-617AEC468B3C}.Tests|x86.ActiveCfg = Tests|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Debug|x86.ActiveCfg = Debug|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Release|Any CPU.Build.0 = Release|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Release|x86.ActiveCfg = Release|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Tests|Any CPU.Build.0 = Tests|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {C3D31B22-BFF4-4DF1-A1EC-C8F158DEEB33}.Tests|x86.ActiveCfg = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Debug|x86.ActiveCfg = Debug|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|Any CPU.Build.0 = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|Any CPU.Deploy.0 = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Release|x86.ActiveCfg = Release|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|Any CPU.Build.0 = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|Any CPU.Deploy.0 = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|Mixed Platforms.Deploy.0 = Tests|Any CPU + {67CBC824-A49E-4E9B-A947-360F3DFE65C3}.Tests|x86.ActiveCfg = Tests|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Debug|x86.ActiveCfg = Debug|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Release|Any CPU.Build.0 = Release|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Release|x86.ActiveCfg = Release|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Tests|Any CPU.Build.0 = Tests|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {C78D400C-204A-4FAE-B63E-4D86A9871641}.Tests|x86.ActiveCfg = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Debug|x86.ActiveCfg = Debug|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|Any CPU.Build.0 = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|Any CPU.Deploy.0 = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Release|x86.ActiveCfg = Release|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|Any CPU.Build.0 = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|Any CPU.Deploy.0 = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|Mixed Platforms.Deploy.0 = Tests|Any CPU + {B690843F-9163-4292-9450-8855AAA3FD5B}.Tests|x86.ActiveCfg = Tests|Any CPU + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|Any CPU.ActiveCfg = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|x86.ActiveCfg = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Debug|x86.Build.0 = Debug|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|Any CPU.ActiveCfg = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|Mixed Platforms.Build.0 = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|x86.ActiveCfg = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Release|x86.Build.0 = Release|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Tests|Any CPU.ActiveCfg = Tests|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Tests|Mixed Platforms.ActiveCfg = Tests|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Tests|Mixed Platforms.Build.0 = Tests|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Tests|x86.ActiveCfg = Tests|x86 + {566AEE14-134C-4EE4-93B5-1FFB021DE678}.Tests|x86.Build.0 = Tests|x86 + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Debug|x86.ActiveCfg = Debug|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Any CPU.Build.0 = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Release|x86.ActiveCfg = Release|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Tests|Any CPU.Build.0 = Tests|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {A128812A-1249-4562-BDF4-5E17951B8434}.Tests|x86.ActiveCfg = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Debug|x86.ActiveCfg = Debug|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Any CPU.Build.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Any CPU.Deploy.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Release|x86.ActiveCfg = Release|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|Any CPU.ActiveCfg = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|Any CPU.Build.0 = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|Any CPU.Deploy.0 = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|Mixed Platforms.ActiveCfg = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|Mixed Platforms.Build.0 = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|Mixed Platforms.Deploy.0 = Tests|Any CPU + {BF7316A8-A2C5-4176-8D7F-672AD12F474D}.Tests|x86.ActiveCfg = Tests|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {566AEE14-134C-4EE4-93B5-1FFB021DE678} = {340549A1-45EA-4B49-B194-347C0078BAD8} + {A128812A-1249-4562-BDF4-5E17951B8434} = {340549A1-45EA-4B49-B194-347C0078BAD8} + {BF7316A8-A2C5-4176-8D7F-672AD12F474D} = {340549A1-45EA-4B49-B194-347C0078BAD8} + EndGlobalSection +EndGlobal diff --git a/main/packages/SilverlightToolkitWP.4.2011.2.1/SilverlightToolkitWP.4.2011.2.1.nupkg b/main/packages/SilverlightToolkitWP.4.2011.2.1/SilverlightToolkitWP.4.2011.2.1.nupkg new file mode 100644 index 0000000000000000000000000000000000000000..b9d58fc421c4df1d667a903a9aa57f7dc604dc11 GIT binary patch literal 133387 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

WzeG0Lo8)Bm+;bZv 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⁡gHR)R)&_N27l-p4s-Vk z+wC9h7tRZ|8fiIV@TQKT&d)x(f_TBZtfp8_8oV>iaICYxcPKB6=NoR~$O{eOg?fei z!xYmjrw%^XFr4_;=evANT>brmVXh_{936%X^U{q()CT`s1FN7lXN1O(iCSt`4_8}G z_>*jhYFG`|9tNk4rg|)Ah`J^$_g}yCtVUS=_32p4Y5z*7X*EuBOy%&DfHP}-x2^y5 z!KZ&;an1D)!Y`Ilf5~FF)gH^;SC<`H`d{Xnh1v!rg!9ot z4W3Z=<9h&{gW=aq51H%^4-Z+)W{3F)?(+!^^!M8xZsE<_^l}5!9z8)V^v?Utpd^wE`W`gtb*;zzPHXf03H|+Gckq1*3hs^HY&gs8n=3uje7}$B`()IAf5DnqFGpN%P ztF)G&Ywph$Ph96&fAK=#mR&kGEbce%aKP7mW@+d~%;MTO+&U65{^Cpg%7(5HYoBpX zz4`gzP`&vl4~eah4V$PuIy}YuMo;nmC3olj_IUX(Pm)%vHV~Ki%k0|MZQOXJarZ&X zQJ-d_2ZxTVxY>0rcF1JQ*dc!zaBZvDA;aJ;?H>es)H3q_7XqDX$@&L@j{g^dZt@TE zF?S933JUpyJT<-z{2IYoppEwGc1w053luc9>7-K7VhYFm{knxYsVP za4)tuFVx38B$OB86B_OhAK3VKb2v7;EO*Y|wR8T0MT>SWn!j+TrH_xLw~fytOB*YT zkg%X#-XSK}$E(e{I_5`#|M?-##qGFJL4hW4o`*qxx5U)S!qU{lCm2q5$laEhMuhvC zFEr)a+YJ`J;m@*7V4C2t#k;(hnEt^lLLx!~EqI}R>|Ne$pFp1=pWyH?wv~ky+w{+O z!+k=7!v1T5A5Z>#Gb+sg&$pmc$0BmxkBqG?Ev?wUIInZ{-t80QW$qsw7VZ`7?ejII#YKVJ2ST|4$6}N8x`haIgaYyI>#t`}+HY+W)1*KeBh<@FUG%-m&{*i0$WF zSX)|ISy)?G*|Gn5Z!o_=uVB9jNO|@?!RDJ?e;z;}bcj#bc8ftm{y#$OKl1wr-Tr^3tHEZ$I+=$L z)(H~Ravxu>h`?|Yrzm*)A9F0!Cos$usu@3C94u>zsaHrypuhJIorAqEc-MbWulXO8 zYXMXKcn4}UAz^c1dreK)|FwwVh_DbJ@Bg6?o_DxU`2Q+(cocl}zpUT?m^38V?|(Px zu0YtF|IJc=aJv5?_5aYP|G`%O>{a#;Du5)YKEzz@U;J8rePu2Q`S{?a_n-V!4H+C; z_TV^${UhNRwIOP{YJ-g4f1qu?6{Oq}4K+36e@kc&@BX(bZ1Im#{LhRYpBxiAD9_8_ zHU8f+dabFZ_6Pm3e|BCJQ*A|Cx){6fk`^Y=bAfto|*R;oASo<)7T@ zk6~du{EJSPd4*ay4szf?3pnWinf?Bn^UNKX^%Zzo{#*8h&j0)Dcl&q;{I}evFB(?3 zaX?*dpUH&jh6(0?a8EO0*iPnK-)gY{YrHe!(DSp2h9kmCMP?|%*Nzl-C) yW_<^ai~DQwl^R3-8^hbMRtpZ78l*8@H9n*xH*NT#_J09EsuZyR literal 0 HcmV?d00001 diff --git a/main/packages/SilverlightToolkitWP.4.2011.2.1/content/README_FIRST.txt b/main/packages/SilverlightToolkitWP.4.2011.2.1/content/README_FIRST.txt new file mode 100644 index 0000000..02b8f61 --- /dev/null +++ b/main/packages/SilverlightToolkitWP.4.2011.2.1/content/README_FIRST.txt @@ -0,0 +1,3 @@ +For the Silverlight for Windows Phone Toolkit make sure that you have +marked the icons in the "Toolkit.Content" folder as content. That way they +can be used as the icons for the ApplicationBar control. \ No newline at end of file diff --git a/main/packages/SilverlightToolkitWP.4.2011.2.1/content/Toolkit.Content/ApplicationBar.Cancel.png b/main/packages/SilverlightToolkitWP.4.2011.2.1/content/Toolkit.Content/ApplicationBar.Cancel.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd724f087fca227e7ee7ceefd19649c5b9a0351 GIT binary patch literal 350 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@j0~PGjv*Dd-pstndsuh8nf>utOJ$E-| zFMsKu(zG#v;j7MF|Bk8EhY|vq1bJt~%r2K|N*h>MBE_mo8I)a0re`rF7#CSG>=3>0W57K1`hkcQ(~r!$GJ9*p z?7J^}*Zj7-P^!Ld*7+GL)%c2oK8M@g*FW_)Q8xIRi*ftTeeam9og;U5O?&)R@IyN& fc;MjbBjp1O$7bzju+Ww91&MmP`njxgN@xNA$Y_JF literal 0 HcmV?d00001 diff --git a/main/packages/SilverlightToolkitWP.4.2011.2.1/content/Toolkit.Content/ApplicationBar.Check.png b/main/packages/SilverlightToolkitWP.4.2011.2.1/content/Toolkit.Content/ApplicationBar.Check.png new file mode 100644 index 0000000000000000000000000000000000000000..7a074666878744c35a6e72079704f59854bcd0f6 GIT binary patch literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@j1HbIjv*Dd-ppv^ZB`I)JigUd?>+BXY}mz^(R1xr>8d*3 z9hUEcPwQ#LFnr&Y`fQK+yeI9Up%a-6qFb~CA3XDn^MCp|ok65`dD97xPq7IXPhH)2 zgki@rHDlw|J3|DMQ};1WW_oD2+B0_JxrUu=PncYU4YgypY>fa vyGFQQU`yqNo#K29|GeN{1u_!ktGEmprf?gTe~DWM4f^R}GR literal 0 HcmV?d00001 diff --git a/main/packages/SilverlightToolkitWP.4.2011.2.1/lib/sl4/Microsoft.Phone.Controls.Toolkit.dll b/main/packages/SilverlightToolkitWP.4.2011.2.1/lib/sl4/Microsoft.Phone.Controls.Toolkit.dll new file mode 100644 index 0000000000000000000000000000000000000000..573b246aed6d2541c54e85e694f6f21ab741a070 GIT binary patch literal 325432 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 z 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 BWHbN( literal 0 HcmV?d00001 diff --git a/main/packages/repositories.config b/main/packages/repositories.config new file mode 100644 index 0000000..f713fb0 --- /dev/null +++ b/main/packages/repositories.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file