Merge branch '0.6.4' into dev
[astakos] / snf-astakos-app / astakos / im / templatetags / filters.py
1 # Copyright 2011-2012 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34 import calendar
35 import datetime
36
37 from django import template
38
39 from astakos.im.settings import PAGINATE_BY
40
41 register = template.Library()
42
43 @register.filter
44 def monthssince(joined_date):
45     now = datetime.datetime.now()
46     date = datetime.datetime(year=joined_date.year, month=joined_date.month, day=1)
47     months = []
48     
49     month = date.month
50     year = date.year
51     timestamp=calendar.timegm( date.utctimetuple() )
52     
53     while date < now:
54         months.append((year, month, timestamp))
55         
56         if date.month < 12:
57             month = date.month + 1
58             year = date.year
59         else:
60             month = 1
61             year = date.year + 1
62             
63         date = datetime.datetime(year=year, month=month, day=1)
64         timestamp=calendar.timegm( date.utctimetuple() )
65         
66     return months
67     
68 @register.filter
69 def lookup(d, key):
70     return d.get(key)
71
72
73 @register.filter
74 def dkeys(d):
75     return d.keys()
76
77
78 @register.filter
79 def month_name(month_number):
80     return calendar.month_name[month_number]
81     
82
83 @register.filter
84 def todate(value, arg = ''):
85     secs = int(value) / 1000
86     return datetime.datetime.fromtimestamp(secs)
87
88
89 @register.filter
90 def rcut(value, chars = '/'):
91     return value.rstrip(chars)