Skip to content

Commit

Permalink
Merge pull request #45 from Antiun/pr-website_legal_page
Browse files Browse the repository at this point in the history
[ADD] website_legal_page addon
  • Loading branch information
pedrobaeza committed Aug 8, 2015
2 parents e942ebe + a885025 commit 2a93ac2
Show file tree
Hide file tree
Showing 10 changed files with 1,368 additions and 0 deletions.
97 changes: 97 additions & 0 deletions website_legal_page/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3

Website legal page
==================

This module was written to provide common legal pages needed in any website:

* **Legal advice**: Website propietary and disclaimers
* **Terms of use**: Which services website offers and legal restrictions
applied to them
* **Privacy policy**: Company privacy policy applied to user data collected
through the website


Usage
=====

Website editor can change easily any text of these pages using website builder


Known issues / Roadmap
======================

Disclaimer
----------

These legal pages are templates.

**You must edit the templates and adapt them to your particular case**

The provided agreements are for **informational purposes only** and do not
constitute legal advice.

Authors, contributors and maintainer are not law firms and are not providing legal advice.
All information (including agreements, forms and documents) available in this
addon are **provided without any warranty**, express or implied, including as to
their legal effect and completeness. The information **should be used as a
guide** and modified to meet your own individual needs and the laws of your
state. Your use of any information or forms is at your own risk.

Authors, contributors, maintainer and any of its employees, contractors, or
attorneys who participated in development of this addon **expressly disclaim any
warranty**: they are not creating or entering into any Attorney-Client
relationship by providing information to you.


Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/website/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/website/issues/new?body=module:%20website_legal_page%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.


Credits
=======

Templates
---------

Templates are based on legal templates publicy provided by [termsfeed.com](https://termsfeed.com):

* [Privacy policy](https://media.termsfeed.com/pdf/privacy-policy-template.pdf)
* [Terms of use](https://media.termsfeed.com/pdf/terms-of-use-template.pdf)

Icon
----

Icon based on ```johnny-automatic-scales-of-justice.svg``` from
[Openclipart](https://openclipart.org/detail/26849/scales-of-justice)

Thanks to [johnny_automatic](https://openclipart.org/user-detail/johnny_automatic)


Contributors
------------

* Rafael Blasco <[email protected]>
* Antonio Espinosa <[email protected]>
* Igor Pastor <[email protected]>

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

To contribute to this module, please visit http://odoo-community.org.
3 changes: 3 additions & 0 deletions website_legal_page/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
# Python source code encoding : https://www.python.org/dev/peps/pep-0263/
##############################################################################
42 changes: 42 additions & 0 deletions website_legal_page/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
# Python source code encoding : https://www.python.org/dev/peps/pep-0263/
##############################################################################
#
# OpenERP, Odoo Source Management Solution
# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com)
# Antonio Espinosa <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': "Website legal page",
'category': 'Website',
'version': '1.0',
'depends': [
'website',
],
'data': [
'views/website_legal.xml',
'views/website_privacy.xml',
'views/website_terms.xml',
],
'author': 'Antiun Ingeniería S.L., '
'Odoo Community Association (OCA)',
'website': 'http://www.antiun.com',
'license': 'AGPL-3',
'demo': [],
'test': [],
'installable': True,
}
Loading

0 comments on commit 2a93ac2

Please sign in to comment.