+
+MARKUP_FIELD_TYPES = (
+ ('textile_pl', textile_pl),
+)
+
+MIGDAL_TYPES = (
+ EntryType('news', _('news'), commentable=False, on_main=True, promotable=True),
+ EntryType('publications', _('publications'), commentable=False),
+ EntryType('info', _('info'), commentable=False),
+ EntryType('event', _('events'), commentable=False),
+)
+
+MIGDAL_OPTIONAL_LANGUAGES = (
+ ('en', u'English'),
+)
+
+REST_FRAMEWORK = {
+ "DEFAULT_RENDERER_CLASSES": (
+ 'rest_framework.renderers.JSONRenderer',
+ 'rest_framework.renderers.BrowsableAPIRenderer',
+ 'api.renderers.LegacyXMLRenderer',
+ ),
+ 'DEFAULT_AUTHENTICATION_CLASSES': (
+ 'api.drf_auth.PistonOAuthAuthentication',
+ )
+}