From: HDA (OpenERP) Date: Fri, 25 Sep 2009 07:05:12 +0000 (+0530) Subject: Added help wizard file in wiki X-Git-Tag: 6.0.0-rc1-addons~2157 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=7283cee5f510dc56ea0a291773c78dcd0762aac4;p=odoo%2Fodoo.git Added help wizard file in wiki bzr revid: hda@tinyerp.com-20090925070512-f5s0k7rbe0gfbn53 --- diff --git a/addons/wiki/wizard/open_help.py b/addons/wiki/wizard/open_help.py new file mode 100644 index 0000000..eaf1be5 --- /dev/null +++ b/addons/wiki/wizard/open_help.py @@ -0,0 +1,58 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + + +import wizard +import netsvc +import time +import pooler +from osv import osv +from tools.translate import _ + +class wiz_open_help(wizard.interface): + + def _open_wiki_page(self, cr, uid, data, context): + pool = pooler.get_pool(cr.dbname) + pages = pool.get('wiki.wiki').search(cr, uid, [('name','=','Basic Wiki Editing')]) + + value = { + 'name': 'Basic Wiki Editing', + 'view_type': 'form', + 'view_mode': 'form,tree', + 'res_model': 'wiki.wiki', + 'view_id': False, + 'res_id': pages[0], + 'type': 'ir.actions.act_window', + } + + return value + + states = { + 'init' : { + 'actions' : [], + 'result' : {'type':'action', 'action':_open_wiki_page, 'state':'end'} + } + } +wiz_open_help('wiki.wiki.help.open') + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +