Skip to content

Commit d1cb2e4

Browse files
committed
clear code base library
1 parent 355d0d7 commit d1cb2e4

17 files changed

+6
-61
lines changed

CADPythonShell/CADPythonShell.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" ?>
2-
<NavisPythonShell>
2+
<CADPythonShell>
33
<SearchPaths>
44
<!-- a list of paths to add to the engines search path -->
55
</SearchPaths>
@@ -11,4 +11,4 @@
1111
</Commands>
1212
<InitScript src="init.py"/>
1313
<StartupScript src="startup.py"/>
14-
</NavisPythonShell>
14+
</CADPythonShell>

CADPythonShell/ConfigureCommandsForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ private void btnCommandMoveDown_Click(object sender, EventArgs e)
211211

212212

213213
/// <summary>
214-
/// Save changes to NavisPythonShell.xml and close Dialog.
214+
/// Save changes to CADPythonShell.xml and close Dialog.
215215
/// </summary>
216216
private void btnCommandSave_Click(object sender, EventArgs e)
217217
{

CADPythonShell/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following

CADRuntime/INpsConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ public interface IRpsConfig
88
/// Returns a list of string variables that the Runtime will add to
99
/// the scripts scope under "__vars__".
1010
///
11-
/// In NavisPythonShell, these are read from the CADPythonShell.xml file.
11+
/// In CADPythonShell, these are read from the CADPythonShell.xml file.
1212
/// </summary>
1313
IDictionary<string, string> GetVariables();
1414

1515
/// <summary>
1616
/// Returns a list of paths to add to the python engine search paths.
1717
///
18-
/// In NavisPythonShell, these are read from the CADPythonShell.xml file.
18+
/// In CADPythonShell, these are read from the CADPythonShell.xml file.
1919
/// </summary>
2020
IEnumerable<string> GetSearchPaths();
2121
}

CADRuntime/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

54
// General Information about an assembly is controlled through the following

CADRuntime/ScriptOutput.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PythonConsoleControl/CommandLineHistory.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
using System;
44
using System.Collections.Generic;
5-
using System.Linq;
6-
using System.Text;
75

86
namespace PythonConsoleControl
97
{

PythonConsoleControl/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
21
using System.Reflection;
3-
using System.Runtime.CompilerServices;
42
using System.Runtime.InteropServices;
53

64
// General Information about an assembly is controlled through the following

PythonConsoleControl/PythonCompletionData.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
// Copyright (c) 2010 Joe Moorhouse
22

33
using System;
4-
using System.Collections.Generic;
5-
using System.Linq;
6-
using System.Text;
74
using ICSharpCode.AvalonEdit.CodeCompletion;
85
using ICSharpCode.AvalonEdit.Document;
96
using ICSharpCode.AvalonEdit.Editing;
107
using Microsoft.Scripting.Hosting.Shell;
11-
using Microsoft.Scripting;
128

139
namespace PythonConsoleControl
1410
{

PythonConsoleControl/PythonConsoleCompletionDataProvider.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
using System.Linq;
66
using System.Text;
77
using ICSharpCode.AvalonEdit.CodeCompletion;
8-
using ICSharpCode.AvalonEdit;
9-
using ICSharpCode.AvalonEdit.Editing;
10-
using ICSharpCode.AvalonEdit.Document;
118
using Microsoft.Scripting.Hosting.Shell;
12-
using Microsoft.Scripting.Hosting;
139
using Microsoft.Scripting;
1410
using System.Threading;
1511
using System.Reflection;

0 commit comments

Comments
 (0)