Normalize cr/lf/tab

This commit is contained in:
Stephan
2017-07-20 11:21:28 +02:00
parent fa6c147a65
commit c76403077f
2466 changed files with 26012 additions and 26010 deletions

View File

@@ -11,4 +11,4 @@
GreaterThan = 7,
GreaterThanEqualTo = 8
}
}
}

View File

@@ -22,4 +22,4 @@ namespace Umbraco.Web.Models.TemplateQuery
public Operathor Operathor { get; set; }
public IEnumerable<string> AppliesTo { get; set; }
}
}
}

View File

@@ -2,7 +2,7 @@
{
public class QueryCondition
{
public PropertyModel Property { get; set; }
public OperathorTerm Term { get; set; }
public string ConstraintValue { get; set; }
@@ -11,7 +11,7 @@
internal static class QueryConditionExtensions
{
public static string BuildTokenizedCondition(this QueryCondition condition, int token)
{
return condition.BuildConditionString(string.Empty, token);
@@ -24,7 +24,7 @@
private static string BuildConditionString(this QueryCondition condition, string prefix, int token = -1)
{
var operand = string.Empty;
@@ -88,11 +88,11 @@
if (string.IsNullOrEmpty(value) == false)
return value;
return string.Format("{0}{1}{2}{3}", prefix, condition.Property.Alias, operand, constraintValue);
}
}
}
}

View File

@@ -10,4 +10,4 @@ namespace Umbraco.Web.Models.TemplateQuery
public SortExpression Sort { get; set; }
public int Take { get; set; }
}
}
}

View File

@@ -2,14 +2,14 @@
namespace Umbraco.Web.Models.TemplateQuery
{
public class QueryResultModel
{
public string QueryExpression { get; set; }
public IEnumerable<TemplateQueryResult> SampleResults { get; set; }
public int ResultCount { get; set; }
public double ExecutionTime { get; set; }
public int Take { get; set; }
}
}
}

View File

@@ -6,4 +6,4 @@
public string Direction { get; set; }
}
}
}

View File

@@ -5,4 +5,4 @@
public int Id { get; set; }
public string Name { get; set; }
}
}
}

View File

@@ -6,4 +6,4 @@
public string Name { get; set; }
}
}
}