From 253da8a8654a98c177dd1a41561fefc7f6218ad0 Mon Sep 17 00:00:00 2001 From: Pawel Solyga Date: Fri, 3 Apr 2009 17:06:27 +0000 Subject: [PATCH] Add license file and docstring to __init__.py files across different modules within Melange. Patch by: Pawel Solyga Reviewed by: to-be-reviewed --- app/soc/cache/__init__.py | 16 ++++++++++++++++ app/soc/logic/__init__.py | 16 ++++++++++++++++ app/soc/logic/helper/__init__.py | 16 ++++++++++++++++ app/soc/logic/models/__init__.py | 16 ++++++++++++++++ app/soc/views/__init__.py | 16 ++++++++++++++++ app/soc/views/helper/__init__.py | 16 ++++++++++++++++ app/soc/views/models/__init__.py | 16 ++++++++++++++++ app/soc/views/sitemap/__init__.py | 16 ++++++++++++++++ 8 files changed, 128 insertions(+) diff --git a/app/soc/cache/__init__.py b/app/soc/cache/__init__.py index e69de29b..4aeb648e 100644 --- a/app/soc/cache/__init__.py +++ b/app/soc/cache/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains caching submodules.""" \ No newline at end of file diff --git a/app/soc/logic/__init__.py b/app/soc/logic/__init__.py index e69de29b..01784409 100644 --- a/app/soc/logic/__init__.py +++ b/app/soc/logic/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains Melange logic.""" \ No newline at end of file diff --git a/app/soc/logic/helper/__init__.py b/app/soc/logic/helper/__init__.py index e69de29b..39d58b48 100644 --- a/app/soc/logic/helper/__init__.py +++ b/app/soc/logic/helper/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains Melange logic helper modules.""" \ No newline at end of file diff --git a/app/soc/logic/models/__init__.py b/app/soc/logic/models/__init__.py index e69de29b..7438d425 100644 --- a/app/soc/logic/models/__init__.py +++ b/app/soc/logic/models/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains Melange logic for particular models.""" \ No newline at end of file diff --git a/app/soc/views/__init__.py b/app/soc/views/__init__.py index e69de29b..f1edfe4a 100644 --- a/app/soc/views/__init__.py +++ b/app/soc/views/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains Melange views.""" \ No newline at end of file diff --git a/app/soc/views/helper/__init__.py b/app/soc/views/helper/__init__.py index e69de29b..6a75e4c9 100644 --- a/app/soc/views/helper/__init__.py +++ b/app/soc/views/helper/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains views helper modules.""" \ No newline at end of file diff --git a/app/soc/views/models/__init__.py b/app/soc/views/models/__init__.py index e69de29b..08755894 100644 --- a/app/soc/views/models/__init__.py +++ b/app/soc/views/models/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains views for particular models.""" \ No newline at end of file diff --git a/app/soc/views/sitemap/__init__.py b/app/soc/views/sitemap/__init__.py index e69de29b..79b8182d 100644 --- a/app/soc/views/sitemap/__init__.py +++ b/app/soc/views/sitemap/__init__.py @@ -0,0 +1,16 @@ +# +# Copyright 2008 the Melange authors. +# +# 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. + +"""This module contains sitemap and sidebar related submodules.""" \ No newline at end of file -- 2.11.4.GIT