Search 1.9 billion lines of Odoo code on GitHub

1
··· ·
35
· ···

universal_connector_protocol_xmlrpc

Author: SHS-AV s.r.l.
License: LGPL-3
Branch: 12.0
Repository: zeroincombenze/connector
Dependencies: connector, universal_connector, and universal_connector_pypi_odoolib
Languages: HTML (49, 16.1%), PO File (46, 15.1%), Python (60, 19.7%), XML (17, 5.6%), and reStructuredText (132, 43.4%)

Add protocol xmlrpc[s] to Universal Connector
Show more...

universal_connector_protocol_jsonrpc

Author: SHS-AV s.r.l.
License: LGPL-3
Branch: 12.0
Repository: zeroincombenze/connector
Dependencies: connector, universal_connector, and universal_connector_pypi_odoolib
Languages: HTML (49, 13.6%), PO File (46, 12.8%), Python (115, 32.0%), XML (17, 4.7%), and reStructuredText (132, 36.8%)

Add protocol jsonrpc[s] to Universal Connector
Show more...

stock_picking_package_preparation

Author: Odoo Community Association (OCA) and other subjects
License: AGPL-3
Branch: 10.0
Repository: zeroincombenze/stock-logistics-workflow
Dependencies: stock
Languages: HTML (54, 3.9%), PO File (771, 55.9%), Python (302, 21.9%), XML (106, 7.7%), and reStructuredText (146, 10.6%)


Show more...

bp_contact_snippet

Author: bloopark systems GmbH & Co. KG, Vizucom Oy
License: no license
Branch: feat_small_snippet
Repository: Vizucom/bp_contact_snippet
Dependencies: crm, website, and website_partner
Languages: CSS (20, 5.6%), HTML (28, 7.9%), JavaScript (25, 7.0%), Python (123, 34.6%), and XML (159, 44.8%)


Show more...

shopinvader_category_image_for_product

Author: ACSONE SA/NV
License: AGPL-3
Branch: 13.0-572-port
Repository: akretion/odoo-shopinvader
Dependencies: shopinvader, shopinvader_image, and shopinvader_search_engine
Languages: Python (36, 51.4%), XML (7, 10.0%), and reStructuredText (27, 38.6%)

Shopinvader Display category image for product
Show more...

crm_production_title

Author: Numigi
License: LGPL-3
Branch: 12.0_dev
Repository: ERPLibre/odoo-entertainment-addons
Dependencies: crm
Languages: PO File (56, 18.4%), Python (50, 16.4%), XML (180, 59.2%), and reStructuredText (18, 5.9%)


Show more...

crm_musical_relation

Author: Numigi
License: LGPL-3
Branch: 12.0_dev
Repository: ERPLibre/odoo-entertainment-addons
Dependencies: artist, crm, musical_artwork, and recording
Languages: PO File (26, 11.2%), Python (114, 48.9%), XML (79, 33.9%), and reStructuredText (14, 6.0%)

Adds music element to CRM leads.
Show more...

payment_postfinance

Author: DataDialog - Michael Karrer (michael.karrer@datadialog.net)
License: no license
Branch: dependabot/npm_and_yarn/addons-loaded/website_tools/static/lib/iframe-resizer/jquery-3.5.0
Repository: OpenAT/online
Dependencies: base, fso_base, fso_base_website, and payment
Languages: JavaScript (14, 4.1%), Markdown (84, 24.6%), Python (178, 52.0%), and XML (66, 19.3%)

Payment Provider: Postfinance ESR (EinzahlungsSchein mit Referenznummer) Schweiz
Show more...

payment_fsotransfer

Author: DataDialog
License: no license
Branch: dependabot/npm_and_yarn/addons-loaded/website_tools/static/lib/iframe-resizer/jquery-3.5.0
Repository: OpenAT/online
Dependencies: fso_base_website, payment, website, website_sale_categories, and website_sale_donate
Languages: CSS (6, 2.2%), Markdown (84, 31.1%), Python (104, 38.5%), and XML (76, 28.1%)

