diff --git a/website_maintenance/README.rst b/website_maintenance/README.rst deleted file mode 100644 index 070421666..000000000 --- a/website_maintenance/README.rst +++ /dev/null @@ -1,48 +0,0 @@ -.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg - :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -Website Maintenance Page -======================== -* Website Maintenance Page module for Odoo 15. - -Installation -============ -- www.odoo.com/documentation/15.0/administration/install.html -- Install our custom addon - -License -------- -General Public License, Version 3 (AGPL v3). -(https://www.gnu.org/licenses/agpl-3.0-standalone.html) - -Company -------- -* `Cybrosys Techno Solutions `__ - -Credits -------- -* Developers: (V15) Sabeel B, - Contact: odoo@cybrosys.com - - -Contacts --------- -* Mail Contact : odoo@cybrosys.com - -Bug Tracker ------------ -Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. - -Maintainer -========== -.. image:: https://cybrosys.com/images/logo.png - :target: https://cybrosys.com - -This module is maintained by Cybrosys Technologies. - -For support and more information, please visit https://www.cybrosys.com - -Further information -=================== -HTML Description: ``__ diff --git a/website_maintenance/__init__.py b/website_maintenance/__init__.py deleted file mode 100644 index e17b87a7c..000000000 --- a/website_maintenance/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -from . import controllers -from . import models diff --git a/website_maintenance/__manifest__.py b/website_maintenance/__manifest__.py deleted file mode 100644 index a7ab67891..000000000 --- a/website_maintenance/__manifest__.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -{ - 'name': 'Website Maintenance Page', - 'version': '15.0.1.0.0', - 'category': 'Website', - 'summary': 'Shows maintenance page for public users', - 'description': 'The app allows users to redirect all website public ' - 'pages to maintenance pages', - 'author': 'Cybrosys Techno Solutions', - 'company': 'Cybrosys Techno Solutions', - 'maintainer': 'Cybrosys Techno Solutions', - 'website': 'https://www.cybrosys.com', - 'depends': ['website_sale'], - 'data': ['views/res_config_settings_views.xml', - 'views/maintenance_templates.xml' - ], - 'images': ['static/description/banner.jpg'], - 'license': 'AGPL-3', - 'installable': True, - 'auto_install': False, - 'application': False, -} diff --git a/website_maintenance/controllers/__init__.py b/website_maintenance/controllers/__init__.py deleted file mode 100644 index 2b722d1d3..000000000 --- a/website_maintenance/controllers/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -from . import website_maintenance diff --git a/website_maintenance/controllers/website_maintenance.py b/website_maintenance/controllers/website_maintenance.py deleted file mode 100644 index 201ce88b4..000000000 --- a/website_maintenance/controllers/website_maintenance.py +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -from odoo import http -from odoo.http import request - - -class UnderMaintenance(http.Controller): - """Redirect Maintenance Page""" - @http.route('/maintenance', website=True, page=True, - auth='public', csrf=False) - def maintenance_request_thanks(self): - """Maintenance Page""" - return (request.render - ('website_maintenance.customers_request_thank_page')) diff --git a/website_maintenance/doc/RELEASE_NOTES.md b/website_maintenance/doc/RELEASE_NOTES.md deleted file mode 100644 index 56253cbdf..000000000 --- a/website_maintenance/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,5 +0,0 @@ -## Module -#### 03.04.2024 -#### Version 15.0.1.0.0 -#### ADD -- Initial commit for Website Maintenance Page diff --git a/website_maintenance/models/__init__.py b/website_maintenance/models/__init__.py deleted file mode 100644 index 0a2986ee7..000000000 --- a/website_maintenance/models/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -from . import res_config_settings -from . import website diff --git a/website_maintenance/models/res_config_settings.py b/website_maintenance/models/res_config_settings.py deleted file mode 100644 index bc0f3ed42..000000000 --- a/website_maintenance/models/res_config_settings.py +++ /dev/null @@ -1,63 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -from odoo import fields, models - - -class ResConfigSettings(models.TransientModel): - """Inheriting ResConfigSettings Model. - This class extends the functionality of the 'res.config.settings' - model.It allows customizing and managing configuration settings - for the module""" - _inherit = 'res.config.settings' - - is_under_maintenance = fields.Boolean( - string="Under Maintenance", - related="website_id.under_maintenance", - readonly=False, - help="Enable or disable to show Maintenance page") - maintenance_header = fields.Char(string="Maintenance Header", - related="website_id.maintenance_hdr", - readonly=False, - help="Add Maintenance header to show " - "on the website") - maintenance_hdr_color = fields.Char(string="Header Color", - related="website_id." - "maintenance_hdr_color", - readonly=False, - help="Choose Header Color") - maintenance_cont_color = fields.Char(string="Content Color", - related="website_id." - "maintenance_cont_color", - readonly=False, - help="Choose Content Color") - maintenance_message = fields.Char(string="Maintenance Info", - related="website_id.maintenance_msg", - readonly=False, - help="Add Maintenance message " - "regarding scheduled days/" - "available options/reason etc") - maintenance_img = fields.Binary(string="Maintenance Image", - related="website_id.maintenance_img", - readonly=False, - help="Display an image to show on " - "the maintenance page") diff --git a/website_maintenance/models/website.py b/website_maintenance/models/website.py deleted file mode 100644 index ca9ee88c0..000000000 --- a/website_maintenance/models/website.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author: Cybrosys Techno Solutions() -# -# This program is free software: you can modify -# it under the terms of the GNU Affero General Public License (AGPL) 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 . -# -############################################################################# -from odoo import fields, models - - -class Website(models.Model): - """Inheriting website to add new fields""" - _inherit = 'website' - - under_maintenance = fields.Boolean(string="Under Maintenance", - help="Enable or disable to show " - "maintenance page") - maintenance_msg = fields.Char(string="Maintenance Message", - help="Pass a message to load on " - "maintenance page") - maintenance_hdr = fields.Char(string="Maintenance Header", - help="Display maintenance header in " - "maintenance page") - maintenance_hdr_color = fields.Char(string="Header Color", - help="Choose Header Color") - maintenance_cont_color = fields.Char(string="Content Color", - help="Choose Content Color") - maintenance_img = fields.Binary(string="Maintenance Image", - help="Image to load on maintenance page") diff --git a/website_maintenance/static/description/assets/icons/check.png b/website_maintenance/static/description/assets/icons/check.png deleted file mode 100644 index ea0da5029..000000000 Binary files a/website_maintenance/static/description/assets/icons/check.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/chevron.png b/website_maintenance/static/description/assets/icons/chevron.png deleted file mode 100644 index f49dd8541..000000000 Binary files a/website_maintenance/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/cogs.png b/website_maintenance/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/website_maintenance/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/consultation.png b/website_maintenance/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/website_maintenance/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/ecom-black.png b/website_maintenance/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/website_maintenance/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/education-black.png b/website_maintenance/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/website_maintenance/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/hotel-black.png b/website_maintenance/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/website_maintenance/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/icon.png b/website_maintenance/static/description/assets/icons/icon.png deleted file mode 100644 index 61b0eb171..000000000 Binary files a/website_maintenance/static/description/assets/icons/icon.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/license.png b/website_maintenance/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/website_maintenance/static/description/assets/icons/license.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/lifebuoy.png b/website_maintenance/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/website_maintenance/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/logo.png b/website_maintenance/static/description/assets/icons/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/website_maintenance/static/description/assets/icons/logo.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/manufacturing-black.png b/website_maintenance/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/website_maintenance/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/pos-black.png b/website_maintenance/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/website_maintenance/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/puzzle.png b/website_maintenance/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/website_maintenance/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/restaurant-black.png b/website_maintenance/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/website_maintenance/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/service-black.png b/website_maintenance/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/website_maintenance/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/trading-black.png b/website_maintenance/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/website_maintenance/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/training.png b/website_maintenance/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/website_maintenance/static/description/assets/icons/training.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/update.png b/website_maintenance/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/website_maintenance/static/description/assets/icons/update.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/user.png b/website_maintenance/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/website_maintenance/static/description/assets/icons/user.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/icons/wrench.png b/website_maintenance/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/website_maintenance/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/categories.png b/website_maintenance/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/website_maintenance/static/description/assets/misc/categories.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/check-box.png b/website_maintenance/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/website_maintenance/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/compass.png b/website_maintenance/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/website_maintenance/static/description/assets/misc/compass.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/corporate.png b/website_maintenance/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/website_maintenance/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/customer-support.png b/website_maintenance/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/website_maintenance/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/cybrosys-logo.png b/website_maintenance/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/website_maintenance/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/features.png b/website_maintenance/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/website_maintenance/static/description/assets/misc/features.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/logo.png b/website_maintenance/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/website_maintenance/static/description/assets/misc/logo.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/pictures.png b/website_maintenance/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/website_maintenance/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/pie-chart.png b/website_maintenance/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/website_maintenance/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/right-arrow.png b/website_maintenance/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/website_maintenance/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/star.png b/website_maintenance/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/website_maintenance/static/description/assets/misc/star.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/support.png b/website_maintenance/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/website_maintenance/static/description/assets/misc/support.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/misc/whatsapp.png b/website_maintenance/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/website_maintenance/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/modules/budget_image.png b/website_maintenance/static/description/assets/modules/budget_image.png deleted file mode 100644 index b50130c7d..000000000 Binary files a/website_maintenance/static/description/assets/modules/budget_image.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/modules/credit_image.png b/website_maintenance/static/description/assets/modules/credit_image.png deleted file mode 100644 index 3ad04ecfd..000000000 Binary files a/website_maintenance/static/description/assets/modules/credit_image.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/modules/employee_image.png b/website_maintenance/static/description/assets/modules/employee_image.png deleted file mode 100644 index 30ad58232..000000000 Binary files a/website_maintenance/static/description/assets/modules/employee_image.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/modules/export_image.png b/website_maintenance/static/description/assets/modules/export_image.png deleted file mode 100644 index 492980ad0..000000000 Binary files a/website_maintenance/static/description/assets/modules/export_image.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/modules/gantt_image.png b/website_maintenance/static/description/assets/modules/gantt_image.png deleted file mode 100644 index 1ae7cfe3b..000000000 Binary files a/website_maintenance/static/description/assets/modules/gantt_image.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/modules/quotation_image.png b/website_maintenance/static/description/assets/modules/quotation_image.png deleted file mode 100644 index 499b1a72f..000000000 Binary files a/website_maintenance/static/description/assets/modules/quotation_image.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/hero.gif b/website_maintenance/static/description/assets/screenshots/hero.gif deleted file mode 100644 index b94ee49f8..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_001.png b/website_maintenance/static/description/assets/screenshots/scrn_001.png deleted file mode 100644 index 4838fbc3c..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_001.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_002.png b/website_maintenance/static/description/assets/screenshots/scrn_002.png deleted file mode 100644 index 533835079..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_002.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_003.png b/website_maintenance/static/description/assets/screenshots/scrn_003.png deleted file mode 100644 index 3819d7118..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_003.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_004.png b/website_maintenance/static/description/assets/screenshots/scrn_004.png deleted file mode 100644 index a91d0d27f..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_004.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_005.png b/website_maintenance/static/description/assets/screenshots/scrn_005.png deleted file mode 100644 index f435e097d..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_005.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_006.png b/website_maintenance/static/description/assets/screenshots/scrn_006.png deleted file mode 100644 index 5538cba83..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_006.png and /dev/null differ diff --git a/website_maintenance/static/description/assets/screenshots/scrn_007.png b/website_maintenance/static/description/assets/screenshots/scrn_007.png deleted file mode 100644 index 759ac89a7..000000000 Binary files a/website_maintenance/static/description/assets/screenshots/scrn_007.png and /dev/null differ diff --git a/website_maintenance/static/description/banner.jpg b/website_maintenance/static/description/banner.jpg deleted file mode 100644 index 8049536b1..000000000 Binary files a/website_maintenance/static/description/banner.jpg and /dev/null differ diff --git a/website_maintenance/static/description/icon.png b/website_maintenance/static/description/icon.png deleted file mode 100644 index 5c40dcf09..000000000 Binary files a/website_maintenance/static/description/icon.png and /dev/null differ diff --git a/website_maintenance/static/description/index.html b/website_maintenance/static/description/index.html deleted file mode 100644 index e6234027e..000000000 --- a/website_maintenance/static/description/index.html +++ /dev/null @@ -1,627 +0,0 @@ -
-
-
-
- -
-
-
- Community -
-
- Enterprise -
- -
-
-
-
- -
-
-
-
-

- Website Maintenance Page

-
-

- Restrict Public Users While Website is Under Maintenance. -

- -
-
-
- -
-
-

- Explore this module

- -
-
-
- -
-
-

- Overview

-
-

- This Module helps to restrict public users from maintenance.User can customize the maintenance page by choosing - image,header, message from website config settings -

-
-
- -
-
-

- Features

-
-
-
-
- - Easy Configuration. - -
- -
- - Restrict Public Users for Maintenance. - -
- -
- - Under Maintenance Page. - -
-
-
-
- - Choose Image, Header and Message for Maintenance Page. - -
- -
- - Available in Odoo 15.0 - Community and Enterprise. -
-
-
-
-
- - -
-
-

- Screenshots

-
- -
-
- -

Configure Website Maintenance. -

-

Under website configuration settings user can configure Website Maintenance.

- - -
- -
-
- -

Login as a Public User. -

-

Set a public user for testing and login as corresponding public user.

- -
-
- -
-
- -

Restricted Public Pages For Public Users. -

-
- - - -
- -
-
- -

Except Login Page. -

-

Restrictions except login page.

- -
-
-
-
-
- - -
-
-

- Suggested Products

-
- - -
- - - -
-
-
-

- Our Services

-
-
- -
-
- -
-
- Odoo - Customization
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Support
-
- - -
-
- -
-
- Hire - Odoo - Developer
-
- -
-
- -
-
- Odoo - Integration
-
- -
-
- -
-
- Odoo - Migration
-
- - -
-
- -
-
- Odoo - Consultancy
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Licensing Consultancy
-
-
-
- - - -
-
-
-

- Our Industries

-
-
- -
-
- -
- Trading -
-

- Easily procure - and - sell your products

-
-
- -
-
- -
- POS -
-

- Easy - configuration - and convivial experience

-
-
- -
-
- -
- Education -
-

- A platform for - educational management

-
-
- -
-
- -
- Manufacturing -
-

- Plan, track and - schedule your operations

-
-
- -
-
- -
- E-commerce & Website -
-

- Mobile - friendly, - awe-inspiring product pages

-
-
- -
-
- -
- Service Management -
-

- Keep track of - services and invoice

-
-
- -
-
- -
- Restaurant -
-

- Run your bar or - restaurant methodically

-
-
- -
-
- -
- Hotel Management -
-

- An - all-inclusive - hotel management application

-
-
- -
-
- - - - - -
-
-
-

- Need Help?

-
-
-
- - -
- -
- - -
- -
- -
- -
-
- -
- -
- -
-
- -
-
-
- - -
diff --git a/website_maintenance/views/maintenance_templates.xml b/website_maintenance/views/maintenance_templates.xml deleted file mode 100644 index 07b6bac0d..000000000 --- a/website_maintenance/views/maintenance_templates.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - diff --git a/website_maintenance/views/res_config_settings_views.xml b/website_maintenance/views/res_config_settings_views.xml deleted file mode 100644 index 30513963c..000000000 --- a/website_maintenance/views/res_config_settings_views.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - res.config.settings.view.form.inherit.website.maintenance - - res.config.settings - - -
-

Website Maintenance

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - - - website.view.form.inherit.website.maintenance - website - - primary - - - - - - - - - - - -