Skip to content

Commit

Permalink
Extremely big change and rearrange, layout halfway, max
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Jun 30, 2022
1 parent a47ca76 commit 2a7000c
Show file tree
Hide file tree
Showing 104 changed files with 3,002 additions and 2,535 deletions.
2 changes: 1 addition & 1 deletion FXBEditorUtils/ControlUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Windows.Forms;

namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
public class ControlUtils
{
Expand Down
2 changes: 1 addition & 1 deletion FXBEditorUtils/FindTextHandler.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Windows.Forms;
using ScintillaNET;

namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
public class FindTextHandler
{
Expand Down
2 changes: 1 addition & 1 deletion FXBEditorUtils/IComboBoxItem.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
public interface IComboBoxItem
{
Expand Down
2 changes: 1 addition & 1 deletion FXBEditorUtils/IDefinitionSavable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// This project was developed by Tanguy Touzard
// CODEPLEX: http://xrmtoolbox.codeplex.com
// BLOG: http://mscrmtools.blogspot.com
namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
public interface IDefinitionSavable
{
Expand Down
2 changes: 1 addition & 1 deletion FXBEditorUtils/ListViewItemComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.Collections;
using System.Windows.Forms;

namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
/// <summary>
/// Compares two listview items for sorting
Expand Down
2 changes: 1 addition & 1 deletion FXBEditorUtils/Prompt.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Windows.Forms;

namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
public static class Prompt
{
Expand Down
2 changes: 1 addition & 1 deletion FXBEditorUtils/SaveEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Collections.Generic;

namespace Cinteros.Xrm.XmlEditorUtils
namespace Rappen.XTB.XmlEditorUtils
{
public class SaveEventArgs : EventArgs
{
Expand Down
12 changes: 4 additions & 8 deletions FXBTests/AutocompleteTests.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Cinteros.Xrm.FetchXmlBuilder;
using MarkMpn.XmlSchemaAutocomplete;
using MarkMpn.XmlSchemaAutocomplete;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Rappen.XTB.FetchXmlBuilder;
using System.Linq;

namespace FXBTests
{
Expand All @@ -23,4 +19,4 @@ public void SuggestsFetch()
CollectionAssert.AreEqual(new[] { "fetch" }, suggestions.Cast<AutocompleteElementSuggestion>().Select(s => s.Name).ToArray());
}
}
}
}
11 changes: 3 additions & 8 deletions FXBTests/QueryExpressionTests.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Cinteros.Xrm.FetchXmlBuilder.AppCode;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.Xrm.Sdk.Query;
using Rappen.XTB.FetchXmlBuilder.Converters;

namespace FXBTests
{
Expand Down Expand Up @@ -90,4 +85,4 @@ public void MultipleComparisonsOnSameField()
Assert.AreEqual(expected, converted);
}
}
}
}
6 changes: 3 additions & 3 deletions FXBTests/TestUrls.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Cinteros.Xrm.FetchXmlBuilder.AppCode;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Rappen.XTB.FetchXmlBuilder.AppCode;

namespace FXBTests
{
Expand Down Expand Up @@ -43,4 +43,4 @@ public void TestRandomUrl()
Assert.AreEqual(randomUrlResult, result);
}
}
}
}
2 changes: 1 addition & 1 deletion FetchXmlBuilder/AppCode/FXBMessageBusArgument.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.Xrm.Sdk.Query;

namespace Cinteros.Xrm.FetchXmlBuilder
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
public class FXBMessageBusArgument
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Windows.Forms;

namespace Cinteros.Xrm.FetchXmlBuilder
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
public class HistoryManager
{
Expand Down
2 changes: 1 addition & 1 deletion FetchXmlBuilder/AppCode/QueryInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Query;

namespace Cinteros.Xrm.FetchXmlBuilder.AppCode
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
internal class QueryInfo
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using Cinteros.Xrm.FetchXmlBuilder.AppCode;
using Rappen.XTB.FetchXmlBuilder.Settings;
using ScintillaNET;

namespace Cinteros.Xrm.FetchXmlBuilder
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
static class ScintillaHelper
internal static class ScintillaHelper
{
public static void ConfigureForXml(this Scintilla scintilla, FXBSettings settings)
{
Expand Down Expand Up @@ -247,4 +247,4 @@ public static void FormatXML(this Scintilla scintilla, string text, FXBSettings
}
}
}
}
}
4 changes: 2 additions & 2 deletions FetchXmlBuilder/AppCode/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Web;

namespace Cinteros.Xrm.FetchXmlBuilder.AppCode
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
public static class Utils
{
Expand All @@ -28,4 +28,4 @@ public static string ProcessURL(string url)
return urib.Uri.ToString();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using MarkMpn.FetchXmlToWebAPI;
using Microsoft.Xrm.Sdk.Metadata;

namespace Cinteros.Xrm.FetchXmlBuilder
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
internal class WebAPIMetadataProvider : IMetadataProvider
{
Expand Down
2 changes: 1 addition & 1 deletion FetchXmlBuilder/AppCode/XmlFragmentWriter.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.Xml;

namespace Cinteros.Xrm.FetchXmlBuilder.AppCode
namespace Rappen.XTB.FetchXmlBuilder.AppCode
{
/// <summary>
/// XmlFragmentWriter is needed as only XmlTextWriter has the ability to specify
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System;

namespace Cinteros.Xrm.FetchXmlBuilder.AppCode
{
internal class FetchIsAggregateException : Exception
{
public FetchIsAggregateException(string message) : base(message)
{
}
}
using System;

namespace Rappen.XTB.FetchXmlBuilder.Builder
{
internal class FetchIsAggregateException : Exception
{
public FetchIsAggregateException(string message) : base(message)
{
}
}
}
Loading

0 comments on commit 2a7000c

Please sign in to comment.