appy.gen: configured ckeditor for Appy; bugfix in jscalendar integration.

This commit is contained in:
Gaetan Delannay 2012-01-02 16:59:11 +01:00
parent 0e7dfa3aaf
commit 98fafad14a
81 changed files with 5329 additions and 271 deletions

View file

@ -807,14 +807,6 @@ class ToolMixin(BaseMixin):
if len(value) > numberOfChars: return value[:numberOfChars] + '...'
return value
monthsIds = {
1: 'month_jan', 2: 'month_feb', 3: 'month_mar', 4: 'month_apr',
5: 'month_may', 6: 'month_jun', 7: 'month_jul', 8: 'month_aug',
9: 'month_sep', 10: 'month_oct', 11: 'month_nov', 12: 'month_dec'}
def getMonthName(self, monthNumber):
'''Gets the translated month name of month numbered p_monthNumber.'''
return self.translate(self.monthsIds[int(monthNumber)])
# --------------------------------------------------------------------------
# Authentication-related methods
# --------------------------------------------------------------------------