* Few changes, fields in history
[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     }
47 WikiGroup()
48
49
50 class Wiki(osv.osv):
51     _name="wiki.wiki"
52     _description="Wiki Page"
53     _order = 'section,create_date desc'
54     _columns={
55         'name':fields.char('Title', size=256, select=True, required=True),
56         'write_uid':fields.many2one('res.users',"Last Modified By"),
57         'text_area':fields.text("Content", select=True),
58         'create_uid':fields.many2one('res.users','Author', select=True),
59         'create_date':fields.datetime("Created on", select=True),
60         'write_date':fields.datetime("Last modified", select=True),
61         'tags':fields.char('Tags', size=1024),
62         'history_id':fields.one2many('wiki.wiki.history','history_wiki_id','History Lines'),
63         'minor_edit':fields.boolean('Minor edit', select=True),
64         'summary':fields.char('Summary',size=256, select=True),
65         'section': fields.char('Section', size=32, help="Use page section code like 1.2.1"),
66         'group_id':fields.many2one('wiki.groups', 'Wiki Group', select=1, ondelete='set null'),
67     }
68     def onchange_group_id(self, cr, uid, ids, group_id, content, context={}):
69         if (not group_id) or content:
70             return {}
71         grp = self.pool.get('wiki.groups').browse(cr, uid, group_id)
72         section = '0'
73         for page in grp.page_ids:
74             if page.section: section = page.section
75         s = section.split('.')
76         template = grp.template
77         try:
78             s[-1] = str(int(s[-1])+1)
79         except:
80             pass
81         section = '.'.join(s)
82         return {
83             'value':{
84                 'text_area': template,
85                 'section': section
86             }
87         }
88
89     def write(self, cr, uid, ids, vals, context=None):
90         result = super(Wiki,self).write(cr, uid, ids, vals, context)
91         history = self.pool.get('wiki.wiki.history')
92         
93         if vals.get('text_area'):
94             for id in ids:
95                 res = {
96                     'minor_edit':vals.get('minor_edit', True),
97                     'text_area':vals.get('text_area',''),
98                     'write_uid':uid,
99                     'wiki_id' : id,
100                     'summary':vals.get('summary','')
101                 }
102                 history.create(cr, uid, res)
103         return result
104
105 Wiki()
106
107 class History(osv.osv):
108     _name="wiki.wiki.history"
109     _description="Wiki History"
110     _rec_name="date_time"
111     _order = 'id DESC'
112     _columns={
113       'create_date':fields.datetime("Date",select=True),
114       'text_area':fields.text("Text area",select=True),
115       'minor_edit':fields.boolean('This is a major edit ?',select=True),
116       'summary':fields.char('Summary',size=256, select=True),
117       'write_uid':fields.many2one('res.users',"Modify By", select=True),
118       'wiki_id':fields.many2one('wiki.wiki','Wiki Id', select=True)
119     }
120     _defaults = {
121         'write_uid': lambda obj,cr,uid,context: uid,
122     }
123     def getDiff(self, cr, uid, v1, v2, context={}):
124         import difflib
125         history_pool = self.pool.get('wiki.wiki.history')
126         text1 = history_pool.read(cr, uid, [v1], ['text_area'])[0]['text_area']
127         text2 = history_pool.read(cr, uid, [v2], ['text_area'])[0]['text_area']
128         line1 = text1.splitlines(1)
129         line2 = text2.splitlines(1)
130         diff = difflib.HtmlDiff()
131         return diff.make_file(line1, line2, "Revision-%s" % (v1), "Revision-%s" % (v2), context=False)
132 History()