Browse Source

move /AddIns/DefaultTextEditor/CodeCompletion to /SharpDevelop/ViewContent/TextEditor/CodeCompletion;

move all SearchAndReplace add-in paths to /AddIns/SearchAndReplace;
move /SharpDevelop/ViewContent/DefaultTextEditor/ToolTips to /SharpDevelop/ViewContent/TextEditor/ToolTips
newNRvisualizers
Siegfried Pammer 14 years ago
parent
commit
00e70228a1
  1. 2
      src/AddIns/BackendBindings/Boo/BooBinding/Project/BooBinding.addin
  2. 2
      src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin
  3. 2
      src/AddIns/BackendBindings/Python/PythonBinding/Project/PythonBinding.addin
  4. 2
      src/AddIns/BackendBindings/Ruby/RubyBinding/Project/RubyBinding.addin
  5. 2
      src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.addin
  6. 2
      src/AddIns/BackendBindings/XamlBinding/XamlBinding/XamlBinding.addin
  7. 2
      src/AddIns/DisplayBindings/AvalonEdit.AddIn/Src/CodeEditor.cs
  8. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/DefaultXmlFileExtensions.cs
  9. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.addin
  10. 4
      src/AddIns/Misc/ResourceToolkit/Project/Hornung.ResourceToolkit.addin
  11. 2
      src/AddIns/Misc/SearchAndReplace/Project/Engine/SearchReplaceUtilities.cs
  12. 4
      src/AddIns/Misc/SearchAndReplace/Project/SearchAndReplace.addin
  13. 7
      src/Main/Base/Project/ICSharpCode.SharpDevelop.addin
  14. 2
      src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionBinding.cs
  15. 2
      src/Main/Base/Project/Src/Editor/ToolTipService.cs

2
src/AddIns/BackendBindings/Boo/BooBinding/Project/BooBinding.addin

@ -101,7 +101,7 @@ @@ -101,7 +101,7 @@
extensions=".boo" />
</Path>
<Path name = "/AddIns/DefaultTextEditor/CodeCompletion">
<Path name = "/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding id = "Boo" extensions = ".boo" class = "Grunwald.BooBinding.CodeCompletion.CompletionBinding"/>
</Path>

2
src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin

@ -54,7 +54,7 @@ @@ -54,7 +54,7 @@
class = "CSharpBinding.Parser.TParser"/>
</Path>
<Path name = "/AddIns/DefaultTextEditor/CodeCompletion">
<Path name = "/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding id = "CSharp" extensions = ".cs" class = "CSharpBinding.CSharpCompletionBinding"/>
</Path>

2
src/AddIns/BackendBindings/Python/PythonBinding/Project/PythonBinding.addin

@ -111,7 +111,7 @@ @@ -111,7 +111,7 @@
</Path>
<!-- The Python code completion binding -->
<Path name="/AddIns/DefaultTextEditor/CodeCompletion">
<Path name="/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding id="Python"
extensions=".py"
class="ICSharpCode.PythonBinding.PythonCodeCompletionBinding"/>

2
src/AddIns/BackendBindings/Ruby/RubyBinding/Project/RubyBinding.addin

@ -111,7 +111,7 @@ @@ -111,7 +111,7 @@
</Path>
<!-- The Ruby code completion binding -->
<!-- <Path name = "/AddIns/DefaultTextEditor/CodeCompletion">
<!-- <Path name = "/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding id="Ruby"
extensions=".rb"
class="ICSharpCode.RubyBinding.RubyCodeCompletionBinding"/>

2
src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.addin

@ -96,7 +96,7 @@ @@ -96,7 +96,7 @@
<Include id = "AllManaged" path="/SharpDevelop/BackendBindings/ProjectOptions/AllManaged"/>
</Path>
<Path name = "/AddIns/DefaultTextEditor/CodeCompletion">
<Path name = "/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding id = "VBNet" extensions = ".vb" class = "ICSharpCode.VBNetBinding.VBNetCompletionBinding"/>
</Path>

2
src/AddIns/BackendBindings/XamlBinding/XamlBinding/XamlBinding.addin

