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.

63 lines
2.3 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  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
  31. corresponding partner/lead/employee/... in a pop-up without any action from the
  32. user.
  33. The module *web_action_request* can be downloaded with Mercurial:
  34. hg clone http://bitbucket.org/anybox/web_action_request
  35. It depends on 2 other modules, *web_longpolling* and *web_socketio*, that can
  36. be downloaded with this command:
  37. hg clone http://bitbucket.org/anybox/web_socketio
  38. You will find some hints in this documentation :
  39. https://bitbucket.org/anybox/web_action_request
  40. Warning : proxying WebSockets is only supported since Nginx 1.3.13 ; the
  41. feature provided by this module won't work with older versions of Nginx.
  42. TODO : document this new feature on the Akretion Web site :
  43. http://www.akretion.com/products-and-services/openerp-asterisk-voip-connector
  44. """,
  45. 'author': "Akretion,Odoo Community Association (OCA)",
  46. 'website': 'http://www.akretion.com/',
  47. 'depends': ['base_phone', 'web_action_request'],
  48. 'data': [
  49. 'res_users_view.xml',
  50. ],
  51. 'images': [],
  52. 'active': False,
  53. }