You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
2.2 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Base Phone Pop-up module for Odoo/OpenERP
  5. # Copyright (C) 2014 Alexis de Lattre <alexis@via.ecp.fr>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. 'name': 'Base Phone Pop-up',
  23. 'version': '0.4',
  24. 'category': 'Phone',
  25. 'license': 'AGPL-3',
  26. 'summary': 'Pop-up the related form view to the user on incoming calls',
  27. 'description': """
  28. Base Phone Pop-up
  29. =================
  30. When the user receives a phone call, OpenERP can automatically open the corresponding partner/lead/employee/... in a pop-up without any action from the user.
  31. The module *web_action_request* can be downloaded with Mercurial:
  32. hg clone http://bitbucket.org/anybox/web_action_request
  33. It depends on 2 other modules, *web_longpolling* and *web_socketio*, that can be downloaded with this command:
  34. hg clone http://bitbucket.org/anybox/web_socketio
  35. You will find some hints in this documentation : https://bitbucket.org/anybox/web_action_request
  36. Warning : proxying WebSockets is only supported since Nginx 1.3.13 ; the feature provided by this module won't work with older versions of Nginx.
  37. TODO : document this new feature on the Akretion Web site : http://www.akretion.com/en/products-and-services/openerp-asterisk-voip-connector """,
  38. 'author': 'Akretion',
  39. 'website': 'http://www.akretion.com/',
  40. 'depends': ['base_phone', 'web_action_request'],
  41. 'data': [
  42. 'res_users_view.xml',
  43. ],
  44. 'images': [],
  45. 'active': False,
  46. }