You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by sh...@apache.org on 2022/01/14 21:54:55 UTC

[daffodil-vscode] branch main updated: Update project to be more consistent with naming conventions:

This is an automated email from the ASF dual-hosted git repository.

shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new b5185aa  Update project to be more consistent with naming conventions:
b5185aa is described below

commit b5185aa26fefd0c39b47957e84467959875dc348
Author: Shane Dell <sh...@gmail.com>
AuthorDate: Tue Dec 21 13:21:26 2021 -0500

    Update project to be more consistent with naming conventions:
    
    - Update project reference from "Apache Daffodil VSCode" to be "Apache Daffodil VSCode Extension"
    - Update files referencing "VSCode" to be "VS Code"
    
    Closes #24
    Closes #65
---
 .asf.yml                                                          | 2 +-
 LICENSE                                                           | 2 +-
 NOTICE                                                            | 2 +-
 README.md                                                         | 8 ++++----
 build/bin.LICENSE                                                 | 2 +-
 build/bin.NOTICE                                                  | 2 +-
 .../src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.asf.yml b/.asf.yml
index f73753b..e0489c6 100644
--- a/.asf.yml
+++ b/.asf.yml
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 github:
-  description: "Apache Daffodil VSCode"
+  description: "VS Code extension for Apache Daffodil"
   homepage: https://daffodil.apache.org/
   features:
     wiki:     true
diff --git a/LICENSE b/LICENSE
index 6686053..6847e58 100644
--- a/LICENSE
+++ b/LICENSE
@@ -204,7 +204,7 @@
 
 SUBCOMPONENTS:
 
-The Apache Daffodil VS Code Debug project contains subcomponents with separate copyright
+The Apache Daffodil VS Code Extension project contains subcomponents with separate copyright
 notices and license terms. Your use of the source code for these subcomponents
 is subject to the terms and conditions of the following licenses.
 
diff --git a/NOTICE b/NOTICE
index 05cdf3f..e935af9 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,4 +1,4 @@
-Apache Daffodil VSCode
+Apache Daffodil VS Code Extension
 Copyright 2021 The Apache Software Foundation
 
 This product includes software developed at
diff --git a/README.md b/README.md
index cbbae4a..0958980 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@
 
 ![Daffodil Debug](images/daffodil.jpg)
 
-# VS Code Daffodil Debug
+# Apache Daffodil VS Code Extension
 
 This is a VS Code extension which enables the interactive debugging of DFDL schema parsing using [Apache Daffodil](https://daffodil.apache.org/).
 
@@ -35,7 +35,7 @@ Until the extension is available in the [VS Code Extension Marketplace](https://
 ## Build VSIX and Debugger
 :exclamation:**NOT necessary if using prebuilt VSIX**:exclamation:
 
-:exclamation:**NOT necessary if running extension via VSCode without VSIX but a `yarn install` will be required**:exclamation:
+:exclamation:**NOT necessary if running extension via VS Code without VSIX but a `yarn install` will be required**:exclamation:
 
 Run full build
   ```bash
@@ -58,7 +58,7 @@ Run full build
 The debug server will automatically be ran by the extension unless `useExistingServer` is to set to `true` inside of `.vscode/launch.json`
 
 If you wish to ran the debug server manually the scripts to do so are at the following locations:
-* Debugging through VSCode with or without VSIX:
+* Debugging through VS Code with or without VSIX:
   * Linux = `/home/USERNAME/.local/share/daffodil-dap`
   * Mac = `/Users/USERNAME/Library/Application\ Support/daffodil-dap`
   * Windows = `C:\\Users\\USERNAME\\AppData\\Roaming\\daffodil-dap`
@@ -90,7 +90,7 @@ users@daffodil.apache.org mailing lists.  You can report bugs via
 
 ## License
 
-Apache Daffodil VSCode is licensed under the [Apache License, v2.0].
+Apache Daffodil VS Code Extension is licensed under the [Apache License, v2.0].
 
 [Apache License, v2.0]: https://www.apache.org/licenses/LICENSE-2.0
 [GitHub Issues]: https://github.com/apache/daffodil-vscode/issues
diff --git a/build/bin.LICENSE b/build/bin.LICENSE
index c91aee7..4c5c22a 100644
--- a/build/bin.LICENSE
+++ b/build/bin.LICENSE
@@ -204,7 +204,7 @@
 
   SUBCOMPONENTS:
 
-  The Apache Daffodil VS Code Debug project contains subcomponents with separate copyright
+  The Apache Daffodil VS Code Extension project contains subcomponents with separate copyright
   notices and license terms. Your use of the source code for these subcomponents
   is subject to the terms and conditions of the following licenses.
 
diff --git a/build/bin.NOTICE b/build/bin.NOTICE
index e2f43e8..095b752 100644
--- a/build/bin.NOTICE
+++ b/build/bin.NOTICE
@@ -1,4 +1,4 @@
-Apache Daffodil VSCode
+Apache Daffodil VS Code Extension
 Copyright 2021 The Apache Software Foundation
 
 This product includes software developed at
diff --git a/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala b/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
index bedb2e7..44e7d8c 100644
--- a/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
+++ b/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
@@ -733,7 +733,7 @@ object DAPodil extends IOApp {
 
   /** Our own capabilities data type that is a superset of java-debug, which doesn't have `supportsLoadedSourcesRequest`.
     *
-    * TODO: VSCode doesn't seem to notice supportsRestartRequest=true and sends Disconnect (+restart) requests instead
+    * TODO: VS Code doesn't seem to notice supportsRestartRequest=true and sends Disconnect (+restart) requests instead
     */
   case class Caps(
       supportsConfigurationDoneRequest: Boolean = true,