From 51d16e2b28f4732cf3fb97d6a9aa368f0899a1cd Mon Sep 17 00:00:00 2001 From: Roni Riska Date: Wed, 27 Nov 2019 10:40:37 +0200 Subject: [PATCH] Add new license claim Adding extra line that src files are part of RIC platform project. Change-Id: I746145b9f1f359740d983ff18f18fb3a575c27b0 Signed-off-by: Roni Riska --- .gitignore | 5 ++++- docs/index.rst | 5 +++++ docs/overview.rst | 4 ++++ docs/release-notes.rst | 5 +++++ mdclogpy/README.md | 2 ++ mdclogpy/mdclogpy/Logger.py | 4 ++++ mdclogpy/mdclogpy/__init__.py | 5 ++++- mdclogpy/setup.py | 5 ++++- mdclogpy/tox.ini | 4 ++++ mdclogpy/tst/__init__.py | 3 +++ mdclogpy/tst/mdclogtestutils.py | 5 ++++- mdclogpy/tst/test_Logger.py | 5 ++++- mdclogpy/tst/test_mdclogpy.py | 5 ++++- 13 files changed, 51 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 4fade8d..4627f73 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,10 @@ # 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. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# # Compiled python modules. *.pyc diff --git a/docs/index.rst b/docs/index.rst index 1dbf07e..e77448b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,6 +24,11 @@ .. .. limitations under the License. .. +.. This source code is part of the near-RT RIC (RAN Intelligent Controller) +.. +.. platform project (RICP). +.. + Welcome to O-RAN SC pylog Documentation diff --git a/docs/overview.rst b/docs/overview.rst index d55fd0d..b5ed14b 100644 --- a/docs/overview.rst +++ b/docs/overview.rst @@ -24,6 +24,10 @@ .. .. limitations under the License. .. +.. This source code is part of the near-RT RIC (RAN Intelligent Controller) +.. +.. platform project (RICP). +.. pylog Overview diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 511a1bc..5f88ea6 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -24,6 +24,11 @@ .. .. limitations under the License. .. +.. This source code is part of the near-RT RIC (RAN Intelligent Controller) +.. +.. platform project (RICP). +.. + Release-Notes ============= diff --git a/mdclogpy/README.md b/mdclogpy/README.md index 10009c3..1a05a07 100644 --- a/mdclogpy/README.md +++ b/mdclogpy/README.md @@ -94,6 +94,8 @@ 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. +This source code is part of the near-RT RIC (RAN Intelligent Controller) +platform project (RICP). Unit testing ------------ diff --git a/mdclogpy/mdclogpy/Logger.py b/mdclogpy/mdclogpy/Logger.py index 57ab7b7..43c48e4 100644 --- a/mdclogpy/mdclogpy/Logger.py +++ b/mdclogpy/mdclogpy/Logger.py @@ -12,6 +12,10 @@ # 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. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# """Structured logging library with Mapped Diagnostic Context diff --git a/mdclogpy/mdclogpy/__init__.py b/mdclogpy/mdclogpy/__init__.py index 4afb9a3..b48a450 100644 --- a/mdclogpy/mdclogpy/__init__.py +++ b/mdclogpy/mdclogpy/__init__.py @@ -12,7 +12,10 @@ # 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. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# """Structured logging library with Mapped Diagnostic Context Outputs the log entries to standard out in structured format, json currently. diff --git a/mdclogpy/setup.py b/mdclogpy/setup.py index f3430a7..896242d 100644 --- a/mdclogpy/setup.py +++ b/mdclogpy/setup.py @@ -12,7 +12,10 @@ # 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. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# """Setup file for mdclogpy library.""" from setuptools import setup diff --git a/mdclogpy/tox.ini b/mdclogpy/tox.ini index c027f2f..625bb6b 100644 --- a/mdclogpy/tox.ini +++ b/mdclogpy/tox.ini @@ -13,6 +13,10 @@ # 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. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# # ================================================================================== [tox] envlist = py37 diff --git a/mdclogpy/tst/__init__.py b/mdclogpy/tst/__init__.py index f928659..47fea7c 100644 --- a/mdclogpy/tst/__init__.py +++ b/mdclogpy/tst/__init__.py @@ -12,3 +12,6 @@ # 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. +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). diff --git a/mdclogpy/tst/mdclogtestutils.py b/mdclogpy/tst/mdclogtestutils.py index 4fb362c..d22ee3b 100644 --- a/mdclogpy/tst/mdclogtestutils.py +++ b/mdclogpy/tst/mdclogtestutils.py @@ -12,7 +12,10 @@ # 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. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# """Helper functions for mdclogpy unit tests.""" import json diff --git a/mdclogpy/tst/test_Logger.py b/mdclogpy/tst/test_Logger.py index d40b9ba..12a2543 100644 --- a/mdclogpy/tst/test_Logger.py +++ b/mdclogpy/tst/test_Logger.py @@ -12,7 +12,10 @@ # 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. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# """Unit tests for Logger.py""" import unittest from unittest.mock import patch diff --git a/mdclogpy/tst/test_mdclogpy.py b/mdclogpy/tst/test_mdclogpy.py index 3fb0455..ad7fd3a 100644 --- a/mdclogpy/tst/test_mdclogpy.py +++ b/mdclogpy/tst/test_mdclogpy.py @@ -12,7 +12,10 @@ # 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. - +# +# This source code is part of the near-RT RIC (RAN Intelligent Controller) +# platform project (RICP). +# """Unit tests for mdclogpy root logger""" import unittest from unittest.mock import patch -- 2.16.6