Added some missing copyright headers.
[zeroinstall/zeroinstall-mseaborn.git] / zeroinstall / 0launch-gui / freshness.py
blob4a7531f61e38f2606d75c4b0d0dca41b38c4172f
1 # Copyright (C) 2008, Thomas Leonard
2 # See the README file for details, or visit http://0install.net.
4 class Freshness(object):
5 __slots__ = ['time', 'text']
7 def __init__(self, time, text):
8 self.time = time
9 self.text = text
11 def __str__(self):
12 return self.text
14 freshness_levels = [
15 Freshness(-1, 'No automatic updates'),
16 #Freshness(60, 'Up to one minute old'),
17 #Freshness(60 * 60, 'Up to one hour old'),
18 Freshness(24 * 60 * 60, 'Up to one day old'),
19 Freshness(7 * 24 * 60 * 60, 'Up to one week old'),
20 Freshness(30 * 24 * 60 * 60, 'Up to one month old'),
21 Freshness(365 * 24 * 60 * 60, 'Up to one year old'),