Added help wizard file in wiki
[odoo/odoo.git] / addons / wiki / wizard / open_help.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution    
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 import wizard
25 import netsvc
26 import time
27 import pooler
28 from osv import osv
29 from tools.translate import _
30
31 class wiz_open_help(wizard.interface):
32     
33     def _open_wiki_page(self, cr, uid, data, context):
34         pool = pooler.get_pool(cr.dbname)
35         pages = pool.get('wiki.wiki').search(cr, uid, [('name','=','Basic Wiki Editing')])
36         
37         value = {
38             'name': 'Basic Wiki Editing',
39             'view_type': 'form',
40             'view_mode': 'form,tree',
41             'res_model': 'wiki.wiki',
42             'view_id': False,
43             'res_id': pages[0],
44             'type': 'ir.actions.act_window',
45         }
46                     
47         return value
48
49     states = {
50         'init' : {
51             'actions' : [],
52             'result' : {'type':'action', 'action':_open_wiki_page, 'state':'end'}
53         }
54     }
55 wiz_open_help('wiki.wiki.help.open')
56
57 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
58