fix the problem of the dependency
[odoo/odoo.git] / addons / wiki / wiki.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2004-2006 TINY SPRL. (http://axelor.com) All Rights Reserved.
5 #
6 # WARNING: This program as such is intended to be used by professional
7 # programmers who take the whole responsability of assessing all potential
8 # consequences resulting from its eventual inadequacies and bugs
9 # End users who are looking for a ready-to-use solution with commercial
10 # garantees and support are strongly adviced to contract a Free Software
11 # Service Company
12 #
13 # This program is Free Software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License
15 # as published by the Free Software Foundation; either version 2
16 # of the License, or (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26 #
27 ##############################################################################
28
29 from osv import fields, osv
30 import time
31 from StringIO import StringIO
32 from HTMLParser import HTMLParser
33
34 class WikiGroup(osv.osv):
35     _name = "wiki.groups"
36     _description="Wiki Groups"
37     _order = 'name'
38     _columns={
39        'name':fields.char('Wiki Group', size=256, select=True, required=True),
40        'parent_id':fields.many2one('wiki.groups', 'Parent Group', ondelete='set null'),
41        'child_ids':fields.one2many('wiki.groups', 'parent_id', 'Child Groups'),
42        'page_ids':fields.one2many('wiki.wiki', 'group_id', 'Pages'),
43        'notes':fields.text("Description", select=True),
44        'create_date':fields.datetime("Created Date", select=True),
45        'template': fields.text('Wiki Template'),
46        'section': fields.boolean("Make Section ?"),
47        'home':fields.many2one('wiki.wiki', 'Pages')
48     }
49 WikiGroup()
50
51 class GroupLink(osv.osv):
52     _name = "wiki.groups.link"
53     _description="Wiki Groups Links"
54     _rec_name = 'action_id'
55     _columns={
56        'group_id':fields.many2one('wiki.groups', 'Parent Group', ondelete='set null'),
57        'action_id': fields.many2one('ir.ui.menu', 'Menu')
58     }
59 GroupLink()
60
61 class Wiki(osv.osv):
62     _name="wiki.wiki"
63     _description="Wiki Page"
64     _order = 'section,create_date desc'
65     _columns={
66         'name':fields.char('Title', size=256, select=True, required=True),
67         'write_uid':fields.many2one('res.users',"Last Author"),
68         'text_area':fields.text("Content", select=True),
69         'create_uid':fields.many2one('res.users','Author', select=True),
70         'create_date':fields.datetime("Created on", select=True),
71         'write_date':fields.datetime("Modification Date", select=True),
72         'tags':fields.char('Tags', size=1024),
73         'history_id':fields.one2many('wiki.wiki.history','wiki_id','History Lines'),
74         'minor_edit':fields.boolean('Minor edit', select=True),
75         'summary':fields.char('Summary',size=256, select=True),
76         'section': fields.char('Section', size=32, help="Use page section code like 1.2.1"),
77         'group_id':fields.many2one('wiki.groups', 'Wiki Group', select=1, ondelete='set null'),
78         'toc':fields.boolean('Table of Contents'),
79         'review': fields.boolean('Need Review')
80     }
81     def onchange_group_id(self, cr, uid, ids, group_id, content, context={}):
82         if (not group_id) or content:
83             return {}
84         grp = self.pool.get('wiki.groups').browse(cr, uid, group_id)
85         section = '0'
86         for page in grp.page_ids:
87             if page.section: section = page.section
88         s = section.split('.')
89         template = grp.template
90         try:
91             s[-1] = str(int(s[-1])+1)
92         except:
93             pass
94         section = '.'.join(s)
95         return {
96             'value':{
97                 'text_area': template,
98                 'section': section
99             }
100         }
101     def copy(self, cr, uid, id, default=None, context=None):
102         return super(Wiki, self).copy(cr, uid, id, {'wiki_id':False}, context)
103
104     def write(self, cr, uid, ids, vals, context=None):
105         result = super(Wiki,self).write(cr, uid, ids, vals, context)
106         history = self.pool.get('wiki.wiki.history')
107         if vals.get('text_area'):
108             for id in ids:
109                 res = {
110                     'minor_edit':vals.get('minor_edit', True),
111                     'text_area':vals.get('text_area',''),
112                     'write_uid':uid,
113                     'wiki_id' : id,
114                     'summary':vals.get('summary','')
115                 }
116                 history.create(cr, uid, res)
117         return result
118
119 Wiki()
120
121 class History(osv.osv):
122     _name="wiki.wiki.history"
123     _description="Wiki History"
124     _rec_name="date_time"
125     _order = 'id DESC'
126     _columns={
127       'create_date':fields.datetime("Date",select=True),
128       'text_area':fields.text("Text area",select=True),
129       'minor_edit':fields.boolean('This is a major edit ?',select=True),
130       'summary':fields.char('Summary',size=256, select=True),
131       'write_uid':fields.many2one('res.users',"Modify By", select=True),
132       'wiki_id':fields.many2one('wiki.wiki','Wiki Id', select=True)
133     }
134     _defaults = {
135         'write_uid': lambda obj,cr,uid,context: uid,
136     }
137     def getDiff(self, cr, uid, v1, v2, context={}):
138         import difflib
139         history_pool = self.pool.get('wiki.wiki.history')
140         text1 = history_pool.read(cr, uid, [v1], ['text_area'])[0]['text_area']
141         text2 = history_pool.read(cr, uid, [v2], ['text_area'])[0]['text_area']
142         line1 = text1.splitlines(1)
143         line2 = text2.splitlines(1)
144         diff = difflib.HtmlDiff()
145         return diff.make_file(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=False)
146 History()