Skip to content

Commit

Permalink
[ADD] calendar_export_ics
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnauCForgeFlow committed May 21, 2024
1 parent 379aa23 commit f3942e3
Show file tree
Hide file tree
Showing 16 changed files with 772 additions and 0 deletions.
93 changes: 93 additions & 0 deletions calendar_export_ics/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
=====================
Calendar - Export ics
=====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:89e22508ece2c84daa64b8426a0ae4e4a2fe63905d721af87c1e7273240a91a4
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcalendar-lightgray.png?logo=github
:target: https://github.com/OCA/calendar/tree/15.0/calendar_export_ics
:alt: OCA/calendar
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/calendar-15-0/calendar-15-0-calendar_export_ics
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/calendar&target_branch=15.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module adds a new wizard that allows you to export odoo calendar into an .ics file.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, follow these steps:

#. Navigate to the Calendar App.
#. Go to Configuration.
#. Select Export to ICS File.

When exporting, you have two options:

* Specify the maximum date of the calendar you want to export.
* Leave the date field empty to export all events from your calendar.

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

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

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* ForgeFlow S.L.

Contributors
~~~~~~~~~~~~

* Arnau Cruz <[email protected]>


Do not contact contributors directly about support or help with technical issues.

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

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

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.

This module is part of the `OCA/calendar <https://github.com/OCA/calendar/tree/15.0/calendar_export_ics>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions calendar_export_ics/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import wizards
17 changes: 17 additions & 0 deletions calendar_export_ics/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright (C) 2024 - ForgeFlow S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Calendar - Export ics",
"summary": "Allow exporting odoo calendar to an ics file",
"version": "15.0.1.0.1",
"author": "ForgeFlow S.L.,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/calendar",
"license": "AGPL-3",
"depends": ["calendar", "calendar_import_ics"],
"data": [
"security/calendar_export_security.xml",
"security/ir.model.access.csv",
"wizards/wizard_export_ics.xml",
],
}
4 changes: 4 additions & 0 deletions calendar_export_ics/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Arnau Cruz <[email protected]>


Do not contact contributors directly about support or help with technical issues.
1 change: 1 addition & 0 deletions calendar_export_ics/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module adds a new wizard that allows you to export odoo calendar into an .ics file.
10 changes: 10 additions & 0 deletions calendar_export_ics/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
To use this module, follow these steps:

#. Navigate to the Calendar App.
#. Go to Configuration.
#. Select Export to ICS File.

When exporting, you have two options:

* Specify the maximum date of the calendar you want to export.
* Leave the date field empty to export all events from your calendar.
7 changes: 7 additions & 0 deletions calendar_export_ics/security/calendar_export_security.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="group_calendar_export" model="res.groups">
<field name="name">Calendar Export Ics</field>
<field name="category_id" ref="base.module_category_hidden" />
</record>
</odoo>
2 changes: 2 additions & 0 deletions calendar_export_ics/security/ir.model.access.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_wizard_calendar_export_ics,access_wizard_calendar_export_ics,model_calendar_export_ics,calendar_export_ics.group_calendar_export,1,1,1,1
Loading

0 comments on commit f3942e3

Please sign in to comment.