~ubuntu-branches/ubuntu/natty/tryton-server/natty-security

« back to all changes in this revision

Viewing changes to trytond/ir/date.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann, Daniel Baumann, Mathias Behrle
  • Date: 2009-04-21 19:27:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090421192700-hmiosex03jt5qf01
Tags: 1.2.0-1
[ Daniel Baumann ]
* Merging upstream version 1.2.0.
* Tidy rules files.
* Updating version information in manpage.
* Updating copyright file for new upstream release.
* Including TODO file in docs.

[ Mathias Behrle ]
* Updating application description.

[ Daniel Baumann ]
* Correcting wrapping of control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#This file is part of Tryton.  The COPYRIGHT file at the top level
2
2
#of this repository contains the full copyright notices and license terms.
3
 
 
4
 
from trytond.osv import OSV, fields
 
3
from trytond.model import Model
5
4
import datetime
6
5
 
7
6
 
8
 
class Date(OSV):
 
7
class Date(Model):
9
8
    'Date'
10
9
    _name = 'ir.date'
11
10
    _description = __doc__