~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to sync_youtube/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-                                                            
2
 
##############################################################################  
3
 
#                                                                                  
4
 
#    OpenERP, Open Source Management Solution                                      
5
 
#    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).                         
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' : 'Sign Youtube',                                                                   
23
 
    'version' : '0.1',                                                             
24
 
    'author' : 'Vauxoo',                                                      
25
 
    'category' : '',                                                          
26
 
    'description' : """                                                            
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
 
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
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
22
{
 
23
    "name": "Sign Youtube", 
 
24
    "version": "0.1", 
 
25
    "author": "Vauxoo", 
 
26
    "category": "", 
 
27
    "description": """
27
28
Sign YouTube
28
29
============
29
30
 
36
37
How to Use
37
38
----------
38
39
In the configuration menu you have a new menu with the name: Sign YouTube Config.
39
 
You need fill the required information to load all videos for you YouTube account and make the 
 
40
You need fill the required information to load all videos for you YouTube account and make the
40
41
configuration test
41
42
 
42
43
If the configuration is correct you can load the YouTube videos for send it in the company inbox
43
 
    """,                                                                           
44
 
    'website': 'http://www.vauxoo.com',                                            
45
 
    'images' : [],                                                                 
46
 
    'depends' : [
47
 
        'base',
48
 
    ],                                                                
49
 
    'data': [                                                                      
50
 
    'security/ir.model.access.csv',
51
 
    'view/sign_youtube_view.xml',
52
 
    ],                                                                                 
53
 
    'js': [                                                                        
54
 
    ],                                                                                 
55
 
    'qweb' : [                                                                     
56
 
    ],                                                                                 
57
 
    'css':[                                                                        
58
 
    ],                                                                                 
59
 
    'demo': [                                                                      
60
 
    ],                                                                                 
61
 
    'test': [                                                                      
62
 
    ],                                                                                                                                                                                                  
63
 
    'installable': True,                                                           
64
 
    'auto_install': False,                                                         
65
 
}                                                                                  
66
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: 
 
44
    """, 
 
45
    "website": "http://www.vauxoo.com", 
 
46
    "license": "", 
 
47
    "depends": [
 
48
        "base"
 
49
    ], 
 
50
    "demo": [], 
 
51
    "data": [
 
52
        "security/ir.model.access.csv", 
 
53
        "view/sign_youtube_view.xml"
 
54
    ], 
 
55
    "test": [], 
 
56
    "js": [], 
 
57
    "css": [], 
 
58
    "qweb": [], 
 
59
    "installable": True, 
 
60
    "auto_install": False, 
 
61
    "active": False
 
62
}
 
 
b'\\ No newline at end of file'