[FIX] Remove the 'Open Page' wizard
[odoo/odoo.git] / addons / wiki / wizard / open_page.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_timesheet_open(wizard.interface):
32     
33     def _open_wiki_page(self, cr, uid, data, context):
34         print "uid: %r" % (uid,)
35         print "data: %r" % (data,)
36         pool = pooler.get_pool(cr.dbname)
37         menu_id = data['id']
38         group_ids = pool.get('wiki.groups.link').search(cr, uid, [('action_id','=',menu_id)])
39         if not group_ids:
40             raise wizard.except_wizard(_('Open Page'), _('No action found'))
41         group = pool.get('wiki.groups.link').browse(cr, uid, group_ids[0])
42         
43         value = {
44             'context': "{'group_id':%d}" % (group.group_id.id),
45             'domain': "[('group_id','child_of',[%s])]" % (group.group_id.id),
46             'name': 'Wiki Page',
47             'view_type': 'form',
48             'view_mode': 'form,tree',
49             'res_model': 'wiki.wiki',
50             'view_id': False,
51             'type': 'ir.actions.act_window',
52         }
53         if group.group_id.home:
54             value['res_id'] = group.group_id.home.id
55         else:
56             value['view_type'] = 'form'
57             value['view_mode'] = 'tree,form'
58             
59         return value
60
61     states = {
62         'init' : {
63             'actions' : [],
64             'result' : {'type':'action', 'action':_open_wiki_page, 'state':'end'}
65         }
66     }
67 wiz_timesheet_open('wiki.wiki.page.open')
68
69
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
71