@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
class = "ICSharpCode.XamlBinding.XamlParser"/>
</Path>
<Path name = "/AddIns/DefaultTextEditor/CodeCompletion">
<Path name = "/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding id = "XAML" extensions = ".xaml" class = "ICSharpCode.XamlBinding.XamlCodeCompletionBinding"/>
</Path>

2
src/AddIns/DisplayBindings/AvalonEdit.AddIn/Src/CodeEditor.cs

@ -382,7 +382,7 @@ namespace ICSharpCode.AvalonEdit.AddIn @@ -382,7 +382,7 @@ namespace ICSharpCode.AvalonEdit.AddIn
public static ReadOnlyCollection<ICodeCompletionBinding> CodeCompletionBindings {
get {
if (codeCompletionBindings == null) {
codeCompletionBindings = AddInTree.BuildItems<ICodeCompletionBinding>("/AddIns/DefaultTextEditor/CodeCompletion", null, false).AsReadOnly();
codeCompletionBindings = AddInTree.BuildItems<ICodeCompletionBinding>("/SharpDevelop/ViewContent/TextEditor/CodeCompletion", null, false).AsReadOnly();
}
return codeCompletionBindings;
}

2
src/AddIns/DisplayBindings/XmlEditor/Project/Src/DefaultXmlFileExtensions.cs

@ -11,7 +11,7 @@ namespace ICSharpCode.XmlEditor @@ -11,7 +11,7 @@ namespace ICSharpCode.XmlEditor
{
public DefaultXmlFileExtensions()
{
AddInTreeNode node = AddInTree.GetTreeNode("/AddIns/DefaultTextEditor/CodeCompletion", false);
AddInTreeNode node = AddInTree.GetTreeNode("/SharpDevelop/ViewContent/TextEditor/CodeCompletion", false);
GetXmlFileExtensions(node);
}

2
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.addin

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
<Class id="XmlFormatter" class="ICSharpCode.XmlEditor.XmlFormattingStrategy"/>
</Path>
<Path name="/AddIns/DefaultTextEditor/CodeCompletion">
<Path name="/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding
id="Xml"
extensions=".xml;.xsl;.xslt;.xsd;.manifest;.config;.addin;.xshd;.wxs;.wxi;.wxl;.proj;.csproj;.vbproj;.ilproj;.build;.xfrm;.targets;.xpt;.xft;.map;.wsdl;.disco;.nuspec;.booproj;.fsproj;.pyproj;.rbproj;.vcxproj;.wixproj"

4
src/AddIns/Misc/ResourceToolkit/Project/Hornung.ResourceToolkit.addin

@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
<!-- Code completion -->
<Path name = "/AddIns/DefaultTextEditor/CodeCompletion">
<Path name = "/SharpDevelop/ViewContent/TextEditor/CodeCompletion">
<CodeCompletionBinding
id = "CSharpResources"
extensions = ".cs"
@ -108,7 +108,7 @@ @@ -108,7 +108,7 @@
<!-- Tooltips -->
<Path name="/SharpDevelop/ViewContent/DefaultTextEditor/ToolTips">
<Path name="/SharpDevelop/ViewContent/TextEditor/ToolTips">
<Class id="ResourceToolTips" class="Hornung.ResourceToolkit.ToolTips.ResourceToolTipProvider" insertafter="DefaultDebuggerToolTips"/>
</Path>

2
src/AddIns/Misc/SearchAndReplace/Project/Engine/SearchReplaceUtilities.cs

@ -97,7 +97,7 @@ namespace SearchAndReplace @@ -97,7 +97,7 @@ namespace SearchAndReplace
return false;
if (excludedFileExtensions == null) {
excludedFileExtensions = AddInTree.BuildItems<string>("/AddIns/DefaultTextEditor/Search/ExcludedFileExtensions", null, false);
excludedFileExtensions = AddInTree.BuildItems<string>("/AddIns/SearchAndReplace/ExcludedFileExtensions", null, false);
}
string extension = Path.GetExtension(fileName);
if (extension != null) {

4
src/AddIns/Misc/SearchAndReplace/Project/SearchAndReplace.addin

@ -37,7 +37,7 @@ @@ -37,7 +37,7 @@
class = "SearchAndReplace.Replace"/>
</Path>
<Path name = "/SharpDevelop/DefaultEditor/SearchAndReplace/WildcardHelpPath">
<Path name = "/AddIns/SearchAndReplace/WildcardHelpPath">
<MenuItem id = "*Char"
label = "* Zero or more of any character" />
<MenuItem id = "?Char"
@ -65,7 +65,7 @@ @@ -65,7 +65,7 @@
<!-- File extensions that should not be searched since they are not opened
in a text editor -->
<Path name="/AddIns/DefaultTextEditor/Search/ExcludedFileExtensions">
<Path name="/AddIns/SearchAndReplace/ExcludedFileExtensions">
<String text=".resx"/>
<String text=".resources"/>
<String text=".exe"/>

7
src/Main/Base/Project/ICSharpCode.SharpDevelop.addin

@ -1807,7 +1807,9 @@ @@ -1807,7 +1807,9 @@
</Path>
<Path name = "/SharpDevelop/ViewContent/TextEditor/EntityContextMenu">
<MenuItem id = "FindReferences"
label = "${res:SharpDevelop.Refactoring.FindReferencesCommand}"
class = "ICSharpCode.SharpDevelop.Refactoring.FindLocalVariableReferencesCommand"/>
</Path>
<Path name = "/SharpDevelop/ViewContent/DefaultTextEditor/Refactoring/Common">
@ -1836,7 +1838,6 @@ @@ -1836,7 +1838,6 @@
</Path>
<Path name = "/SharpDevelop/ViewContent/TextEditor/ContextMenu">
<MenuItem id = "Refactoring" type = "Builder" class = "ICSharpCode.SharpDevelop.Refactoring.RefactoringMenuBuilder"/>
<Include id = "Cut" item = "/SharpDevelop/Workbench/MainMenu/Edit/Cut"/>
<Include id = "Copy" item = "/SharpDevelop/Workbench/MainMenu/Edit/Copy"/>
<Include id = "Paste" item = "/SharpDevelop/Workbench/MainMenu/Edit/Paste"/>
@ -1869,7 +1870,7 @@ @@ -1869,7 +1870,7 @@
class = "ICSharpCode.SharpDevelop.Editor.Commands.IndentSelection" />
</Path>
<Path name = "/SharpDevelop/ViewContent/DefaultTextEditor/ToolTips">
<Path name = "/SharpDevelop/ViewContent/TextEditor/ToolTips">
<Class id = "DefaultDebuggerToolTips" class = "ICSharpCode.SharpDevelop.Debugging.DebuggerTextAreaToolTipProvider"/>
</Path>

2
src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionBinding.cs

@ -54,7 +54,7 @@ namespace ICSharpCode.SharpDevelop.Editor.CodeCompletion @@ -54,7 +54,7 @@ namespace ICSharpCode.SharpDevelop.Editor.CodeCompletion
/// List of semicolon-separated entries of the file extensions handled by the binding.
/// If no extensions attribute is specified, the binding is activated in all files.
/// </attribute>
/// <usage>Only in /AddIns/DefaultTextEditor/CodeCompletion</usage>
/// <usage>Only in /SharpDevelop/ViewContent/TextEditor/CodeCompletion</usage>
/// <returns>
/// The ICodeCompletionBinding class specified with the 'class' attribute, or a
/// wrapper that lazy-loads the actual class when it is used in a file with the specified

2
src/Main/Base/Project/Src/Editor/ToolTipService.cs

@ -12,7 +12,7 @@ namespace ICSharpCode.SharpDevelop.Editor @@ -12,7 +12,7 @@ namespace ICSharpCode.SharpDevelop.Editor
/// </summary>
public static class ToolTipRequestService
{
const string ToolTipProviderAddInTreePath = "/SharpDevelop/ViewContent/DefaultTextEditor/ToolTips";
const string ToolTipProviderAddInTreePath = "/SharpDevelop/ViewContent/TextEditor/ToolTips";
/// <summary>
/// This event occurs on a tool tip request,

Loading…
Cancel
Save