~ubuntu-branches/ubuntu/quantal/openerp6.1/quantal

« back to all changes in this revision

Viewing changes to openerp/addons/wiki/wizard/wiki_wiki_page_open.py

  • Committer: Package Import Robot
  • Author(s): Yolanda Robla
  • Date: 2012-09-20 15:29:00 UTC
  • Revision ID: package-import@ubuntu.com-20120920152900-woyy3yww8z6acmsk
Tags: upstream-6.1-1+dfsg
Import upstream version 6.1-1+dfsg

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
from osv import osv
 
23
 
 
24
class wiki_wiki_page_open(osv.osv_memory):
 
25
    """ wizard Open Page """
 
26
 
 
27
    _name = "wiki.wiki.page.open"
 
28
    _description = "wiz open page"
 
29
 
 
30
    def open_wiki_page(self, cr, uid, ids, context=None):
 
31
 
 
32
        """ Opens Wiki Page of Group
 
33
        @param cr: the current row, from the database cursor,
 
34
        @param uid: the current user’s ID for security checks,
 
35
        @param ids: List of open wiki page’s IDs
 
36
        @return: dictionay of open wiki window on give group id
 
37
        """
 
38
        if context is None:
 
39
            context = {}
 
40
        group_ids = context.get('active_ids', [])
 
41
        for group in self.pool.get('wiki.groups').browse(cr, uid, group_ids, context=context):
 
42
            value = {
 
43
                'domain': "[('group_id','=',%d)]" % (group.id),
 
44
                'name': 'Wiki Page',
 
45
                'view_type': 'form',
 
46
                'view_mode': 'form,tree',
 
47
                'res_model': 'wiki.wiki',
 
48
                'view_id': False,
 
49
                'type': 'ir.actions.act_window',
 
50
            }
 
51
        if group.method == 'page':
 
52
            value['res_id'] = group.home.id
 
53
        elif group.method == 'list':
 
54
            value['view_type'] = 'form'
 
55
            value['view_mode'] = 'tree,form'
 
56
        elif group.method == 'tree':
 
57
            view_id = self.pool.get('ir.ui.view').search(cr, uid, [('name', '=', 'wiki.wiki.tree.children')])
 
58
            value['view_id'] = view_id
 
59
            value['domain'] = [('group_id', '=', group.id), ('parent_id', '=', False)]
 
60
            value['view_type'] = 'tree'
 
61
 
 
62
        return value
 
63
 
 
64
wiki_wiki_page_open()
 
65
 
 
66
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: