Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update the way copyrights are displayed #11

Merged
merged 1 commit into from
Mar 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
<!--
-- Copyright (c) 2020, Arm Limited, All Rights Reserved
-- Copyright 2020 Contributors to the Parsec project.
-- SPDX-License-Identifier: Apache-2.0
--
-- Licensed under the Apache License, Version 2.0 (the "License"); you may
-- not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--->
# Contributing to `parsec-client-rust`

@@ -26,3 +14,4 @@ Contributions to Parsec need to follow the process below.
Author: Full Name <email address>
Signed-off-by: Full Name <email address>
```
* The files of this project use a copyright notice referring to "Contributors to the Parsec project". The contributors are specified in the [`CONTRIBUTORS.md`](https://github.com/parallaxsecond/parsec/blob/master/CONTRIBUTORS.md) file in the `parallaxsecond/parsec` repository. If you want to, please make a pull-request in that repository to include your name or your organization.
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
<!--
-- Copyright (c) 2020, Arm Limited, All Rights Reserved
-- Copyright 2020 Contributors to the Parsec project.
-- SPDX-License-Identifier: Apache-2.0
--
-- Licensed under the Apache License, Version 2.0 (the "License"); you may
-- not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--->
# Parsec Rust Client

@@ -31,5 +19,5 @@ This project uses the following third party crates:

## Contributing

Please check the [Contributing](CONTRIBUTING.md) to know more about the contribution process.
Please check the [Contributing](CONTRIBUTING.md) to know more about the contribution process. You can see current contributors [here](https://github.com/parallaxsecond/parsec/blob/master/CONTRIBUTORS.md).

14 changes: 1 addition & 13 deletions src/auth.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Copyright (c) 2020, Arm Limited, All Rights Reserved
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Client app authentication data
use parsec_interface::requests::{request::RequestAuth, AuthType};

14 changes: 1 addition & 13 deletions src/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Copyright (c) 2020, Arm Limited, All Rights Reserved
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Client library for integration with the Parsec service

mod operation_handler;
14 changes: 1 addition & 13 deletions src/core/operation_handler.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Copyright (c) 2020, Arm Limited, All Rights Reserved
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(dead_code)]

use super::request_handler::RequestHandler;
14 changes: 1 addition & 13 deletions src/core/request_handler.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Copyright (c) 2020, Arm Limited, All Rights Reserved
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(dead_code)]

use crate::error::{ClientErrorKind, Error, Result};
14 changes: 1 addition & 13 deletions src/error.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Copyright (c) 2020, Arm Limited, All Rights Reserved
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Error types specific to the Parsec client
use parsec_interface::requests::ResponseStatus;

14 changes: 1 addition & 13 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Copyright (c) 2020, Arm Limited, All Rights Reserved
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Client library for integration with the Parsec service
#![deny(
nonstandard_style,
16 changes: 1 addition & 15 deletions tests/ci.sh
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
#!/usr/bin/env bash

# ------------------------------------------------------------------------------
# Copyright (c) 2020, Arm Limited, All Rights Reserved
# Copyright 2020 Contributors to the Parsec project.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ------------------------------------------------------------------------------

# Continuous Integration test script, executed by GitHub Actions on x86 and
# Travis CI on Arm64.