This is an automated email from the ASF dual-hosted git repository.
matthiasblaesing pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git
from 79cc0034d4 Merge pull request #6070 from neilcsmith-net/flat-tab-cards
new a920c5f039 Ensure common project actions are available in Rust projects
new b8557c3f1f Ensure all Cargo commands can actually be run and don't
fail with MissingResourceException
new 307594e2ff Ensure common project actions are available in Rust
projects (2)
new c91fb3d010 Merge pull request #6086 from
matthiasblaesing/rust_common_project_actions
The 8721 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../modules/rust/cargo/api/CargoCommand.java | 17 +-
rust/rust.project/nbproject/project.xml | 18 +
.../netbeans/modules/rust/project/RustProject.java | 1 +
.../rust/project/RustProjectActionProvider.java | 87 ++---
.../rust/project/RustProjectOperations.java | 403 +++++++++++++++++++++
.../org/netbeans/modules/rust/project/layer.xml | 46 ++-
.../rust/project/ui/RustProjectRootNode.java | 39 ++
.../project/ui/actions/CargoExecutionCommand.java | 69 ++++
.../modules/rust/project/ui/actions/Command.java | 95 +++++
.../rust/project/ui/actions/CopyCommand.java | 46 +++
.../rust/project/ui/actions/DeleteCommand.java | 46 +++
.../rust/project/ui/actions/GlobalCommand.java | 42 +++
.../rust/project/ui/actions/MoveCommand.java | 46 +++
.../rust/project/ui/actions/RenameCommand.java | 46 +++
.../rust/project/RustProjectOperationsTest.java | 95 +++++
.../project/data/Reference.Cargo.DottedName.toml | 7 +
.../modules/rust/project/data/Reference.Cargo.toml | 8 +
.../rust/project/data/Test.Cargo.DottedName.toml | 7 +
.../data/Test.Cargo.LiteralMultilineString.toml | 9 +
.../project/data/Test.Cargo.LiteralString.toml | 8 +
.../project/data/Test.Cargo.MultilineString.toml | 9 +
.../rust/project/data/Test.Cargo.String.toml | 8 +
22 files changed, 1098 insertions(+), 54 deletions(-)
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/RustProjectOperations.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/CargoExecutionCommand.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/Command.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/CopyCommand.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/DeleteCommand.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/GlobalCommand.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/MoveCommand.java
create mode 100644
rust/rust.project/src/org/netbeans/modules/rust/project/ui/actions/RenameCommand.java
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/RustProjectOperationsTest.java
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Reference.Cargo.DottedName.toml
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Reference.Cargo.toml
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Test.Cargo.DottedName.toml
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Test.Cargo.LiteralMultilineString.toml
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Test.Cargo.LiteralString.toml
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Test.Cargo.MultilineString.toml
create mode 100644
rust/rust.project/test/unit/src/org/netbeans/modules/rust/project/data/Test.Cargo.String.toml
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists