helpers.py
changeset 114 d4848d807fd1
parent 113 9fc0eb751b6a
child 115 751e3fcd11d2
equal deleted inserted replaced
113:9fc0eb751b6a 114:d4848d807fd1
   150         if not date :
   150         if not date :
   151             date = self.now()
   151             date = self.now()
   152 
   152 
   153         return date.strftime(self.ctx['prefs'][preferences.date_format])
   153         return date.strftime(self.ctx['prefs'][preferences.date_format])
   154 
   154 
   155     def build_url (self, url, **params) :
   155     def url (self, url, **params) :
   156         """
   156         """
   157             Build URL with our request object
   157             Build URL with our request object
   158         """
   158         """
   159 
   159 
   160         return url.build(self.ctx['req'], **params)
   160         return url.build(self.ctx['req'], **params)
   161     
   161 
       
   162     # old name
       
   163     build_url = url
       
   164 
   162     def utc_timestamp (self, dtz) :
   165     def utc_timestamp (self, dtz) :
   163         """
   166         """
   164             Build an UTC timestamp from the given datetime
   167             Build an UTC timestamp from the given datetime
   165         """
   168         """
   166 
   169