payment_fsotransfer Payment Provider: Zahlschein oder Überweisung
Show more...

cenit_import_io_1_0

Author: Cenit IO
License: no license
Branch: 8.0
Repository: andhit-r/odoo-integrations
Dependencies: base, and cenit_base
Languages: HTML (38, 7.4%), Python (67, 13.0%), and XML (409, 79.6%)

## Introduction The import.io API is a [REST](http://en.wikipedia.org/wiki/Representational_state_transfer)ful API. It is designed as much as possible to have resource-oriented URLs and to use HTTP status codes to indicate API status. We use standard HTTP which can be understood by any HTTP client, and we support [CORS](http://enable-cors.org/) to allow you to interact with our API from a client-side web application. Remember, you should never expose your secret API key in any public client-side code. JSON is always returned from the API, including errors. import.io uses conventional HTTP response codes to indicate success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that resulted from the provided information (e.g. a required parameter was missing), and codes in the 5xx range indicate an error with our servers. All API requests *should* be made over HTTPS to `https://api.import.io/` ## API Authentication You authenticate to the import.io API by providing your API key as URL query string parameter `_apikey`. You can manage your API key from [your account](https://import.io/data/account/). In the My Settings page, the API in not URL encoded. To prevent a Base64 error, make sure to use a URI encode function for your query. You can also get an encoded API Key from the GET API or POST API tab in the application. Your API key allows unrestricted privileges your account, so keep it secret! When you are logged in, *submit your password in this page header* to see the API key in the API explorer below. ## Quick Start ### Basic concepts * import.io lets you publish dynamic APIs and Data Sets to its platform (object class `Connector`). * To disambiguate between dynamic API created on the platform, and static APIs such as this, we use the term `Connector` within the import.io APIs to refer to a API or Data Set published to import.io. * Extractors, Crawlers and Data Sets are just specializations of Connector. * You can create these via UI tooling, or by using the APIs detailed here. * The dynamic API definition for a Connector is versioned (object class `ConnectorVersion`); querying a connector by default queries the most recent version, whose id can be found on the `Connector` object (`latestVersionGuid`). * Each `ConnectorVersion` has a schema (object class `Schema`) defining its input and output properties. * All objects are accessible via the REST API. * The output properties are returned with the query data. * Extra meta-data may be passed back depending on a output property [type](#data-types). * All fields _may_ be multi-valued (i.e. arrays). ### Convert a URL into data You can use import.io magic to convert a URL into data tables over our API instantly. [Try it yourself!](?magic#!/Magic_Methods/magic) ### Query a custom API Create an API in the UI, do a query. [Try it yourself!](?query#!/Query_Methods/queryGet) ## Data Types For most output property types we also return `myvar/_source` with the original textual data. | Type | Returns | Notes | | --- | --- | --- | | `STRING` | myvar | We normalize whitespace from text, and don't return empty strings | | `CURRENCY` | myvar, myvar/_currency, myvar/_source | The ISO currency code is returned as `myvar/_currency`, the numeric value in `myvar` | | `INT` | myvar, myvar/_source | 64 bit integer (`long`) | | `DOUBLE` | myvar, myvar/_source | 64 bit float | | `LANG` | myvar, myvar/_source | 3 letter ISO code | | `COUNTRY` | myvar, myvar/_source | 3 letter ISO code | | `BOOLEAN` | myvar, myvar/_source | true if 1, yes, on, active, true, y | | `URL` | myvar, myvar/_text, myvar/_title, myvar/_source | `myvar/_text` is the normalized text content of the anchor | | `IMAGE` | myvar, myvar/_alt, myvar/_title, myvar/_source | | | `HTML` | myvar | Raw HTML as well-formed XML | | `MAP` | myvar | JSON compatible map |
Show more...
1
··· ·
35
· ···