This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"sessionMongoDbConnStrTidy": "[trim(parameters('session.mongodb.connectionstring'))]", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<connectionStrings> | |
<!-- | |
Sitecore connection strings. | |
All database connections for Sitecore are configured here. | |
--> | |
<add name="core" connectionString="user id=user;password=password;Data Source=(server);Database=Sitecore_Core"/> | |
<add name="web" connectionString="user id=user;password=password;Data Source=(server);Database=Sitecore_Web"/> | |
<add name="analytics" connectionString="mongodb://localhost/Sitecore_analytics"/> | |
<add name="tracking.live" connectionString="mongodb://localhost/Sitecore_tracking_live"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HasContactCompletedGoal<T> : TypedQueryableStringOperatorCondition<T, IndexedContact> where T : VisitorRuleContext<IndexedContact> | |
{ | |
private const string IndexField = "Contact.CompletedGoals"; | |
private const string ContainsOperatorId = "{2E67477C-440C-4BCA-A358-3D29AED89F47}"; | |
public HasContactCompletedGoal() | |
{ | |
OperatorId = ContainsOperatorId; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
<!-- | |
A pipe separated list of content ID's. When a publish occurs if the item | |
being published is one of these items, | |
or a child of one of these items then the HTML cache isn't cleared. | |
--> | |
<setting name="CustomHtmlCacheClearer.IgnoreItems" value="/sitecore/content"/> | |
</settings> | |
<events> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private const string RecursiveSwitch = "-r"; | |
private const string RenderingElementName = "r"; | |
private const string RenderingsFieldName = "__renderings"; | |
private const string DeviceElementName = "d"; | |
private const string PlaceholderAttributeName = "ph"; | |
private Context _context; | |
private bool _recursive; | |
private string _oldPlaceHolderName; | |
private string _newPlaceHolderName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bind RevolverExtensions.TrimVersions,RevolverExtensions tv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<httpRequestBegin> | |
<processor type="Sitecore.MultisiteHttpModule.NotFound.NotFoundHandler, Sitecore.MultisiteHttpModule" patch:after="processor[@type='Sitecore.Pipelines.HttpRequest.ItemResolver, Sitecore.Kernel']" /> | |
</httpRequestBegin> |
NewerOlder