Package Camelot :: Package camelot :: Package core :: Module constants
[frames] | no frames]

Source Code for Module Camelot.camelot.core.constants

 1  """ 
 2  Created on Jul 19, 2009 
 3   
 4  @author: tw55413 
 5  """ 
 6   
 7  camelot_maxint = 2147483647 
 8  camelot_minint = -2147483648 
 9  camelot_maxfloat = 1e15 
10  camelot_minfloat = -1e15 
11  camelot_time_format = 'hh:mm' 
12  strftime_time_format = '%H:%M' 
13  camelot_datetime_format = 'dd-MM-yyyy hh:mm' 
14  strftime_datetime_format = '%d-%m-%Y %H:%M' 
15  camelot_date_format = 'dd-MM-yyyy' 
16  strftime_date_format = '%d-%m-%Y' 
17  camelot_small_icon_width = 16 
18  camelot_small_icon_height = 16 
19