~shineit/openerp-china/pdf-font-for-any-language

« back to all changes in this revision

Viewing changes to oecn_base_fonts/__openerp__.py

  • Committer: jeff
  • Date: 2011-12-22 07:46:10 UTC
  • Revision ID: jeff@jeff-desktop-20111222074610-leyys0p4i6s81csg
pdf fonts replace, next step:_get_system_fonts

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
# __author__ = tony@openerp.cn
 
3
##############################################################################
 
4
#
 
5
#    This program is free software: you can redistribute it and/or modify
 
6
#    it under the terms of the GNU General Public License as published by
 
7
#    the Free Software Foundation, either version 3 of the License, or
 
8
#    (at your option) any later version.
 
9
#
 
10
#    This program is distributed in the hope that it will be useful,
 
11
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
#    GNU General Public License for more details.
 
14
#
 
15
#    You should have received a copy of the GNU General Public License
 
16
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
#
 
18
##############################################################################
 
19
{
 
20
    "name" : "Letting pdf reports use TrueType fonts",
 
21
    "version" : "2.1",
 
22
    "author" : "Shine IT",
 
23
    "maintainer":"jeff@openerp.cn",
 
24
    "website": "http://www.openerp.cn",
 
25
    "description": """
 
26
    To allow unicode characters displaying in pdf report 
 
27
    with TrueType fonts user selected in wizard.
 
28
    
 
29
    It can solve pdf report display issue for Chinese also other
 
30
    Unicode characters """,
 
31
    "depends" : ["base"],
 
32
    "category" : "Generic Modules/Base",
 
33
    "demo_xml" : [],
 
34
    "update_xml" : ["oecn_base_fonts_view.xml"],
 
35
    "license": "GPL-3",
 
36
    "active": False,
 
37
    "installable": True
 
38
}
 
39
 
 
40
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
41