~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to printjob/__terp__.py

  • Committer: HDA(OpenERP)
  • Author(s): Ferran Pegueroles
  • Date: 2009-10-27 06:16:44 UTC
  • mto: (3909.1.76 extra)
  • mto: This revision was merged to the branch mainline in revision 3912.
  • Revision ID: hda@tinyerp.com-20091027061644-cnu6k7yxw0bmqaln
Added printjob module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (c) 2007 Ferran Pegueroles <ferran@pegueroles.com>
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU General Public License as published by
 
8
#    the Free Software Foundation, either version 3 of the License, or
 
9
#    (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
{
 
21
        "name" : "PrintJob",
 
22
        "author" : "Pegueroles SCP",
 
23
        "version" : "1.0",
 
24
        "website" : "http://www.pegueroles.com",
 
25
        "category" : "Vertical Modules/Parametrization",
 
26
        "depends" : ["base"],
 
27
        "description": """This module updates OpenERP printig
 
28
        The new features are :
 
29
        * Enables batch printing 
 
30
        * Correct memory leack when printing crashes
 
31
        * Permits repriting lost PDFs
 
32
        * Possibilty to send jobs to a prrinter attached to the server 
 
33
        """,
 
34
        "init_xml" : [],
 
35
        "update_xml" : [
 
36
                    "printjob_view.xml",                    
 
37
                    "printjob_data.xml",                    
 
38
                    "security/printjob_security.xml",
 
39
                    ],
 
40
        "category" : "base/printjob",
 
41
        "active": False,
 
42
        "installable": True
 
43
}