Skip to content

Commit d09023e

Browse files
committed
last touch
1 parent 59b16cb commit d09023e

6 files changed

Lines changed: 36 additions & 1 deletion

File tree

typesense_ir_exports/README.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ Typesense Serializer Ir Export
3030

3131
Use Exporter (ir.exports) as serializer for connector_typesense
3232

33+
Each ir.exports records is converted into JSON and JSON data get indexed into the Search Engine.
34+
35+
Data can be String, Integer, Float, Lists, and Relations in the form of Object.
36+
37+
Thnaks to the dynamic Schema configuration we can add new fields or remove without breaking the Schema.
38+
39+
Binary data like images are sent as string, but better if we use external filestore to use images related external urls.
40+
3341
**Table of contents**
3442

3543
.. contents::
@@ -71,6 +79,14 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
7179
mission is to support the collaborative development of Odoo features and
7280
promote its widespread use.
7381

82+
.. |maintainer-Kencove| image:: https://github.com/Kencove.png?size=40px
83+
:target: https://github.com/Kencove
84+
:alt: Kencove
85+
86+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
87+
88+
|maintainer-Kencove|
89+
7490
This module is part of the `OCA/search-engine <https://github.com/OCA/search-engine/tree/16.0/typesense_ir_exports>`_ project on GitHub.
7591

7692
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

typesense_ir_exports/__manifest__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
"category": "Uncategorized",
1010
"website": "https://github.com/OCA/search-engine",
1111
"author": "Kencove, Odoo Community Association (OCA)",
12+
"maintainers": ["Kencove"],
1213
"license": "AGPL-3",
1314
"depends": [
1415
"connector_search_engine_serializer_ir_export",
1516
],
1617
"data": [
17-
"data/se_index_config_demo.xml",
18+
"data/se_index_config_data.xml",
1819
"views/se_index_view.xml",
1920
],
2021
"installable": True,
File renamed without changes.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
Use Exporter (ir.exports) as serializer for connector_typesense
2+
3+
Each ir.exports records is converted into JSON and JSON data get indexed into the Search Engine.
4+
5+
Data can be String, Integer, Float, Lists, and Relations in the form of Object.
6+
7+
Thnaks to the dynamic Schema configuration we can add new fields or remove without breaking the Schema.
8+
9+
Binary data like images are sent as string, but better if we use external filestore to use images related external urls.

typesense_ir_exports/static/description/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,10 @@ <h1 class="title">Typesense Serializer Ir Export</h1>
371371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372372
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/search-engine/tree/16.0/typesense_ir_exports"><img alt="OCA/search-engine" src="https://img.shields.io/badge/github-OCA%2Fsearch--engine-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/search-engine-16-0/search-engine-16-0-typesense_ir_exports"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/search-engine&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373373
<p>Use Exporter (ir.exports) as serializer for connector_typesense</p>
374+
<p>Each ir.exports records is converted into JSON and JSON data get indexed into the Search Engine.</p>
375+
<p>Data can be String, Integer, Float, Lists, and Relations in the form of Object.</p>
376+
<p>Thnaks to the dynamic Schema configuration we can add new fields or remove without breaking the Schema.</p>
377+
<p>Binary data like images are sent as string, but better if we use external filestore to use images related external urls.</p>
374378
<p><strong>Table of contents</strong></p>
375379
<div class="contents local topic" id="contents">
376380
<ul class="simple">
@@ -414,6 +418,8 @@ <h2><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h2>
414418
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
415419
mission is to support the collaborative development of Odoo features and
416420
promote its widespread use.</p>
421+
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
422+
<p><a class="reference external image-reference" href="https://github.com/Kencove"><img alt="Kencove" src="https://github.com/Kencove.png?size=40px" /></a></p>
417423
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/search-engine/tree/16.0/typesense_ir_exports">OCA/search-engine</a> project on GitHub.</p>
418424
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
419425
</div>

typesense_ir_exports/static/src/action_ir_export.esm.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
/** @odoo-module **/
22

3+
/* Copyright 2023 Kencove (https://kencove.com).
4+
@author Mohamed Alkobrosli <malkobrosly@kencove.com>
5+
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). */
6+
37
import {registry} from "@web/core/registry";
48
import {Many2OneField} from "@web/views/fields/many2one/many2one_field";
59
import {ExportDataDialog} from "@web/views/view_dialogs/export_data_dialog";

0 commit comments

Comments
 (0)