Browse Source

- removed additional namespaces, merged everything into ICSharpCode.XmlEditor

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/XmlEditor@4157 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Siegfried Pammer 17 years ago
parent
commit
2372e0a42e
  1. 3
      src/AddIns/BackendBindings/XmlBinding/Src/CodeCompletion/XmlCodeCompletionBinding.cs
  2. 1
      src/AddIns/BackendBindings/XmlBinding/Src/CodeCompletion/XmlCompletionDataProvider.cs
  3. 1
      src/AddIns/BackendBindings/XmlBinding/Src/CodeCompletion/XmlSchemaCompletionData.cs
  4. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/AssignStylesheetCommand.cs
  5. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/CreateSchemaCommand.cs
  6. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/FormatXmlCommand.cs
  7. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/GoToSchemaDefinitionCommand.cs
  8. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/OpenStylesheetCommand.cs
  9. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/RunXslTransformCommand.cs
  10. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Commands/ValidateXmlCommand.cs
  11. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/SelectXmlSchema.xaml
  12. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/SelectXmlSchema.xaml.cs
  13. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlEditorOptionsPanel.xaml
  14. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlEditorOptionsPanel.xaml.cs
  15. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlSchemasPanel.xaml
  16. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlSchemasPanel.xaml.cs
  17. 3
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/XPathQueryControl.cs
  18. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlDisplayBinding.cs
  19. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlTreeEditor.cs
  20. 1
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlTreeView.cs
  21. 4
      src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlView.cs
  22. 4
      src/AddIns/BackendBindings/XmlBinding/Src/Parser/Parser.cs
  23. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Parser/QualifiedName.cs
  24. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Parser/QualifiedNameCollection.cs
  25. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Parser/XmlElementPath.cs
  26. 2
      src/AddIns/BackendBindings/XmlBinding/Src/Parser/XmlParser.cs
  27. 1
      src/AddIns/BackendBindings/XmlBinding/Src/StylesheetAssignedCondition.cs

3
src/AddIns/BackendBindings/XmlBinding/Src/CodeCompletion/XmlCodeCompletionBinding.cs

@ -6,10 +6,9 @@ @@ -6,10 +6,9 @@
// </file>
using System;
using System.IO;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.XmlEditor.Parser;
using ICSharpCode.XmlEditor;
using System.IO;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/CodeCompletion/XmlCompletionDataProvider.cs

@ -10,7 +10,6 @@ using System; @@ -10,7 +10,6 @@ using System;
using System.Windows.Forms;
using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.XmlEditor.Parser;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/CodeCompletion/XmlSchemaCompletionData.cs

@ -12,7 +12,6 @@ using System.Text; @@ -12,7 +12,6 @@ using System.Text;
using System.Xml;
using System.Xml.Schema;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.XmlEditor.Parser;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/AssignStylesheetCommand.cs

@ -9,7 +9,6 @@ using ICSharpCode.SharpDevelop.Gui; @@ -9,7 +9,6 @@ using ICSharpCode.SharpDevelop.Gui;
using System;
using System.Windows.Forms;
using ICSharpCode.Core;
using ICSharpCode.XmlEditor.Gui;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/CreateSchemaCommand.cs

@ -5,7 +5,6 @@ @@ -5,7 +5,6 @@
// <version>$Revision: -1 $</version>
// </file>
using ICSharpCode.XmlEditor.Gui;
using System;
using System.IO;
using ICSharpCode.Core;

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/FormatXmlCommand.cs

@ -8,7 +8,6 @@ @@ -8,7 +8,6 @@
using ICSharpCode.SharpDevelop.Gui;
using System;
using ICSharpCode.Core;
using ICSharpCode.XmlEditor.Gui;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/GoToSchemaDefinitionCommand.cs

@ -8,7 +8,6 @@ @@ -8,7 +8,6 @@
using ICSharpCode.SharpDevelop.Gui;
using System;
using ICSharpCode.Core;
using ICSharpCode.XmlEditor.Gui;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/OpenStylesheetCommand.cs

@ -9,7 +9,6 @@ using System; @@ -9,7 +9,6 @@ using System;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.XmlEditor.Gui;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/RunXslTransformCommand.cs

@ -11,7 +11,6 @@ using System.IO; @@ -11,7 +11,6 @@ using System.IO;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.XmlEditor.Gui;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Commands/ValidateXmlCommand.cs

