def getDateTimeFormat(value): return '{0:>s} {1:>s}'.format( wulf.getDateFormat(value, wulf.DateFormatType.LONG_FORMAT), wulf.getTimeFormat(value, wulf.TimeFormatType.SHORT_FORMAT))
def getLongDateFormat(value): return wulf.getDateFormat(value, wulf.DateFormatType.LONG_FORMAT)
def getYearMonthFormat(value): return wulf.getDateFormat(value, wulf.DateFormatType.YEAR_MONTH)
def getShortDateFormat(value): return wulf.getDateFormat(value, wulf.DateFormatType.SHORT_FORMAT)