Skip to content

Commit 777670d

Browse files
committed
[17.0][MIG] website_search_header: Migration to 17.0
2 parents ba10a00 + 8729a0c commit 777670d

File tree

12 files changed

+752
-0
lines changed

12 files changed

+752
-0
lines changed

website_search_header/README.rst

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
========================
2+
Website Search in Header
3+
========================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:0190640b3113a806206eba0406254bfdb594eb50e99f4f870b3815401ff7621f
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
18+
:alt: License: LGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwebsite-lightgray.png?logo=github
20+
:target: https://github.com/OCA/website/tree/17.0/website_search_header
21+
:alt: OCA/website
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/website-17-0/website-17-0-website_search_header
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/website&target_branch=17.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module adds a search bar in the header of your website
32+
33+
**Table of contents**
34+
35+
.. contents::
36+
:local:
37+
38+
Usage
39+
=====
40+
41+
On desktop, the user will be able to show and hide the search input in
42+
the website header. While on mobile our searchbox will behave by
43+
default.
44+
45+
Bug Tracker
46+
===========
47+
48+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/website/issues>`_.
49+
In case of trouble, please check there if your issue has already been reported.
50+
If you spotted it first, help us to smash it by providing a detailed and welcomed
51+
`feedback <https://github.com/OCA/website/issues/new?body=module:%20website_search_header%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
52+
53+
Do not contact contributors directly about support or help with technical issues.
54+
55+
Credits
56+
=======
57+
58+
Authors
59+
-------
60+
61+
* ForgeFlow
62+
* Ooops
63+
64+
Contributors
65+
------------
66+
67+
- ForgeFlow <https://www.forgeflow.com>
68+
- Kencove <https://www.kencove.com/>
69+
70+
Maintainers
71+
-----------
72+
73+
This module is maintained by the OCA.
74+
75+
.. image:: https://odoo-community.org/logo.png
76+
:alt: Odoo Community Association
77+
:target: https://odoo-community.org
78+
79+
OCA, or the Odoo Community Association, is a nonprofit organization whose
80+
mission is to support the collaborative development of Odoo features and
81+
promote its widespread use.
82+
83+
This module is part of the `OCA/website <https://github.com/OCA/website/tree/17.0/website_search_header>`_ project on GitHub.
84+
85+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

website_search_header/__init__.py

Whitespace-only changes.

website_search_header/__manifest__.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Copyright 2023 ForgeFlow, S.L.
2+
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).
3+
4+
{
5+
"name": "Website Search in Header",
6+
"category": "Website",
7+
"version": "17.0.1.1.0",
8+
"author": "ForgeFlow, Ooops, Odoo Community Association (OCA)",
9+
"website": "https://github.com/OCA/website",
10+
"license": "LGPL-3",
11+
"depends": [
12+
"website",
13+
],
14+
"data": [
15+
"views/templates.xml",
16+
],
17+
"assets": {
18+
"website_search_header.assets_frontend": [
19+
"website_search_header/static/src/js/website.js",
20+
],
21+
},
22+
"installable": True,
23+
}

website_search_header/pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- ForgeFlow \<<https://www.forgeflow.com>\>
2+
- Kencove \<<https://www.kencove.com/>\>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module adds a search bar in the header of your website

website_search_header/readme/USAGE.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
On desktop, the user will be able to show and hide the search input in
2+
the website header. While on mobile our searchbox will behave by
3+
default.
Loading

0 commit comments

Comments
 (0)