@ -8,7 +8,6 @@ @@ -8,7 +8,6 @@
using ICSharpCode.SharpDevelop.Gui;
using System;
using ICSharpCode.Core;
using ICSharpCode.XmlEditor.Gui;
namespace ICSharpCode.XmlEditor
{

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/SelectXmlSchema.xaml

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<Window x:Class="ICSharpCode.XmlEditor.Gui.Dialogs.SelectXmlSchema"
<Window x:Class="ICSharpCode.XmlEditor.SelectXmlSchema"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sd="http://icsharpcode.net/sharpdevelop/core"

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/SelectXmlSchema.xaml.cs

@ -12,7 +12,7 @@ using System.Windows.Media; @@ -12,7 +12,7 @@ using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace ICSharpCode.XmlEditor.Gui.Dialogs
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Interaction logic for SelectXmlSchema.xaml

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlEditorOptionsPanel.xaml

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<gui:AbstractOptionPanel x:Class="ICSharpCode.XmlEditor.Gui.Dialogs.XmlEditorOptionsPanel"
<gui:AbstractOptionPanel x:Class="ICSharpCode.XmlEditor.XmlEditorOptionsPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sd="http://icsharpcode.net/sharpdevelop/core"
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop"

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlEditorOptionsPanel.xaml.cs

@ -14,7 +14,7 @@ using System.Windows.Shapes; @@ -14,7 +14,7 @@ using System.Windows.Shapes;
using ICSharpCode.SharpDevelop;
using ICSharpCode.XmlEditor;
namespace ICSharpCode.XmlEditor.Gui.Dialogs
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Interaction logic for XmlEditorOptionsPanel.xaml

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlSchemasPanel.xaml

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<UserControl x:Class="ICSharpCode.XmlEditor.Gui.Dialogs.XmlSchemasPanel"
<UserControl x:Class="ICSharpCode.XmlEditor.XmlSchemasPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sd="http://icsharpcode.net/sharpdevelop/core"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/Dialogs/XmlSchemasPanel.xaml.cs

@ -10,7 +10,7 @@ using ICSharpCode.SharpDevelop; @@ -10,7 +10,7 @@ using ICSharpCode.SharpDevelop;
using ICSharpCode.XmlEditor;
using Microsoft.Win32;
namespace ICSharpCode.XmlEditor.Gui.Dialogs
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Interaction logic for XmlSchemasPanel.xaml

3
src/AddIns/BackendBindings/XmlBinding/Src/Gui/XPathQueryControl.cs

@ -5,7 +5,6 @@ @@ -5,7 +5,6 @@
// <version>$Revision: -1 $</version>
// </file>
using ICSharpCode.XmlEditor.Gui;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
@ -13,10 +12,10 @@ using System.Threading; @@ -13,10 +12,10 @@ using System.Threading;
using System.Windows.Forms;
using System.Xml;
using System.Xml.XPath;
using ICSharpCode.Core;
using ICSharpCode.Core.WinForms;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.DefaultEditor.Gui.Editor;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.SharpDevelop.Gui;

2
src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlDisplayBinding.cs

@ -14,7 +14,7 @@ using ICSharpCode.SharpDevelop; @@ -14,7 +14,7 @@ using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.XmlEditor;
namespace ICSharpCode.XmlEditor.Gui
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Display binding for the xml editor.

1
src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlTreeEditor.cs

@ -11,7 +11,6 @@ using System.Collections.Generic; @@ -11,7 +11,6 @@ using System.Collections.Generic;
using System.Net;
using System.Xml;
using ICSharpCode.Core;
using ICSharpCode.XmlEditor.Parser;
namespace ICSharpCode.XmlEditor
{

1
src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlTreeView.cs

@ -14,7 +14,6 @@ using ICSharpCode.Core.WinForms; @@ -14,7 +14,6 @@ using ICSharpCode.Core.WinForms;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.XmlEditor.Gui;
using System.Xml;
namespace ICSharpCode.XmlEditor

4
src/AddIns/BackendBindings/XmlBinding/Src/Gui/XmlView.cs

@ -20,10 +20,8 @@ using ICSharpCode.Core; @@ -20,10 +20,8 @@ using ICSharpCode.Core;
using ICSharpCode.SharpDevelop;
using ICSharpCode.SharpDevelop.Editor;
using ICSharpCode.SharpDevelop.Gui;
using ICSharpCode.XmlEditor.Gui;
using ICSharpCode.XmlEditor.Parser;
namespace ICSharpCode.XmlEditor.Gui
namespace ICSharpCode.XmlEditor
{
public class XmlView
{

4
src/AddIns/BackendBindings/XmlBinding/Src/Parser/Parser.cs

@ -5,13 +5,11 @@ @@ -5,13 +5,11 @@
// <version>$Revision: -1 $</version>
// </file>
using ICSharpCode.XmlEditor.Gui;
using System;
using ICSharpCode.SharpDevelop.Dom;
using ICSharpCode.SharpDevelop.Project;
using ICSharpCode.XmlEditor;
namespace ICSharpCode.XmlEditor.Parser
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Parser that does nothing except return empty compilation unit

2
src/AddIns/BackendBindings/XmlBinding/Src/Parser/QualifiedName.cs

@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
using System;
using System.Xml;
namespace ICSharpCode.XmlEditor.Parser
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// An <see cref="XmlQualifiedName"/> with the namespace prefix.

2
src/AddIns/BackendBindings/XmlBinding/Src/Parser/QualifiedNameCollection.cs

@ -11,7 +11,7 @@ using System.Collections.Generic; @@ -11,7 +11,7 @@ using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
namespace ICSharpCode.XmlEditor.Parser
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// A collection that stores <see cref='QualifiedName'/> objects.

2
src/AddIns/BackendBindings/XmlBinding/Src/Parser/XmlElementPath.cs

@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
using System;
using System.Text;
namespace ICSharpCode.XmlEditor.Parser
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Represents the path to an xml element starting from the root of the

2
src/AddIns/BackendBindings/XmlBinding/Src/Parser/XmlParser.cs

@ -13,7 +13,7 @@ using System.Text; @@ -13,7 +13,7 @@ using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
namespace ICSharpCode.XmlEditor.Parser
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Utility class that contains xml parsing routines used to determine

1
src/AddIns/BackendBindings/XmlBinding/Src/StylesheetAssignedCondition.cs

@ -5,7 +5,6 @@ @@ -5,7 +5,6 @@
// <version>$Revision: -1 $</version>
// </file>
using ICSharpCode.XmlEditor.Gui;
using System;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Gui;

Loading…
Cancel
Save