diff --git a/.nuget/NuGet.Config b/.nuget/NuGet.Config new file mode 100644 index 0000000..67f8ea0 --- /dev/null +++ b/.nuget/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.nuget/NuGet.exe b/.nuget/NuGet.exe new file mode 100644 index 0000000..c41a0d0 Binary files /dev/null and b/.nuget/NuGet.exe differ diff --git a/.nuget/NuGet.targets b/.nuget/NuGet.targets new file mode 100644 index 0000000..3f8c37b --- /dev/null +++ b/.nuget/NuGet.targets @@ -0,0 +1,144 @@ + + + + $(MSBuildProjectDirectory)\..\ + + + false + + + false + + + true + + + false + + + + + + + + + + + $([System.IO.Path]::Combine($(SolutionDir), ".nuget")) + + + + + $(SolutionDir).nuget + + + + $(MSBuildProjectDirectory)\packages.$(MSBuildProjectName.Replace(' ', '_')).config + $(MSBuildProjectDirectory)\packages.$(MSBuildProjectName).config + + + + $(MSBuildProjectDirectory)\packages.config + $(PackagesProjectConfig) + + + + + $(NuGetToolsPath)\NuGet.exe + @(PackageSource) + + "$(NuGetExePath)" + mono --runtime=v4.0.30319 "$(NuGetExePath)" + + $(TargetDir.Trim('\\')) + + -RequireConsent + -NonInteractive + + "$(SolutionDir) " + "$(SolutionDir)" + + + $(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir) + $(NuGetCommand) pack "$(ProjectPath)" -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols + + + + RestorePackages; + $(BuildDependsOn); + + + + + $(BuildDependsOn); + BuildPackage; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Mobile Device Detector.update b/Mobile Device Detector.update new file mode 100644 index 0000000..389cf94 Binary files /dev/null and b/Mobile Device Detector.update differ diff --git a/MobileDeviceDetector/51Degrees.mobi.config b/MobileDeviceDetector/51Degrees.mobi.config index f4aec07..fda7dc5 100644 --- a/MobileDeviceDetector/51Degrees.mobi.config +++ b/MobileDeviceDetector/51Degrees.mobi.config @@ -1,18 +1,17 @@ - +
- - -
+
- + - + + + + + + + + + + + + + + + - + - + logged. Defaults to Fatal if not specified. (Optional)--> + + - + + + + + \ No newline at end of file diff --git a/MobileDeviceDetector/App_Data/51Degrees.mobi-Lite.dat b/MobileDeviceDetector/App_Data/51Degrees.mobi-Lite.dat deleted file mode 100644 index 599ad46..0000000 Binary files a/MobileDeviceDetector/App_Data/51Degrees.mobi-Lite.dat and /dev/null differ diff --git a/MobileDeviceDetector/App_Data/51Degrees.mobi.config b/MobileDeviceDetector/App_Data/51Degrees.mobi.config index 0ec274d..1922a5c 100644 --- a/MobileDeviceDetector/App_Data/51Degrees.mobi.config +++ b/MobileDeviceDetector/App_Data/51Degrees.mobi.config @@ -1,40 +1,147 @@  - +
- - -
+
- + + + + + + + + + + + + + + + + + + + + - + logged. Defaults to Fatal if not specified. (Optional)--> + + - + + + + + \ No newline at end of file diff --git a/MobileDeviceDetector/DeviceResolverHelper.cs b/MobileDeviceDetector/DeviceResolverHelper.cs index e2a2034..4f209b3 100644 --- a/MobileDeviceDetector/DeviceResolverHelper.cs +++ b/MobileDeviceDetector/DeviceResolverHelper.cs @@ -1,160 +1,179 @@ using System; +using System.Linq; +using FiftyOne.Foundation.Mobile.Detection; using Sitecore.Configuration; -using Factory = FiftyOne.Foundation.Mobile.Detection.Factory; namespace Sitecore.SharedSource.MobileDeviceDetector { - using System.Web; - using Sitecore.Data; - using Sitecore.Data.Items; - using Sitecore.Diagnostics; - using Sitecore.Rules; - using Sitecore.SecurityModel; - using Sitecore.Web; - - /// - /// DeviceResolver helper class - /// - public class DeviceResolverHelper - { - /// - /// Name of the cookie which is used to store device name. - /// - private const string DeviceCookieName = "sc_device"; - - /// - /// Name of the query string parameter that specifies that device should be switched permanently. - /// - private const string PersistedDeviceParameter = "persisted"; + using System.Web; + using Sitecore.Data; + using Sitecore.Data.Items; + using Sitecore.Diagnostics; + using Sitecore.Rules; + using Sitecore.SecurityModel; + using Sitecore.Web; /// - /// Resolves the device. + /// DeviceResolver helper class /// - /// The database. - /// Resolved device - public static DeviceItem ResolveDevice(Database database) + public class DeviceResolverHelper { - if (!Settings.GetBoolSetting("Sitecore.SharedSource.MobileDeviceDetector.Enabled", false)) - { - return null; - } - - using (new SecurityDisabler()) - { - var resolvedDevice = GetQueryStringDevice(database); - if (resolvedDevice != null) - return resolvedDevice; - - resolvedDevice = GetCookieDevice(database); - if (resolvedDevice != null) - return resolvedDevice; - - resolvedDevice = GetRulesDevice(database); - if (resolvedDevice != null) - return resolvedDevice; - - return null; - } - } + /// + /// Name of the cookie which is used to store device name. + /// + private const string DeviceCookieName = "sc_device"; + + /// + /// Name of the query string parameter that specifies that device should be switched permanently. + /// + private const string PersistedDeviceParameter = "persisted"; + + /// + /// Resolves the device. + /// + /// The database. + /// Resolved device + public static DeviceItem ResolveDevice(Database database) + { + if (!Settings.GetBoolSetting("Sitecore.SharedSource.MobileDeviceDetector.Enabled", false)) + { + return null; + } - /// - /// Gets the query string device. - /// - /// The database. - /// Resolved device - private static DeviceItem GetQueryStringDevice(Database database) - { - string queryString = WebUtil.GetQueryString("sc_device"); - if (String.IsNullOrEmpty(queryString)) - { - return null; - } - DeviceItem item = database.Resources.Devices[queryString]; - Error.AssertNotNull(item, "Could not retrieve device: " + queryString + " (database: " + database.Name + ")"); - - if (item != null && MainUtil.GetBool(WebUtil.GetQueryString(PersistedDeviceParameter), false)) - { - HttpContext.Current.Response.Cookies.Add(new HttpCookie(DeviceCookieName, item.Name)); - } - - return item; - } + using (new SecurityDisabler()) + { + var resolvedDevice = GetQueryStringDevice(database); + if (resolvedDevice != null) + return resolvedDevice; - /// - /// Gets the cookie device. - /// - /// The database. - /// Resolved device - private static DeviceItem GetCookieDevice(Database database) - { - var deviceCookie = HttpContext.Current.Request.Cookies[DeviceCookieName]; - if (deviceCookie != null && !String.IsNullOrEmpty(deviceCookie.Value)) - { - DeviceItem item = database.Resources.Devices[deviceCookie.Value]; - return item; - } - - return null; - } + resolvedDevice = GetCookieDevice(database); + if (resolvedDevice != null) + return resolvedDevice; - /// - /// Gets the rules device. - /// - /// The database. - /// Resolved device - private static DeviceItem GetRulesDevice(Database database) - { - DeviceItem[] all = database.Resources.Devices.GetAll(); + resolvedDevice = GetRulesDevice(database); + if (resolvedDevice != null) + return resolvedDevice; + + return null; + } + } + + /// + /// Gets the query string device. + /// + /// The database. + /// Resolved device + private static DeviceItem GetQueryStringDevice(Database database) + { + string queryString = WebUtil.GetQueryString("sc_device"); + if (String.IsNullOrEmpty(queryString)) + { + return null; + } + DeviceItem item = database.Resources.Devices[queryString]; + Error.AssertNotNull(item, "Could not retrieve device: " + queryString + " (database: " + database.Name + ")"); + + if (item != null && MainUtil.GetBool(WebUtil.GetQueryString(PersistedDeviceParameter), false)) + { + HttpContext.Current.Response.Cookies.Add(new HttpCookie(DeviceCookieName, item.Name)); + } + + return item; + } + + /// + /// Gets the cookie device. + /// + /// The database. + /// Resolved device + private static DeviceItem GetCookieDevice(Database database) + { + var deviceCookie = HttpContext.Current.Request.Cookies[DeviceCookieName]; + if (deviceCookie != null && !String.IsNullOrEmpty(deviceCookie.Value)) + { + DeviceItem item = database.Resources.Devices[deviceCookie.Value]; + return item; + } + + return null; + } + + /// + /// Gets the rules device. + /// + /// The database. + /// Resolved device + private static DeviceItem GetRulesDevice(Database database) + { + DeviceItem[] all = database.Resources.Devices.GetAll(); - foreach (var device in all) - { - var ruleContext = new RuleContext(); + foreach (var device in all) + { + var ruleContext = new RuleContext(); - foreach (Rule rule in RuleFactory.GetRules(new[] + foreach (Rule rule in RuleFactory.GetRules(new[] { device.InnerItem }, "Conditions").Rules) + { + if (rule.Condition != null) + { + var stack = new RuleStack(); + rule.Condition.Evaluate(ruleContext, stack); + if (ruleContext.IsAborted) + { + continue; + } + if ((stack.Count != 0) && ((bool)stack.Pop())) + { + return device; + } + } + } + } + + return null; + } + + public static bool GetBoolProperty(string propertyName) { - if (rule.Condition != null) - { - var stack = new RuleStack(); - rule.Condition.Evaluate(ruleContext, stack); - if (ruleContext.IsAborted) + var provider = FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider; + if (string.IsNullOrEmpty(HttpContext.Current.Request.UserAgent)) + { + return false; + } + + var device = provider.Match(HttpContext.Current.Request.UserAgent); + + try { - continue; + return MainUtil.GetBool(device.Results[propertyName].First(), false); } - if ((stack.Count != 0) && ((bool)stack.Pop())) + catch (Exception ex) { - return device; + return false; } - } + } - } - return null; - } + public static string GetStringProperty(string propertyName) + { + var provider = WebProvider.ActiveProvider; + if (string.IsNullOrEmpty(HttpContext.Current.Request.UserAgent)) + { + return string.Empty; + } - public static bool GetBoolProperty(string propertyName) - { - var provider = Factory.ActiveProvider; - if (string.IsNullOrEmpty(HttpContext.Current.Request.UserAgent)) - { - return false; - } - - var device = provider.GetDeviceInfo(HttpContext.Current.Request.UserAgent); - return MainUtil.GetBool(device.GetFirstPropertyValue(propertyName), false); - } + var match = provider.Match(HttpContext.Current.Request.UserAgent); - public static string GetStringProperty(string propertyName) - { - var provider = Factory.ActiveProvider; - if (string.IsNullOrEmpty(HttpContext.Current.Request.UserAgent)) - { - return string.Empty; - } - - var device = provider.GetDeviceInfo(HttpContext.Current.Request.UserAgent); - return device.GetFirstPropertyValue(propertyName); + try + { + return match.Results[propertyName].First(); + } + catch (Exception ex) + { + return string.Empty; + } + + } } - } } \ No newline at end of file diff --git a/MobileDeviceDetector/Mobile/Default.aspx b/MobileDeviceDetector/Mobile/Default.aspx new file mode 100644 index 0000000..4a69eac --- /dev/null +++ b/MobileDeviceDetector/Mobile/Default.aspx @@ -0,0 +1,101 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="FiftyOne_Mobile_Default" %> + + + + + + Welcome to the Mobile Home Page + + +
+
+

Welcome to the Mobile Home Page

+ <% + try + { + var version = System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion(); + if (version.StartsWith("v2")) + { %> +

+ IMPORTANT: The NuGet version of 51Degrees.mobi requires .NET v4 or greater to run automatically. + Please change your project to run under .NET v4 then uninstall and reinstall the 51Degrees.mobi NuGet package. + See the User Guide for more information. +

+ <% } } + catch { } + %> +
+ <% if (Request.Browser.IsMobileDevice == false) { %> +

The requesting device isn't a mobile. The page must have been requested directly.

+

Try accessing the web site from a mobile device, or a mobile device emulator. A list of popular mobile emulators can be found here.

+ <% } %> +
+

Here's some information about the requesting device:

+
    +
  • Popular Properties

  • +
  • <% =GetPropertyLinkHTML("IsMobile")%>: <% =Request.Browser.IsMobileDevice %>
  • +
  • <% =GetPropertyLinkHTML("ScreenPixelsWidth")%>: <% =Request.Browser.ScreenPixelsWidth %>
  • +
  • <% =GetPropertyLinkHTML("ScreenPixelsHeight")%>: <% =Request.Browser.ScreenPixelsHeight %>
  • +
  • <% =GetPropertyLinkHTML("ScreenMMWidth")%>: <% =GetPropertyHTML("ScreenMMWidth") %>
  • +
  • <% =GetPropertyLinkHTML("ScreenMMHeight")%>: <% =GetPropertyHTML("ScreenMMHeight") %>
  • +
  • <% =GetPropertyLinkHTML("ScreenInchesSquare")%>: <% =GetPropertyHTML("ScreenInchesSquare") %>
  • +
  • <% =GetPropertyLinkHTML("IsTablet")%>: <% =GetPropertyHTML("IsTablet") %>
  • +
  • <% =GetPropertyLinkHTML("IsSmartPhone")%>: <% =GetPropertyHTML("IsSmartPhone") %>
  • +
  • Browser Properties

  • +
  • <% =GetPropertyLinkHTML("LayoutEngine")%>: <% =GetPropertyHTML("LayoutEngine") %>
  • +
  • <% =GetPropertyLinkHTML("AnimationTiming")%>: <% =GetPropertyHTML("AnimationTiming") %>
  • +
  • <% =GetPropertyLinkHTML("BlobBuilder")%>: <% =GetPropertyHTML("BlobBuilder") %>
  • +
  • <% =GetPropertyLinkHTML("CssBackground")%>: <% =GetPropertyHTML("CssBackground") %>
  • +
  • <% =GetPropertyLinkHTML("CssBorderImage")%>: <% =GetPropertyHTML("CssBorderImage") %>
  • +
  • <% =GetPropertyLinkHTML("CssCanvas")%>: <% =GetPropertyHTML("CssCanvas") %>
  • +
  • <% =GetPropertyLinkHTML("CssColor")%>: <% =GetPropertyHTML("CssColor") %>
  • +
  • <% =GetPropertyLinkHTML("CssColumn")%>: <% =GetPropertyHTML("CssColumn") %>
  • +
  • <% =GetPropertyLinkHTML("CssFlexbox")%>: <% =GetPropertyHTML("CssFlexbox") %>
  • +
  • <% =GetPropertyLinkHTML("CssFont")%>: <% =GetPropertyHTML("CssFont") %>
  • +
  • <% =GetPropertyLinkHTML("CssMediaQueries")%>: <% =GetPropertyHTML("CssMediaQueries") %>
  • +
  • <% =GetPropertyLinkHTML("CssMinMax")%>: <% =GetPropertyHTML("CssMinMax") %>
  • +
  • <% =GetPropertyLinkHTML("CssOverflow")%>: <% =GetPropertyHTML("CssOverflow") %>
  • +
  • <% =GetPropertyLinkHTML("CssPosition")%>: <% =GetPropertyHTML("CssPosition") %>
  • +
  • <% =GetPropertyLinkHTML("CssText")%>: <% =GetPropertyHTML("CssText") %>
  • +
  • <% =GetPropertyLinkHTML("CssTransforms")%>: <% =GetPropertyHTML("CssTransforms") %>
  • +
  • <% =GetPropertyLinkHTML("CssTransitions")%>: <% =GetPropertyHTML("CssTransitions") %>
  • +
  • <% =GetPropertyLinkHTML("CssUI")%>: <% =GetPropertyHTML("CssUI") %>
  • +
  • <% =GetPropertyLinkHTML("DataSet")%>: <% =GetPropertyHTML("DataSet") %>
  • +
  • <% =GetPropertyLinkHTML("DataUrl")%>: <% =GetPropertyHTML("DataUrl") %>
  • +
  • <% =GetPropertyLinkHTML("DeviceOrientation")%>: <% =GetPropertyHTML("DeviceOrientation") %>
  • +
  • <% =GetPropertyLinkHTML("FileReader")%>: <% =GetPropertyHTML("FileReader") %>
  • +
  • <% =GetPropertyLinkHTML("FileSaver")%>: <% =GetPropertyHTML("FileSaver") %>
  • +
  • <% =GetPropertyLinkHTML("FileWriter")%>: <% =GetPropertyHTML("FileWriter") %>
  • +
  • <% =GetPropertyLinkHTML("FormData")%>: <% =GetPropertyHTML("FormData") %>
  • +
  • <% =GetPropertyLinkHTML("Fullscreen")%>: <% =GetPropertyHTML("Fullscreen") %>
  • +
  • <% =GetPropertyLinkHTML("GeoLocation")%>: <% =GetPropertyHTML("GeoLocation") %>
  • +
  • <% =GetPropertyLinkHTML("History")%>: <% =GetPropertyHTML("History") %>
  • +
  • <% =GetPropertyLinkHTML("Html-Media-Capture")%>: <% =GetPropertyHTML("Html-Media-Capture") %>
  • +
  • <% =GetPropertyLinkHTML("Iframe")%>: <% =GetPropertyHTML("Iframe") %>
  • +
  • <% =GetPropertyLinkHTML("IndexedDB")%>: <% =GetPropertyHTML("IndexedDB") %>
  • +
  • <% =GetPropertyLinkHTML("Json")%>: <% =GetPropertyHTML("Json") %>
  • +
  • <% =GetPropertyLinkHTML("Masking")%>: <% =GetPropertyHTML("Masking") %>
  • +
  • <% =GetPropertyLinkHTML("PostMessage")%>: <% =GetPropertyHTML("PostMessage") %>
  • +
  • <% =GetPropertyLinkHTML("Progress")%>: <% =GetPropertyHTML("Progress") %>
  • +
  • <% =GetPropertyLinkHTML("Prompts")%>: <% =GetPropertyHTML("Prompts") %>
  • +
  • <% =GetPropertyLinkHTML("Selector")%>: <% =GetPropertyHTML("Selector") %>
  • +
  • <% =GetPropertyLinkHTML("Svg")%>: <% =GetPropertyHTML("Svg") %>
  • +
  • <% =GetPropertyLinkHTML("TouchEvents")%>: <% =GetPropertyHTML("TouchEvents") %>
  • +
  • <% =GetPropertyLinkHTML("Track")%>: <% =GetPropertyHTML("Track") %>
  • +
  • <% =GetPropertyLinkHTML("Video")%>: <% =GetPropertyHTML("Video") %>
  • +
  • <% =GetPropertyLinkHTML("Viewport")%>: <% =GetPropertyHTML("Viewport") %>
  • +
+
+

Device Data Information

+

Data Published: <% =FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider.DataSet.Published %>

+

Version Name: <% =FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider.DataSet.Name %>

+

Version Format: <% =FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider.DataSet.Format %>

+
+

See MSDN for details of Request.Browser properties.

+

See 51Degrees for user guide.

+

See 51Degrees Device Data Updates for ways to automatically update device data and extend properties.

+

See 51Degrees Device Properties for a full list of properties.

+
+
+ + \ No newline at end of file diff --git a/MobileDeviceDetector/Mobile/Default.aspx.cs b/MobileDeviceDetector/Mobile/Default.aspx.cs new file mode 100644 index 0000000..f9b0e73 --- /dev/null +++ b/MobileDeviceDetector/Mobile/Default.aspx.cs @@ -0,0 +1,40 @@ +/* ********************************************************************* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. + * + * If a copy of the MPL was not distributed with this file, You can obtain + * one at http://mozilla.org/MPL/2.0/. + * + * This Source Code Form is “Incompatible With Secondary Licenses”, as + * defined by the Mozilla Public License, v. 2.0. + * ********************************************************************* */ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +public partial class FiftyOne_Mobile_Default : System.Web.UI.Page +{ + protected string GetPropertyLinkHTML(string propertyName) + { + return String.Format( + @"{0}", + propertyName); + } + + protected string GetPropertyHTML(string propertyName) + { + var value = Request.Browser[propertyName]; + if (String.IsNullOrEmpty(value)) + value = @"Upgrade"; + return value; + } + + protected void Page_Load(object sender, EventArgs e) + { + + } +} \ No newline at end of file diff --git a/MobileDeviceDetector/Sitecore.SharedSource.MobileDeviceDetector.csproj b/MobileDeviceDetector/Sitecore.SharedSource.MobileDeviceDetector.csproj index b98ca76..4d01270 100644 --- a/MobileDeviceDetector/Sitecore.SharedSource.MobileDeviceDetector.csproj +++ b/MobileDeviceDetector/Sitecore.SharedSource.MobileDeviceDetector.csproj @@ -13,6 +13,8 @@ v4.5 512 + ..\ + true true @@ -35,7 +37,7 @@ - ..\packages\51Degrees.mobi.2.1.12.2\lib\NET40\FiftyOne.Foundation.dll + ..\packages\51Degrees.mobi.3.1.4.5\lib\NET40\FiftyOne.Foundation.dll True @@ -72,6 +74,10 @@ + + Default.aspx + ASPXCodeBehind + @@ -94,9 +100,7 @@ - - Designer - + @@ -105,8 +109,16 @@ ASPXCodeBehind + + + + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + + \ No newline at end of file diff --git a/Output/App_Data/51Degrees.mobi.config b/Output/App_Data/51Degrees.mobi.config new file mode 100644 index 0000000..1922a5c --- /dev/null +++ b/Output/App_Data/51Degrees.mobi.config @@ -0,0 +1,147 @@ + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Output/Data/packages/Mobile Device Detector-3.1.zip b/Output/Data/packages/Mobile Device Detector-3.1.zip new file mode 100644 index 0000000..fab4b19 Binary files /dev/null and b/Output/Data/packages/Mobile Device Detector-3.1.zip differ diff --git a/Output/Data/packages/Mobile Device Detector-3.2.zip b/Output/Data/packages/Mobile Device Detector-3.2.zip new file mode 100644 index 0000000..6728b45 Binary files /dev/null and b/Output/Data/packages/Mobile Device Detector-3.2.zip differ diff --git a/Output/Data/packages/Mobile Device Detector.xml b/Output/Data/packages/Mobile Device Detector.xml new file mode 100644 index 0000000..7a95f65 --- /dev/null +++ b/Output/Data/packages/Mobile Device Detector.xml @@ -0,0 +1,286 @@ + + + + Mobile Device Detector + Alexander Doroshenko + 3.2 + + + This module uses DLL's and data files from http://51degrees.codeplex.com + + + + + Alexander Doroshenko http://sitecoresnippets.blogspot.com + + + + + True + + + + /App_Config/Include/Sitecore.SharedSource.MobileDeviceDetector.config + /bin/Sitecore.SharedSource.MobileDeviceDetector.dll + /bin/Sitecore.SharedSource.MobileDeviceDetector.pdb + /App_Data/51Degrees.mobi-Lite.dat + /bin/FiftyOne.Foundation.dll + /App_Data/51Degrees.mobi.config + + + + / + + + + + Undefined + Undefined + + + + + + + + + Files + + + master + {56E48DB2-4C03-4C3F-BE9A-3C29A17FD7FE} + False + + + + + + + Undefined + Undefined + + + + + + + + + + Simple + + + CreatedFilter + + + + + + ModifiedFilter + + + + + + + True + + + + + + Created + + + + Modified + + + + + + + + Conditions Field + + + master + {F6BE982D-3F26-4964-B2EF-9491C127BC20} + False + + + + + + + Undefined + Undefined + + + + + + + + + + Simple + + + CreatedFilter + + + + + + ModifiedFilter + + + + + + + True + + + + + + Created + + + + Modified + + + + + + + + Rules + + + master + {9B2305B9-9140-4FC5-ACA1-43C150080258} + False + + + + + + + Undefined + Undefined + + + + + + + + + + Simple + + + CreatedFilter + + + + + + ModifiedFilter + + + + + + + True + + + + + + Created + + + + Modified + + + + + + + + Elements + + + master + {7B571419-0447-46C3-8EDC-8766F7F04471} + False + + + + + + + Undefined + Undefined + + + + + + + + + + Simple + + + CreatedFilter + + + + + + ModifiedFilter + + + + + + + True + + + + + + Created + + + + Modified + + + + + + + + Tags + + + + + + + + + + + diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Conditional Renderings/Tags/Default.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Conditional Renderings/Tags/Default.item new file mode 100644 index 0000000..2130a86 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Conditional Renderings/Tags/Default.item @@ -0,0 +1,227 @@ +----item---- +version: 1 +id: {B60C6A64-B367-48F0-86D9-7FA1C3D3B603} +database: master +path: /sitecore/system/Settings/Rules/Conditional Renderings/Tags/Default +parent: {6F9A8F6E-5317-47E3-AECA-D7CBEF06EC9A} +name: Default +master: {00000000-0000-0000-0000-000000000000} +template: {854BA861-63EA-4A0C-8C7B-541E9A7EC4C1} +templatekey: Tags Definition + +----field---- +field: {42F77151-098F-496A-94CF-590B7EDEEABE} +name: Tags +key: tags +content-length: 506 + +{09340671-13CF-4181-A706-BE150B00D735}|{D8933FCB-48F3-468E-8FB6-8F2B5CFAF404}|{CCDEDBA3-3677-433E-BA09-64A3094808C9}|{ADA1A7B1-F84D-419F-96E2-77F95006DC37}|{95611296-3E75-45C0-B7A4-69E69C8499AB}|{5A355A23-0148-48CB-9017-90A696EAF155}|{B5BAE47B-7C89-46AE-A367-B3F5027E8D18}|{18C2D156-9B7B-494F-ADB2-2D0D9113000E}|{75A9275C-7975-4677-B197-14617DF58635}|{F1933AAE-5AC3-4F86-BFEB-3F0C49E39749}|{83E58187-D1E5-4FB8-953E-EE89816EC0B5}|{67D3BB0D-8883-474A-B6D4-D7CB20B0D1AC}|{7B571419-0447-46C3-8EDC-8766F7F04471} +----version---- +language: da +version: 1 +revision: 4c098305-d9d8-42e4-a9ec-5901c5a1f91c + +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +Standard +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20140526T180200:635367241203703640 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +4c098305-d9d8-42e4-a9ec-5901c5a1f91c +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140526T180200:635367241203703640 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: de-DE +version: 1 +revision: 634fb2a4-a60e-40be-a3fd-b43aee39eb0d + +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 7 + +Default +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20140526T181340:635367248209428985 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +634fb2a4-a60e-40be-a3fd-b43aee39eb0d +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140526T181340:635367248209428985 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 79ab18d9-8a38-4ddd-8af4-6f84f4d4f8ac + +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20120807T142600 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +79ab18d9-8a38-4ddd-8af4-6f84f4d4f8ac +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140805T073517:635428209173925833 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 833a28c0-7819-46cf-85a3-151a7e3f22ae + +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +デフォルト +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20140526T182446:635367254862195059 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +833a28c0-7819-46cf-85a3-151a7e3f22ae +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140526T182446:635367254862195059 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection.item new file mode 100644 index 0000000..d20d592 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {9B2305B9-9140-4FC5-ACA1-43C150080258} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection +parent: {E7CBEFE8-9112-4B95-A978-4E470D94C54A} +name: Device Detection +master: {9A72C539-DBF8-4DAD-96D3-A298FC04ADD6} +template: {54DAE7CD-BFD8-4E69-9679-75F2AE9F9034} +templatekey: Element Folder + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: 5f34f1f6-5008-46e7-9468-a488f3a8aad1 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154120 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +5f34f1f6-5008-46e7-9468-a488f3a8aad1 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154120:635273844809315692 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Boolean Property.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Boolean Property.item new file mode 100644 index 0000000..dab9238 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Boolean Property.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {13CD8EE5-E046-40E3-A5EA-2F5552137805} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Boolean Property +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Boolean Property +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 128 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.BooleanPropertyCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 0b5939e8-fe02-4990-ba87-321b9236e2b3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 28 + +når elementet kan udgives nu +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 11 + +Kan udgives +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201530:634262265300328070 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0b5939e8-fe02-4990-ba87-321b9236e2b3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249084142 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 620fd951-d9a1-4acc-a071-8ac15cd44b4a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 39 + +when the device [value,,,bool property] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083800 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +620fd951-d9a1-4acc-a071-8ac15cd44b4a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154704:635273848243468296 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: b5c7101e-b99d-4830-afa8-c8bb80277c0a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 32 + +条件: (パブリッシュ) アイテムが今すぐパブリッシュ可能な場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +パブリッシュ可能 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202222:634262269427229482 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b5c7101e-b99d-4830-afa8-c8bb80277c0a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270490048784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Browser Name.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Browser Name.item new file mode 100644 index 0000000..061e13f --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Browser Name.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {38B6371E-736D-445B-BAAF-6F725B008620} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Browser Name +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Browser Name +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 124 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.BrowserNameCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: af06dd74-88b0-44cf-9725-6de7fa3f33fe + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 75 + +når element navnet [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 12 + +Element navn +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201447:634262264873450338 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +af06dd74-88b0-44cf-9725-6de7fa3f33fe +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249552895 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 188d0df4-5d97-4c10-b162-46cbcfdb670f + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 86 + +where the device browser name [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083855 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +188d0df4-5d97-4c10-b162-46cbcfdb670f +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154708:635273848282342183 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 67d643b3-5ac7-4336-b149-c9430173a5d3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 64 + +条件: (アイテム名) [value,,,特定の名前] [operatorid,StringOperator,,と比較する]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +アイテム名 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202135:634262268957695227 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +67d643b3-5ac7-4336-b149-c9430173a5d3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270491923796 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Model.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Model.item new file mode 100644 index 0000000..d897d0b --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Model.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {F12E6667-F3E4-4D81-BC00-D4FC846757F9} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Model +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Hardware Model +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 126 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.HardwareModelCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: af06dd74-88b0-44cf-9725-6de7fa3f33fe + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 75 + +når element navnet [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 12 + +Element navn +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201447:634262264873450338 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +af06dd74-88b0-44cf-9725-6de7fa3f33fe +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249552895 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: eb751419-e8d3-4013-b328-3eca11782ef5 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 88 + +where the device hardware model [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083855 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +eb751419-e8d3-4013-b328-3eca11782ef5 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154708:635273848281442093 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 67d643b3-5ac7-4336-b149-c9430173a5d3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 64 + +条件: (アイテム名) [value,,,特定の名前] [operatorid,StringOperator,,と比較する]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +アイテム名 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202135:634262268957695227 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +67d643b3-5ac7-4336-b149-c9430173a5d3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270491923796 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Vendor.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Vendor.item new file mode 100644 index 0000000..8369932 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Vendor.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {8A740030-0E49-4A24-BACD-B1AA9BC13340} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Hardware Vendor +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Hardware Vendor +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 127 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.HardwareVendorCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: af06dd74-88b0-44cf-9725-6de7fa3f33fe + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 75 + +når element navnet [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 12 + +Element navn +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201447:634262264873450338 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +af06dd74-88b0-44cf-9725-6de7fa3f33fe +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249552895 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 0ded98af-fe3d-4fcf-a746-48f576b7d315 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 89 + +where the device hardware vendor [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083855 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0ded98af-fe3d-4fcf-a746-48f576b7d315 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154706:635273848269430892 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 67d643b3-5ac7-4336-b149-c9430173a5d3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 64 + +条件: (アイテム名) [value,,,特定の名前] [operatorid,StringOperator,,と比較する]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +アイテム名 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202135:634262268957695227 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +67d643b3-5ac7-4336-b149-c9430173a5d3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270491923796 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Console.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Console.item new file mode 100644 index 0000000..f6ab5bc --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Console.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {3D2BD1F2-7A70-4426-A0C6-D00E17126978} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Console +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Is Console +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 122 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.IsConsoleCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 0b5939e8-fe02-4990-ba87-321b9236e2b3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 28 + +når elementet kan udgives nu +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 11 + +Kan udgives +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201530:634262265300328070 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0b5939e8-fe02-4990-ba87-321b9236e2b3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249084142 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: f1eb46bc-a237-4d90-9d95-5348b597ae66 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 49 + +where the device is a games console or television +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083800 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +f1eb46bc-a237-4d90-9d95-5348b597ae66 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154714:635273848347948743 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: b5c7101e-b99d-4830-afa8-c8bb80277c0a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 32 + +条件: (パブリッシュ) アイテムが今すぐパブリッシュ可能な場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +パブリッシュ可能 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202222:634262269427229482 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b5c7101e-b99d-4830-afa8-c8bb80277c0a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270490048784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is EReader.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is EReader.item new file mode 100644 index 0000000..1eb7e9b --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is EReader.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {8FCC0B0F-AA52-4106-A48E-6861E30884C3} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is EReader +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Is EReader +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 122 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.IsEReaderCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 0b5939e8-fe02-4990-ba87-321b9236e2b3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 28 + +når elementet kan udgives nu +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 11 + +Kan udgives +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201530:634262265300328070 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0b5939e8-fe02-4990-ba87-321b9236e2b3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249084142 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 02faed18-e4ef-4fa9-a815-5d369f754de7 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 31 + +where the device is an e-reader +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083800 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +02faed18-e4ef-4fa9-a815-5d369f754de7 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154713:635273848334017350 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: b5c7101e-b99d-4830-afa8-c8bb80277c0a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 32 + +条件: (パブリッシュ) アイテムが今すぐパブリッシュ可能な場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +パブリッシュ可能 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202222:634262269427229482 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b5c7101e-b99d-4830-afa8-c8bb80277c0a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270490048784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Mobile.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Mobile.item new file mode 100644 index 0000000..ab6c7bc --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Mobile.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {CD31BEEA-A85E-4DEB-941F-589B93EAE34B} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Mobile +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Is Mobile +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 121 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.IsMobileCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 0b5939e8-fe02-4990-ba87-321b9236e2b3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 28 + +når elementet kan udgives nu +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 11 + +Kan udgives +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201530:634262265300328070 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0b5939e8-fe02-4990-ba87-321b9236e2b3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249084142 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 7b1975fd-8453-44c4-a3fe-8503cfb3e179 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 26 + +where the device is mobile +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083800 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +7b1975fd-8453-44c4-a3fe-8503cfb3e179 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154710:635273848308354784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: b5c7101e-b99d-4830-afa8-c8bb80277c0a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 32 + +条件: (パブリッシュ) アイテムが今すぐパブリッシュ可能な場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +パブリッシュ可能 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202222:634262269427229482 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b5c7101e-b99d-4830-afa8-c8bb80277c0a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270490048784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Tablet.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Tablet.item new file mode 100644 index 0000000..e63251d --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Tablet.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {37147FE8-D4A2-4BC0-AEA3-8139C6FF459A} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Is Tablet +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Is Tablet +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 121 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.IsTabletCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 0b5939e8-fe02-4990-ba87-321b9236e2b3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 28 + +når elementet kan udgives nu +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 11 + +Kan udgives +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201530:634262265300328070 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0b5939e8-fe02-4990-ba87-321b9236e2b3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249084142 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: db670f66-733c-409e-ab93-1ad93a5c573f + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 27 + +where the device is tablet +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083800 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +db670f66-733c-409e-ab93-1ad93a5c573f +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154712:635273848322546203 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: b5c7101e-b99d-4830-afa8-c8bb80277c0a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 32 + +条件: (パブリッシュ) アイテムが今すぐパブリッシュ可能な場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +パブリッシュ可能 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202222:634262269427229482 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b5c7101e-b99d-4830-afa8-c8bb80277c0a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270490048784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Name.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Name.item new file mode 100644 index 0000000..08de51c --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Name.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {47280F7C-645D-4909-A623-ADCEC6B6E71B} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Name +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Platform Name +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 125 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.PlatformNameCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: af06dd74-88b0-44cf-9725-6de7fa3f33fe + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 75 + +når element navnet [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 12 + +Element navn +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201447:634262264873450338 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +af06dd74-88b0-44cf-9725-6de7fa3f33fe +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249552895 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 0bd00bf6-6cab-45c9-8de5-207e72ec123c + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 87 + +where the device platform name [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083855 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0bd00bf6-6cab-45c9-8de5-207e72ec123c +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154709:635273848296903639 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 67d643b3-5ac7-4336-b149-c9430173a5d3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 64 + +条件: (アイテム名) [value,,,特定の名前] [operatorid,StringOperator,,と比較する]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +アイテム名 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202135:634262268957695227 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +67d643b3-5ac7-4336-b149-c9430173a5d3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270491923796 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Vendor.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Vendor.item new file mode 100644 index 0000000..61aeb0d --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Vendor.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {C533C68B-5A5D-47DE-BEA7-CD8E44759403} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Platform Vendor +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Platform Vendor +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 127 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.PlatformVendorCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: af06dd74-88b0-44cf-9725-6de7fa3f33fe + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 75 + +når element navnet [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 12 + +Element navn +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201447:634262264873450338 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +af06dd74-88b0-44cf-9725-6de7fa3f33fe +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249552895 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 92648499-dd2d-456b-8922-be12a3c6c281 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 89 + +where the device platform vendor [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083855 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +92648499-dd2d-456b-8922-be12a3c6c281 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154705:635273848255549504 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 67d643b3-5ac7-4336-b149-c9430173a5d3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 64 + +条件: (アイテム名) [value,,,特定の名前] [operatorid,StringOperator,,と比較する]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +アイテム名 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202135:634262268957695227 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +67d643b3-5ac7-4336-b149-c9430173a5d3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270491923796 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Height.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Height.item new file mode 100644 index 0000000..bc3901c --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Height.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {7AF4BA7F-31AC-4110-88E1-DA2518E86091} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Height +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Screen Height +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 125 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.ScreenHeightCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 68c2a5d2-0c37-466e-9266-a2357a0b87de + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 77 + +når antallet af versioner [operatorid,Operator,,compares to] [value,,,number] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 15 + +Versions tæller +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201658:634262266180177451 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +68c2a5d2-0c37-466e-9266-a2357a0b87de +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201705:634262266252521664 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: fd88ef5c-a6db-4f9d-bb98-01698486a162 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 99 + +where the device screen height [operatorid,Operator,,compares to] [value,,defaultValue=1024,number] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20090202T194128 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 16 + +sitecore\adminjc +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +fd88ef5c-a6db-4f9d-bb98-01698486a162 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154704:635273848247188668 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 1cd9f132-4f31-4f9f-a32e-017f2e243800 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 58 + +条件: (バージョン数) [value,,,特定の値] [operatorid,Operator,,と比較した]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 6 + +バージョン数 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202400:634262270403954483 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +1cd9f132-4f31-4f9f-a32e-017f2e243800 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270493330055 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Width.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Width.item new file mode 100644 index 0000000..6a6a8ea --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Width.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {9371A63F-F236-4BEB-8E1F-2697C8903122} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Screen Width +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Screen Width +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 124 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.ScreenWidthCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 68c2a5d2-0c37-466e-9266-a2357a0b87de + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 77 + +når antallet af versioner [operatorid,Operator,,compares to] [value,,,number] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 15 + +Versions tæller +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201658:634262266180177451 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +68c2a5d2-0c37-466e-9266-a2357a0b87de +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201705:634262266252521664 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: b622bf3f-2cc9-4054-8ee6-657a19b08b39 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 81 + +where the device screen width [operatorid,Operator,,compares to] [value,,,number] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20090202T194128 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 16 + +sitecore\adminjc +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b622bf3f-2cc9-4054-8ee6-657a19b08b39 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154708:635273848283122261 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 1cd9f132-4f31-4f9f-a32e-017f2e243800 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 58 + +条件: (バージョン数) [value,,,特定の値] [operatorid,Operator,,と比較した]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 6 + +バージョン数 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202400:634262270403954483 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +1cd9f132-4f31-4f9f-a32e-017f2e243800 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270493330055 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/String Property.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/String Property.item new file mode 100644 index 0000000..b93b2ad --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/String Property.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {F1729324-2FDD-405B-B134-15A7AF3AFFA7} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/String Property +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: String Property +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 127 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.StringPropertyCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: 0b5939e8-fe02-4990-ba87-321b9236e2b3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 28 + +når elementet kan udgives nu +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 11 + +Kan udgives +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201530:634262265300328070 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +0b5939e8-fe02-4990-ba87-321b9236e2b3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249084142 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 828c4c23-91be-4a39-94ca-5ca51b56152f + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 104 + +where the device [property,,,property] [operatorid,StringOperator,,compares to] [value,,,specific value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083800 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +828c4c23-91be-4a39-94ca-5ca51b56152f +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154705:635273848255799529 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: b5c7101e-b99d-4830-afa8-c8bb80277c0a + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 32 + +条件: (パブリッシュ) アイテムが今すぐパブリッシュ可能な場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 8 + +パブリッシュ可能 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202222:634262269427229482 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b5c7101e-b99d-4830-afa8-c8bb80277c0a +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270490048784 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags.item new file mode 100644 index 0000000..c846728 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {A69D0E7A-6AA6-485B-8B0A-A7F6E4466C9A} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Tags +master: {9A72C539-DBF8-4DAD-96D3-A298FC04ADD6} +template: {96C8E5DD-63C3-496B-A97C-A3E37E1DACBA} +templatekey: Tags Definitions Folder + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: a2fe4f48-fb30-48d0-b216-70749c8f6376 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154120 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +a2fe4f48-fb30-48d0-b216-70749c8f6376 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154120:635273844809795692 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags/Default.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags/Default.item new file mode 100644 index 0000000..8e56af5 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags/Default.item @@ -0,0 +1,58 @@ +----item---- +version: 1 +id: {95B94921-2AC7-417E-A1A3-7B02148E62EF} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Tags/Default +parent: {A69D0E7A-6AA6-485B-8B0A-A7F6E4466C9A} +name: Default +master: {9A72C539-DBF8-4DAD-96D3-A298FC04ADD6} +template: {854BA861-63EA-4A0C-8C7B-541E9A7EC4C1} +templatekey: Tags Definition + +----field---- +field: {42F77151-098F-496A-94CF-590B7EDEEABE} +name: Tags +key: tags +content-length: 38 + +{7B571419-0447-46C3-8EDC-8766F7F04471} +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: 39710ba1-9e10-4792-8232-97cf8e60e624 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154121 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +39710ba1-9e10-4792-8232-97cf8e60e624 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154826:635273849062610202 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/UserAgent.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/UserAgent.item new file mode 100644 index 0000000..0a615b3 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/UserAgent.item @@ -0,0 +1,194 @@ +----item---- +version: 1 +id: {73D6FAA7-BE26-4003-A156-29D03224DAC6} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/UserAgent +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: UserAgent +master: {00000000-0000-0000-0000-000000000000} +template: {F0D16EEE-3A05-4E43-A082-795A32B873C0} +templatekey: Condition + +----field---- +field: {AB51C8B2-F0E1-4471-9AAE-CC080D774923} +name: Type +key: type +content-length: 122 + +Sitecore.SharedSource.MobileDeviceDetector.Rules.Conditions.UserAgentCondition, Sitecore.SharedSource.MobileDeviceDetector +----version---- +language: da +version: 1 +revision: af06dd74-88b0-44cf-9725-6de7fa3f33fe + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 75 + +når element navnet [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 12 + +Element navn +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T201447:634262264873450338 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +af06dd74-88b0-44cf-9725-6de7fa3f33fe +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T201704:634262266249552895 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: en +version: 1 +revision: 48304fb7-c256-4b2b-b617-7c315fd4b61b + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 83 + +where the device UserAgent [operatorid,StringOperator,,compares to] [value,,,value] +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20080923T083855 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +48304fb7-c256-4b2b-b617-7c315fd4b61b +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154705:635273848256049554 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin +----version---- +language: ja-JP +version: 1 +revision: 67d643b3-5ac7-4336-b149-c9430173a5d3 + +----field---- +field: {AF321234-4EB9-4EF5-9197-65903351939C} +name: Text +key: text +content-length: 64 + +条件: (アイテム名) [value,,,特定の名前] [operatorid,StringOperator,,と比較する]場合 +----field---- +field: {B5E02AD9-D56F-4C41-A065-A133DB87BDEB} +name: __Display name +key: __display name +content-length: 5 + +アイテム名 +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 34 + +20101124T202135:634262268957695227 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +67d643b3-5ac7-4336-b149-c9430173a5d3 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20101124T202409:634262270491923796 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Visibility.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Visibility.item new file mode 100644 index 0000000..aebc8ac --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Visibility.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {4A23C161-C848-4CC6-8CB8-81C3CAA64DB0} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Elements/Device Detection/Visibility +parent: {9B2305B9-9140-4FC5-ACA1-43C150080258} +name: Visibility +master: {9A72C539-DBF8-4DAD-96D3-A298FC04ADD6} +template: {AA91A868-02F2-41D3-8B78-1CAD91B4DCAE} +templatekey: Visibility + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: 2fe384d0-8f93-4484-8185-0ccc1595e0dc + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154121 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +2fe384d0-8f93-4484-8185-0ccc1595e0dc +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154121:635273844810385692 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Tags/Device Detection.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Tags/Device Detection.item new file mode 100644 index 0000000..e11ce1e --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Tags/Device Detection.item @@ -0,0 +1,65 @@ +----item---- +version: 1 +id: {7B571419-0447-46C3-8EDC-8766F7F04471} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Tags/Device Detection +parent: {DADB4F93-477F-491F-A905-C4005C452E67} +name: Device Detection +master: {60E3E35B-CEF9-4AFA-9F89-204ED015CCB9} +template: {1A9B6300-4652-477C-A4B5-B2A64E86B29F} +templatekey: Tag + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: be45104d-9900-4c92-a56b-5ac0bd73dfdc + +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154816 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +be45104d-9900-4c92-a56b-5ac0bd73dfdc +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154816:635273848969720914 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Tags/Device Detection/Visibility.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Tags/Device Detection/Visibility.item new file mode 100644 index 0000000..99b4933 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Definitions/Tags/Device Detection/Visibility.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {9E0FAA41-5A9D-4A20-BEEE-F079E7876B2C} +database: master +path: /sitecore/system/Settings/Rules/Definitions/Tags/Device Detection/Visibility +parent: {7B571419-0447-46C3-8EDC-8766F7F04471} +name: Visibility +master: {60E3E35B-CEF9-4AFA-9F89-204ED015CCB9} +template: {AA91A868-02F2-41D3-8B78-1CAD91B4DCAE} +templatekey: Visibility + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: f41bcd16-4673-45dc-ac7b-e33e794ed141 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154817 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +f41bcd16-4673-45dc-ac7b-e33e794ed141 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154817:635273848970380980 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection.item new file mode 100644 index 0000000..1196376 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {F6BE982D-3F26-4964-B2EF-9491C127BC20} +database: master +path: /sitecore/system/Settings/Rules/Device Detection +parent: {1057C235-C5C0-4EB7-8F77-EA51EB9E20EE} +name: Device Detection +master: {BDC41FDD-A3AC-4B69-A0BA-471C425CB083} +template: {DDA66314-03F3-4C89-84A9-39DFFB235B06} +templatekey: Rules Context Folder + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: ef9e6695-c588-4968-bb24-f76bbc691040 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154848 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +ef9e6695-c588-4968-bb24-f76bbc691040 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154848:635273849285652504 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Rules.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Rules.item new file mode 100644 index 0000000..9a27fa6 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Rules.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {698EDA2E-20E3-41C8-893C-A9BC59A853BC} +database: master +path: /sitecore/system/Settings/Rules/Device Detection/Rules +parent: {F6BE982D-3F26-4964-B2EF-9491C127BC20} +name: Rules +master: {BDC41FDD-A3AC-4B69-A0BA-471C425CB083} +template: {8EA2CF67-4250-47A2-AECA-4F70FD200DC7} +templatekey: Rules Folder + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: 8f85b36b-c9a1-4416-9bfe-bf6f740a03ec + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154848 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +8f85b36b-c9a1-4416-9bfe-bf6f740a03ec +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154848:635273849286392578 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Tags.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Tags.item new file mode 100644 index 0000000..3bee9a6 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Tags.item @@ -0,0 +1,51 @@ +----item---- +version: 1 +id: {AE9F8F60-C516-4B4D-AA76-929008D72818} +database: master +path: /sitecore/system/Settings/Rules/Device Detection/Tags +parent: {F6BE982D-3F26-4964-B2EF-9491C127BC20} +name: Tags +master: {BDC41FDD-A3AC-4B69-A0BA-471C425CB083} +template: {96C8E5DD-63C3-496B-A97C-A3E37E1DACBA} +templatekey: Tags Definitions Folder + +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: 921665cc-1fc8-4d9a-a3c5-1474ed23a282 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154848 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +921665cc-1fc8-4d9a-a3c5-1474ed23a282 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154848:635273849286702609 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Tags/Default.item b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Tags/Default.item new file mode 100644 index 0000000..c888443 --- /dev/null +++ b/Output/Data/serialization/master/sitecore/system/Settings/Rules/Device Detection/Tags/Default.item @@ -0,0 +1,58 @@ +----item---- +version: 1 +id: {B118470F-126A-4D54-A714-161A2E419AC3} +database: master +path: /sitecore/system/Settings/Rules/Device Detection/Tags/Default +parent: {AE9F8F60-C516-4B4D-AA76-929008D72818} +name: Default +master: {BDC41FDD-A3AC-4B69-A0BA-471C425CB083} +template: {854BA861-63EA-4A0C-8C7B-541E9A7EC4C1} +templatekey: Tags Definition + +----field---- +field: {42F77151-098F-496A-94CF-590B7EDEEABE} +name: Tags +key: tags +content-length: 77 + +{7ADA27C2-E37C-4467-AC79-B91E22655C1B}|{7B571419-0447-46C3-8EDC-8766F7F04471} +----field---- +field: {F6D8A61C-2F84-4401-BD24-52D2068172BC} +name: __Originator +key: __originator +content-length: 0 + + +----version---- +language: en +version: 1 +revision: b13072ea-3234-41d4-b31e-761adf862523 + +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20140207T154848 +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +b13072ea-3234-41d4-b31e-761adf862523 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T154903:635273849431057043 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Output/Data/serialization/master/sitecore/templates/System/Layout/Device/Detection/Conditions.item b/Output/Data/serialization/master/sitecore/templates/System/Layout/Device/Detection/Conditions.item new file mode 100644 index 0000000..0144fcb --- /dev/null +++ b/Output/Data/serialization/master/sitecore/templates/System/Layout/Device/Detection/Conditions.item @@ -0,0 +1,79 @@ +----item---- +version: 1 +id: {56E48DB2-4C03-4C3F-BE9A-3C29A17FD7FE} +database: master +path: /sitecore/templates/System/Layout/Device/Detection/Conditions +parent: {5D5C85F6-9659-42F4-8AC4-98BD623037E0} +name: Conditions +master: {00000000-0000-0000-0000-000000000000} +template: {455A3E98-A627-4B40-8035-E683A0331AC7} +templatekey: Template field + +----field---- +field: {AB162CC0-DC80-4ABF-8871-998EE5D7BA32} +name: Type +key: type +content-length: 5 + +Rules +----field---- +field: {1EB8AE32-E190-44A6-968D-ED904C794EBF} +name: Source +key: source +content-length: 48 + +/sitecore/system/Settings/Rules/Device Detection +----field---- +field: {BA3F86A2-4A1C-4D78-B63D-91C2779C1B5E} +name: __Sortorder +key: __sortorder +content-length: 3 + +520 +----version---- +language: en +version: 1 +revision: be908447-596c-4176-b608-008f061f0d13 + +----field---- +field: {52807595-0F8F-4B20-8D2A-CB71D28C6103} +name: __Owner +key: __owner +content-length: 14 + +sitecore\admin +----field---- +field: {25BED78C-4957-4165-998A-CA1B52F67497} +name: __Created +key: __created +content-length: 15 + +20110306T181345 +----field---- +field: {5DD74568-4D4B-44C1-B513-0AF5F4CDA34F} +name: __Created by +key: __created by +content-length: 14 + +sitecore\admin +----field---- +field: {8CDC337E-A112-42FB-BBB4-4143751E123F} +name: __Revision +key: __revision +content-length: 36 + +be908447-596c-4176-b608-008f061f0d13 +----field---- +field: {D9CF14B1-FA16-4BA6-9288-E8A174D4D522} +name: __Updated +key: __updated +content-length: 34 + +20140207T155101:635273850611515077 +----field---- +field: {BADD9CF9-53E0-4D0C-BCC0-2D784C282F6A} +name: __Updated by +key: __updated by +content-length: 14 + +sitecore\admin diff --git a/Sitecore.SharedSource.MobileDeviceDetector.sln b/Sitecore.SharedSource.MobileDeviceDetector.sln index 370df87..9445895 100644 --- a/Sitecore.SharedSource.MobileDeviceDetector.sln +++ b/Sitecore.SharedSource.MobileDeviceDetector.sln @@ -1,8 +1,15 @@  -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sitecore.SharedSource.MobileDeviceDetector", "MobileDeviceDetector\Sitecore.SharedSource.MobileDeviceDetector.csproj", "{0714D387-CD87-4B08-85C7-9102F89AF8F4}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{A3A55FC2-5D4F-4020-A5FF-756E5079C92A}" + ProjectSection(SolutionItems) = preProject + .nuget\NuGet.Config = .nuget\NuGet.Config + .nuget\NuGet.exe = .nuget\NuGet.exe + .nuget\NuGet.targets = .nuget\NuGet.targets + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/buildscript/run.ps1 b/buildscript/run.ps1 index 3ac291d..8507173 100644 --- a/buildscript/run.ps1 +++ b/buildscript/run.ps1 @@ -1,7 +1,8 @@ Clear-Host remove-module [p]sake -import-module .\Tools\psake\psake.psm1 +$ScriptDir = Split-Path -parent $MyInvocation.MyCommand.Path +import-module $ScriptDir\Tools\Psake\psake.psm1 $psake.use_exit_on_error = $true -Invoke-psake .\build.ps1 Package -properties @{ buildNumber = '123'; } \ No newline at end of file +Invoke-psake $ScriptDir\build.ps1 Package -properties @{ buildNumber = '123'; } \ No newline at end of file diff --git a/packages/51Degrees.mobi.2.1.12.2/51Degrees.mobi.2.1.12.2.nupkg b/packages/51Degrees.mobi.2.1.12.2/51Degrees.mobi.2.1.12.2.nupkg deleted file mode 100644 index 3ce9aac..0000000 Binary files a/packages/51Degrees.mobi.2.1.12.2/51Degrees.mobi.2.1.12.2.nupkg and /dev/null differ diff --git a/packages/51Degrees.mobi.2.1.12.2/51Degrees.mobi.2.1.12.2.nuspec b/packages/51Degrees.mobi.2.1.12.2/51Degrees.mobi.2.1.12.2.nuspec deleted file mode 100644 index aa44f3e..0000000 --- a/packages/51Degrees.mobi.2.1.12.2/51Degrees.mobi.2.1.12.2.nuspec +++ /dev/null @@ -1,19 +0,0 @@ - - - - 51Degrees.mobi - 2.1.12.2 - James Rosewell, Thomas Holmes - James Rosewell, Thomas Holmes - http://51degrees.codeplex.com/license - http://51degrees.mobi/ - http://51degrees.mobi/portals/0/NuGetLogo.png - false - Detect mobile devices, adapt the server responses, or redirect to web pages designed for mobile devices. Request.Browser properties will be populated with data from 51Degrees.mobi Lite Device Data. - en-GB - mobile, phone, detection, device, data, handset, tablet, responsive design, 51, 51d, 51degrees - - - - - \ No newline at end of file diff --git a/packages/51Degrees.mobi.2.1.12.2/ReadMe.txt b/packages/51Degrees.mobi.2.1.12.2/ReadMe.txt deleted file mode 100644 index a8e3d67..0000000 --- a/packages/51Degrees.mobi.2.1.12.2/ReadMe.txt +++ /dev/null @@ -1,27 +0,0 @@ -51Degrees.mobi is supported by a freemium business model. All device -detection and redirection source code is licenced under the Mozilla -Public Licence 2 (MPL2) allowing free commercial use. - -Lite device data is also licenced under MPL2, is free and embedded -into the assembly. It includes around 50 properties, associated -metadata, but does not contain devices released in the last 3 months. - -Premium device data is paid for on an annual subscription with prices -starting at less than $1 a day and includes the following additional -benefits. - -1. Weekly device data updates including all the latest devices, - browser and OS versions - -2. Over 50 extra properties (over 100 in total) including IsTablet, - screen size in millimetres and detailed model, platform and browser - information - -3. Option to enable automatic updates to ensure your web site is - always using the latest device data - -4. Metadata covering all 100+ properties - -Find out more by visiting http://51degrees.mobi/Products/DeviceData - -Thank you for installing 51Degrees.mobi. diff --git a/packages/51Degrees.mobi.2.1.12.2/content/51Degrees.mobi.config b/packages/51Degrees.mobi.2.1.12.2/content/51Degrees.mobi.config deleted file mode 100644 index 4ca1565..0000000 --- a/packages/51Degrees.mobi.2.1.12.2/content/51Degrees.mobi.config +++ /dev/null @@ -1,96 +0,0 @@ - - - - - -
-
-
- - -
- - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.designer.cs.pp b/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.designer.cs.pp deleted file mode 100644 index dbabe2f..0000000 --- a/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.designer.cs.pp +++ /dev/null @@ -1,26 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace $rootnamespace$.Mobile -{ - - - public partial class Default - { - - /// - /// form1 control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.HtmlControls.HtmlForm form1; - } -} diff --git a/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.pp b/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.pp deleted file mode 100644 index e904889..0000000 --- a/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.pp +++ /dev/null @@ -1,89 +0,0 @@ -<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="$rootnamespace$.Mobile.Default" %> -<%@ Import Namespace="System.Collections" %> - - - - - - Welcome to the Mobile Home Page - - -
-
-

Welcome to the Mobile Home Page

- <% - try - { - var version = System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion(); - if (version.StartsWith("v2")) - { %> -

- IMPORTANT: The NuGet version of 51Degrees.mobi requires .NET v4 or greater to run automatically. - Please change your project to run under .NET v4 then uninstall and reinstall the 51Degrees.mobi NuGet package. - See the User Guide for more information. -

- <% } } - catch { } - %> -

Here's some information about the requesting device:

-
    -
  • Screen Width: <% =Request.Browser.ScreenPixelsWidth %>
  • -
  • Screen Height: <% =Request.Browser.ScreenPixelsHeight %>
  • -
  • LayoutEngine: <% =Request.Browser["LayoutEngine"] %>
  • -
  • AnimationTiming: <% =Request.Browser["AnimationTiming"] %>
  • -
  • BlobBuilder: <% =Request.Browser["BlobBuilder"] %>
  • -
  • CssBackground: <% =Request.Browser["CssBackground"] %>
  • -
  • CssBorderImage: <% =Request.Browser["CssBorderImage"] %>
  • -
  • CssCanvas: <% =Request.Browser["CssCanvas"] %>
  • -
  • CssColor: <% =Request.Browser["CssColor"] %>
  • -
  • CssColumn: <% =Request.Browser["CssColumn"] %>
  • -
  • CssFlexbox: <% =Request.Browser["CssFlexbox"] %>
  • -
  • CssFont: <% =Request.Browser["CssFont"] %>
  • -
  • CssMediaQueries: <% =Request.Browser["CssMediaQueries"] %>
  • -
  • CssMinMax: <% =Request.Browser["CssMinMax"] %>
  • -
  • CssOverflow: <% =Request.Browser["CssOverflow"] %>
  • -
  • CssPosition: <% =Request.Browser["CssPosition"] %>
  • -
  • CssText: <% =Request.Browser["CssText"] %>
  • -
  • CssTransforms: <% =Request.Browser["CssTransforms"] %>
  • -
  • CssTransitions: <% =Request.Browser["CssTransitions"] %>
  • -
  • CssUI: <% =Request.Browser["CssUI"] %>
  • -
  • DataSet: <% =Request.Browser["DataSet"] %>
  • -
  • DataUrl: <% =Request.Browser["DataUrl"] %>
  • -
  • DeviceOrientation: <% =Request.Browser["DeviceOrientation"] %>
  • -
  • FileReader: <% =Request.Browser["FileReader"] %>
  • -
  • FileSaver: <% =Request.Browser["FileSaver"] %>
  • -
  • FileWriter: <% =Request.Browser["FileWriter"] %>
  • -
  • FormData: <% =Request.Browser["FormData"] %>
  • -
  • Fullscreen: <% =Request.Browser["Fullscreen"] %>
  • -
  • GeoLocation: <% =Request.Browser["GeoLocation"] %>
  • -
  • History: <% =Request.Browser["History"] %>
  • -
  • Html5: <% =Request.Browser["Html5"] %>
  • -
  • Html-Media-Capture: <% =Request.Browser["Html-Media-Capture"] %>
  • -
  • Iframe: <% =Request.Browser["Iframe"] %>
  • -
  • IndexedDB: <% =Request.Browser["IndexedDB"] %>
  • -
  • Json: <% =Request.Browser["Json"] %>
  • -
  • Masking: <% =Request.Browser["Masking"] %>
  • -
  • PostMessage: <% =Request.Browser["PostMessage"] %>
  • -
  • PreferencesForFrames: <% =Request.Browser["PreferencesForFrames"] %>
  • -
  • Progress: <% =Request.Browser["Progress"] %>
  • -
  • Prompts: <% =Request.Browser["Prompts"] %>
  • -
  • Selector: <% =Request.Browser["Selector"] %>
  • -
  • Svg: <% =Request.Browser["Svg"] %>
  • -
  • TouchEvents: <% =Request.Browser["TouchEvents"] %>
  • -
  • Track: <% =Request.Browser["Track"] %>
  • -
  • Video: <% =Request.Browser["Video"] %>
  • -
  • Viewport: <% =Request.Browser["Viewport"] %>
  • -
-

See MSDN for details of Request.Browser properties.

-

See 51Degrees.mobi for user guide.

-

See 51Degrees.mobi Device Data for details of other data properties and to get weekly data updates.

-
- <% if (Request.Browser.IsMobileDevice == false) { %> -

The requesting device isn't a mobile. The page must have been requested directly.

-

Try accessing the web site from a mobile device, or a mobile device emulator. A list of popular mobile emulators can be found here.

- <% } %> -

Data Published: <% =FiftyOne.Foundation.Mobile.Detection.Factory.ActiveProvider.PublishedDate %>

-
-
- - \ No newline at end of file diff --git a/packages/51Degrees.mobi.2.1.12.2/lib/NET40/FiftyOne.Foundation.dll b/packages/51Degrees.mobi.2.1.12.2/lib/NET40/FiftyOne.Foundation.dll deleted file mode 100644 index 264a1ae..0000000 Binary files a/packages/51Degrees.mobi.2.1.12.2/lib/NET40/FiftyOne.Foundation.dll and /dev/null differ diff --git a/packages/51Degrees.mobi.3.1.4.5/51Degrees.mobi.3.1.4.5.nupkg b/packages/51Degrees.mobi.3.1.4.5/51Degrees.mobi.3.1.4.5.nupkg new file mode 100644 index 0000000..ba78302 Binary files /dev/null and b/packages/51Degrees.mobi.3.1.4.5/51Degrees.mobi.3.1.4.5.nupkg differ diff --git a/packages/51Degrees.mobi.3.1.4.5/ReadMe.txt b/packages/51Degrees.mobi.3.1.4.5/ReadMe.txt new file mode 100644 index 0000000..c2d4c8d --- /dev/null +++ b/packages/51Degrees.mobi.3.1.4.5/ReadMe.txt @@ -0,0 +1,30 @@ +Important: Upgrading users of Enhanced Data need version 3.1 data. + +51Degrees is supported by a freemium business model. All device +detection and redirection source code is licenced under the Mozilla +Public Licence 2 (MPL2) allowing free commercial use. + +Lite device data is also licenced under MPL2, is free and embedded +into the assembly. It includes around 50 properties, associated +metadata, but does not contain devices released in the last 3 months. + +Paid for device data is available on an annual subscription and +includes the following additional benefits. + +1. Automatic weekly or daily device data updates including all the + latest devices, browser and OS versions + +2. Over 50 extra properties (over 150 in total) including IsTablet, + screen size in millimetres and detailed model, platform and browser + information + +3. Option to enable automatic updates to ensure your web site is + always using the latest device data + +4. Metadata covering all 100+ properties + +Find out more by visiting http://51degrees.com/Products/DeviceDetection + +Find out more about sharing usage data by visiting http://51degrees.com/Support/FAQs/UsageData + +Thank you for installing 51Degrees. diff --git a/packages/51Degrees.mobi.3.1.4.5/content/51Degrees.config b/packages/51Degrees.mobi.3.1.4.5/content/51Degrees.config new file mode 100644 index 0000000..a28a1cc --- /dev/null +++ b/packages/51Degrees.mobi.3.1.4.5/content/51Degrees.config @@ -0,0 +1,147 @@ + + + + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.cs.pp b/packages/51Degrees.mobi.3.1.4.5/content/Mobile/Default.aspx.cs.pp similarity index 50% rename from packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.cs.pp rename to packages/51Degrees.mobi.3.1.4.5/content/Mobile/Default.aspx.cs.pp index 926e685..4894bb9 100644 --- a/packages/51Degrees.mobi.2.1.12.2/content/Mobile/Default.aspx.cs.pp +++ b/packages/51Degrees.mobi.3.1.4.5/content/Mobile/Default.aspx.cs.pp @@ -15,15 +15,26 @@ using System.Web; using System.Web.UI; using System.Web.UI.WebControls; -using System.Collections; -namespace $rootnamespace$.Mobile +public partial class FiftyOne_Mobile_Default : System.Web.UI.Page { - public partial class Default : System.Web.UI.Page + protected string GetPropertyLinkHTML(string propertyName) + { + return String.Format( + @"{0}", + propertyName); + } + + protected string GetPropertyHTML(string propertyName) + { + var value = Request.Browser[propertyName]; + if (String.IsNullOrEmpty(value)) + value = @"Upgrade"; + return value; + } + + protected void Page_Load(object sender, EventArgs e) { - protected void Page_Load(object sender, EventArgs e) - { - } } } \ No newline at end of file diff --git a/packages/51Degrees.mobi.3.1.4.5/content/Mobile/Default.aspx.pp b/packages/51Degrees.mobi.3.1.4.5/content/Mobile/Default.aspx.pp new file mode 100644 index 0000000..0c3d752 --- /dev/null +++ b/packages/51Degrees.mobi.3.1.4.5/content/Mobile/Default.aspx.pp @@ -0,0 +1,101 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="FiftyOne_Mobile_Default" %> + + + + + + Welcome to the Mobile Home Page + + +
+
+

Welcome to the Mobile Home Page

+ <% + try + { + var version = System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion(); + if (version.StartsWith("v2")) + { %> +

+ IMPORTANT: The NuGet version of 51Degrees.mobi requires .NET v4 or greater to run automatically. + Please change your project to run under .NET v4 then uninstall and reinstall the 51Degrees.mobi NuGet package. + See the User Guide for more information. +

+ <% } } + catch { } + %> +
+ <% if (Request.Browser.IsMobileDevice == false) { %> +

The requesting device isn't a mobile. The page must have been requested directly.

+

Try accessing the web site from a mobile device, or a mobile device emulator. A list of popular mobile emulators can be found here.

+ <% } %> +
+

Here's some information about the requesting device:

+
    +
  • Popular Properties

  • +
  • <% =GetPropertyLinkHTML("IsMobile")%>: <% =Request.Browser.IsMobileDevice %>
  • +
  • <% =GetPropertyLinkHTML("ScreenPixelsWidth")%>: <% =Request.Browser.ScreenPixelsWidth %>
  • +
  • <% =GetPropertyLinkHTML("ScreenPixelsHeight")%>: <% =Request.Browser.ScreenPixelsHeight %>
  • +
  • <% =GetPropertyLinkHTML("ScreenMMWidth")%>: <% =GetPropertyHTML("ScreenMMWidth") %>
  • +
  • <% =GetPropertyLinkHTML("ScreenMMHeight")%>: <% =GetPropertyHTML("ScreenMMHeight") %>
  • +
  • <% =GetPropertyLinkHTML("ScreenInchesSquare")%>: <% =GetPropertyHTML("ScreenInchesSquare") %>
  • +
  • <% =GetPropertyLinkHTML("IsTablet")%>: <% =GetPropertyHTML("IsTablet") %>
  • +
  • <% =GetPropertyLinkHTML("IsSmartPhone")%>: <% =GetPropertyHTML("IsSmartPhone") %>
  • +
  • Browser Properties

  • +
  • <% =GetPropertyLinkHTML("LayoutEngine")%>: <% =GetPropertyHTML("LayoutEngine") %>
  • +
  • <% =GetPropertyLinkHTML("AnimationTiming")%>: <% =GetPropertyHTML("AnimationTiming") %>
  • +
  • <% =GetPropertyLinkHTML("BlobBuilder")%>: <% =GetPropertyHTML("BlobBuilder") %>
  • +
  • <% =GetPropertyLinkHTML("CssBackground")%>: <% =GetPropertyHTML("CssBackground") %>
  • +
  • <% =GetPropertyLinkHTML("CssBorderImage")%>: <% =GetPropertyHTML("CssBorderImage") %>
  • +
  • <% =GetPropertyLinkHTML("CssCanvas")%>: <% =GetPropertyHTML("CssCanvas") %>
  • +
  • <% =GetPropertyLinkHTML("CssColor")%>: <% =GetPropertyHTML("CssColor") %>
  • +
  • <% =GetPropertyLinkHTML("CssColumn")%>: <% =GetPropertyHTML("CssColumn") %>
  • +
  • <% =GetPropertyLinkHTML("CssFlexbox")%>: <% =GetPropertyHTML("CssFlexbox") %>
  • +
  • <% =GetPropertyLinkHTML("CssFont")%>: <% =GetPropertyHTML("CssFont") %>
  • +
  • <% =GetPropertyLinkHTML("CssMediaQueries")%>: <% =GetPropertyHTML("CssMediaQueries") %>
  • +
  • <% =GetPropertyLinkHTML("CssMinMax")%>: <% =GetPropertyHTML("CssMinMax") %>
  • +
  • <% =GetPropertyLinkHTML("CssOverflow")%>: <% =GetPropertyHTML("CssOverflow") %>
  • +
  • <% =GetPropertyLinkHTML("CssPosition")%>: <% =GetPropertyHTML("CssPosition") %>
  • +
  • <% =GetPropertyLinkHTML("CssText")%>: <% =GetPropertyHTML("CssText") %>
  • +
  • <% =GetPropertyLinkHTML("CssTransforms")%>: <% =GetPropertyHTML("CssTransforms") %>
  • +
  • <% =GetPropertyLinkHTML("CssTransitions")%>: <% =GetPropertyHTML("CssTransitions") %>
  • +
  • <% =GetPropertyLinkHTML("CssUI")%>: <% =GetPropertyHTML("CssUI") %>
  • +
  • <% =GetPropertyLinkHTML("DataSet")%>: <% =GetPropertyHTML("DataSet") %>
  • +
  • <% =GetPropertyLinkHTML("DataUrl")%>: <% =GetPropertyHTML("DataUrl") %>
  • +
  • <% =GetPropertyLinkHTML("DeviceOrientation")%>: <% =GetPropertyHTML("DeviceOrientation") %>
  • +
  • <% =GetPropertyLinkHTML("FileReader")%>: <% =GetPropertyHTML("FileReader") %>
  • +
  • <% =GetPropertyLinkHTML("FileSaver")%>: <% =GetPropertyHTML("FileSaver") %>
  • +
  • <% =GetPropertyLinkHTML("FileWriter")%>: <% =GetPropertyHTML("FileWriter") %>
  • +
  • <% =GetPropertyLinkHTML("FormData")%>: <% =GetPropertyHTML("FormData") %>
  • +
  • <% =GetPropertyLinkHTML("Fullscreen")%>: <% =GetPropertyHTML("Fullscreen") %>
  • +
  • <% =GetPropertyLinkHTML("GeoLocation")%>: <% =GetPropertyHTML("GeoLocation") %>
  • +
  • <% =GetPropertyLinkHTML("History")%>: <% =GetPropertyHTML("History") %>
  • +
  • <% =GetPropertyLinkHTML("Html-Media-Capture")%>: <% =GetPropertyHTML("Html-Media-Capture") %>
  • +
  • <% =GetPropertyLinkHTML("Iframe")%>: <% =GetPropertyHTML("Iframe") %>
  • +
  • <% =GetPropertyLinkHTML("IndexedDB")%>: <% =GetPropertyHTML("IndexedDB") %>
  • +
  • <% =GetPropertyLinkHTML("Json")%>: <% =GetPropertyHTML("Json") %>
  • +
  • <% =GetPropertyLinkHTML("Masking")%>: <% =GetPropertyHTML("Masking") %>
  • +
  • <% =GetPropertyLinkHTML("PostMessage")%>: <% =GetPropertyHTML("PostMessage") %>
  • +
  • <% =GetPropertyLinkHTML("Progress")%>: <% =GetPropertyHTML("Progress") %>
  • +
  • <% =GetPropertyLinkHTML("Prompts")%>: <% =GetPropertyHTML("Prompts") %>
  • +
  • <% =GetPropertyLinkHTML("Selector")%>: <% =GetPropertyHTML("Selector") %>
  • +
  • <% =GetPropertyLinkHTML("Svg")%>: <% =GetPropertyHTML("Svg") %>
  • +
  • <% =GetPropertyLinkHTML("TouchEvents")%>: <% =GetPropertyHTML("TouchEvents") %>
  • +
  • <% =GetPropertyLinkHTML("Track")%>: <% =GetPropertyHTML("Track") %>
  • +
  • <% =GetPropertyLinkHTML("Video")%>: <% =GetPropertyHTML("Video") %>
  • +
  • <% =GetPropertyLinkHTML("Viewport")%>: <% =GetPropertyHTML("Viewport") %>
  • +
+
+

Device Data Information

+

Data Published: <% =FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider.DataSet.Published %>

+

Version Name: <% =FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider.DataSet.Name %>

+

Version Format: <% =FiftyOne.Foundation.Mobile.Detection.WebProvider.ActiveProvider.DataSet.Format %>

+
+

See MSDN for details of Request.Browser properties.

+

See 51Degrees for user guide.

+

See 51Degrees Device Data Updates for ways to automatically update device data and extend properties.

+

See 51Degrees Device Properties for a full list of properties.

+
+
+ + \ No newline at end of file diff --git a/packages/51Degrees.mobi.3.1.4.5/lib/NET40/FiftyOne.Foundation.dll b/packages/51Degrees.mobi.3.1.4.5/lib/NET40/FiftyOne.Foundation.dll new file mode 100644 index 0000000..69d03f7 Binary files /dev/null and b/packages/51Degrees.mobi.3.1.4.5/lib/NET40/FiftyOne.Foundation.dll differ diff --git a/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec b/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec deleted file mode 100644 index 1640145..0000000 --- a/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec +++ /dev/null @@ -1,17 +0,0 @@ - - - - Microsoft.Web.Infrastructure - 1.0.0.0 - Microsoft.Web.Infrastructure - Microsoft - Microsoft - http://go.microsoft.com/fwlink/?LinkID=214339 - http://www.asp.net/ - https://download-codeplex.sec.s-msft.com/Download?ProjectName=aspnetwebstack&DownloadId=360555 - false - This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time. - This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time. - ASPNETWEBPAGES - - \ No newline at end of file