From 3718f8be01d841286f24a93b54f82ce001668fb7 Mon Sep 17 00:00:00 2001 From: jayeshjogani Date: Thu, 30 Sep 2021 17:44:31 +0530 Subject: [PATCH] upgraded kitsune packages --- .../Kitsune.Identifier.csproj | 2 +- AliCloud/KLM.AliCloud.Web/KLM.Web.csproj | 2 +- .../FloatingpointLayoutManager.csproj | 25 ++++++++---------- .../Helper/BlockLevelExpressionEvaluator.cs | 8 +++--- .../Helper/BlockLevelKLMExecutor.cs | 4 +-- .../Helper/ExpressionEvaluator.cs | 8 +++--- .../Helper/TagProcessors/KDLProcessor.cs | 2 +- .../Helper/TagProcessors/KObjectProcessor.cs | 4 +-- .../Helper/TagProcessors/KRepeatProcessor.cs | 4 +-- .../Helper/WidgetHandler/DataHandler.cs | 2 +- .../Helper/WidgetHandler/KScriptHandler.cs | 2 +- .../Helper/WidgetHandler/RepeatHelper.cs | 2 +- .../Kitsune.Server.Model.dll | Bin 13312 -> 0 bytes 13 files changed, 31 insertions(+), 34 deletions(-) delete mode 100644 Common/FloatingpointLayoutManager/Kitsune.Server.Model.dll diff --git a/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj b/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj index c55cea6..2c822a2 100644 --- a/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj +++ b/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj @@ -17,7 +17,7 @@ - + diff --git a/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj b/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj index 443cea6..06ca6db 100644 --- a/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj +++ b/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj @@ -15,7 +15,7 @@ - + diff --git a/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj b/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj index 4a6e850..fb873a4 100644 --- a/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj +++ b/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 1.0.1 + 3.0.2 Devesh Kumar Kitsune Copyright © 2021 @@ -22,20 +22,23 @@ default full false - bin\Debug\ - bin\Debug\KitsuneLayoutManager.xml - https://github.com/nowfloats/kitsune-application-runtime + bin\Release\ + bin\Release\KitsuneLayoutManager.xml + git@github.com:nowfloats/kitsune-application-runtime.git git + true - - - - + + + + + + @@ -48,10 +51,4 @@ - - - Kitsune.Server.Model.dll - - - diff --git a/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs b/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs index 571ca07..4268dbe 100644 --- a/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs +++ b/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs @@ -1,9 +1,9 @@ -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using Kitsune.Language.Models; using Kitsune.Server.Model.Kitsune; -using KitsuneSyntaxParser; -using KitsuneSyntaxParser.Models; +using Kitsune.SyntaxParser; +using Kitsune.SyntaxParser.Models; using KitsuneLayoutManager.Models; using Microsoft.CSharp.RuntimeBinder; using Newtonsoft.Json; diff --git a/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs b/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs index e54ee2f..11b2b01 100644 --- a/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs +++ b/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs @@ -1,5 +1,5 @@ -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using Kitsune.Language.Models; using Kitsune.Models; using Kitsune.Models.KLM; diff --git a/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs b/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs index 706d4ce..0a51049 100644 --- a/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs +++ b/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs @@ -1,9 +1,9 @@ -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using Kitsune.Language.Models; using Kitsune.Server.Model.Kitsune; -using KitsuneSyntaxParser; -using KitsuneSyntaxParser.Models; +using Kitsune.SyntaxParser; +using Kitsune.SyntaxParser.Models; using Microsoft.CSharp.RuntimeBinder; using Newtonsoft.Json; using Newtonsoft.Json.Linq; diff --git a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs index 2cb22e7..db7ec49 100644 --- a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs +++ b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs @@ -41,7 +41,7 @@ public override void Process(ref HtmlNode node, HtmlAttribute dynamicAttribute, baseObj = null; try { - objects = KitsuneSyntaxParser.Parser.GetObjects(Helper.TrimDelimiters(attr.Value)); + objects = Kitsune.SyntaxParser.Parser.GetObjects(Helper.TrimDelimiters(attr.Value)); foreach (var obj in objects) { diff --git a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs index 9241872..44b24d0 100644 --- a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs +++ b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using HtmlAgilityPack; using Kitsune.Language.Models; diff --git a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs index 616056f..c76044f 100644 --- a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs +++ b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using HtmlAgilityPack; using Kitsune.Language.Models; using Newtonsoft.Json; diff --git a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs index df150e5..f4aab26 100644 --- a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs +++ b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs @@ -17,7 +17,7 @@ using Newtonsoft.Json; using System.Collections; using System.Diagnostics; -using KitsuneSyntaxParser; +using Kitsune.SyntaxParser; using System.Dynamic; namespace KitsuneLayoutManager.Helper.WidgetHandler diff --git a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs index 4e13afa..db53e95 100644 --- a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs +++ b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs @@ -1,6 +1,6 @@ using HtmlAgilityPack; using Kitsune.Helper; -using KitsuneSyntaxParser; +using Kitsune.SyntaxParser; using KitsuneLayoutManager.Models; using Microsoft.CSharp.RuntimeBinder; using System; diff --git a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs index dd2cb47..29b0e1e 100644 --- a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs +++ b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs @@ -6,7 +6,7 @@ using HtmlAgilityPack; using Kitsune.Server.Model.Kitsune; using System.Text.RegularExpressions; -using KitsuneSyntaxParser; +using Kitsune.SyntaxParser; namespace KitsuneLayoutManager.Helper.WidgetHandler { diff --git a/Common/FloatingpointLayoutManager/Kitsune.Server.Model.dll b/Common/FloatingpointLayoutManager/Kitsune.Server.Model.dll deleted file mode 100644 index 0b95b395d7b4dfe5accf59407c1589ceb8dbf616..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13312 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