[IMP] point_of_sale: re-use the /web provided font-awesome font
[odoo/odoo.git] / openerp / tools / win32.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #    
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 import locale
23 import time
24 import datetime
25
26 if not hasattr(locale, 'D_FMT'):
27     locale.D_FMT = 1
28
29 if not hasattr(locale, 'T_FMT'):
30     locale.T_FMT = 2
31
32 if not hasattr(locale, 'nl_langinfo'):
33     def nl_langinfo(param):
34         if param == locale.D_FMT:
35             val = time.strptime('30/12/2004', '%d/%m/%Y')
36             dt = datetime.datetime(*val[:-2])
37             format_date = dt.strftime('%x')
38             for x, y in [('30', '%d'),('12', '%m'),('2004','%Y'),('04', '%Y')]:
39                 format_date = format_date.replace(x, y)
40             return format_date
41         if param == locale.T_FMT:
42             val = time.strptime('13:24:56', '%H:%M:%S')
43             dt = datetime.datetime(*val[:-2])
44             format_time = dt.strftime('%X')
45             for x, y in [('13', '%H'),('24', '%M'),('56','%S')]:
46                 format_time = format_time.replace(x, y)
47             return format_time
48     locale.nl_langinfo = nl_langinfo
49
50 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: