def prepare_data(self):
        """ Prepare data for showing on widget loading """

        # Get days abbrs and month names lists
        self.month_names = cal_data.get_month_names()
        self.month_names_eng = cal_data.get_month_names_eng()
        self.days_abrs = cal_data.get_days_abbrs()

        # Today date
        self.active_date = cal_data.today_date_list()
        # Set title
        self.title = "%s - %s" % (self.month_names[self.active_date[1] - 1],
                                  self.active_date[2])

        # Quarter where current month in the self.quarter[1]
        self.get_quarter()
示例#2
0
 def prepare_data(self):
     """ Prepare data for showing on widget loading """
 
     # Get days abbrs and month names lists 
     self.month_names = cal_data.get_month_names()
     self.month_names_eng = cal_data.get_month_names_eng()
     self.days_abrs = cal_data.get_days_abbrs()    
     
     # Today date
     self.active_date = cal_data.today_date_list()
     # Set title
     self.title = "%s - %s" % (self.month_names[self.active_date[1] - 1], 
                               self.active_date[2])
             
     # Quarter where current month in the self.quarter[1]
     self.get_quarter()