# -*- coding: utf-8 -*- from django.conf.urls import include, patterns, url from exposition.views import ExpositionSearchView from .views import ( ConferenceByCity, ConferenceByCountry, ConferenceByTag, ConferenceByTheme, ConferenceCityCatalog, ConferenceCountryCatalog, ConferenceDetail, ConferenceList, ConferenceMembers, ConferencePhotoView, ConferenceServiceView, ConferenceTagCatalog, ConferenceThankView, ConferenceThemeCatalog, ConferenceVisitors ) urlpatterns = patterns('', url(r'^conference-add-calendar/(?P\d+)/$', 'conference.views.conference_add_calendar', name='conference_add_calendar' ), # url(r'^conference-visit/(?P\d+)/$', 'conference.views.conference_visit'), # search url(r'^conference/search/', ExpositionSearchView.as_view()), # country catalog url(r'^conference/country/$', ConferenceByCountry.as_view(), {'meta_id':51}, name='conference_country'), url(r'^conference/country/(?P[^/]*)/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceCountryCatalog.as_view(), {'meta_id':25}, name='conference_country_catalog_slug_year_month_page'), url(r'^conference/country/(?P[^/]*)/(?P\d+)/page/(?P\d+)/$', ConferenceCountryCatalog.as_view(), {'meta_id':24}, name='conference_country_catalog_slug_year_page' ), url(r'^conference/country/(?P[^/]*)/page/(?P\d+)/$', ConferenceCountryCatalog.as_view(), {'meta_id':23}, name='conference_country_catalog_slug_page'), url(r'^conference/country/(?P[^/]*)/(?P\d+)/(?P[^/]*)/$', ConferenceCountryCatalog.as_view(), {'meta_id':25}, name='conference_country_catalog_slug_year_month'), url(r'^conference/country/(?P[^/]*)/(?P\d+)/$', ConferenceCountryCatalog.as_view(), {'meta_id':24}, name='conference_country_catalog_slug_year'), url(r'^conference/country/(?P[^/]*)/$', ConferenceCountryCatalog.as_view(), {'meta_id':23}, name='conf_country'), # city catalog url(r'^conference/city/$', ConferenceByCity.as_view(), {'meta_id':52}, name='conference_city'), url(r'^conference/city/(?P[^/]*)/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceCityCatalog.as_view(), {'meta_id':28}, name='conference_city_catalog_slug_year_month_page'), url(r'^conference/city/(?P[^/]*)/(?P\d+)/page/(?P\d+)/$', ConferenceCityCatalog.as_view(), {'meta_id':27}, name='conference_city_catalog_slug_year_page'), url(r'^conference/city/(?P[^/]*)/page/(?P\d+)/$', ConferenceCityCatalog.as_view(), {'meta_id':26}, name='conference_city_catalog_slug_page'), url(r'^conference/city/(?P[^/]*)/(?P\d+)/(?P[^/]*)/$', ConferenceCityCatalog.as_view(), {'meta_id':28}, name='conference_city_catalog_slug_year_month'), url(r'^conference/city/(?P[^/]*)/(?P\d+)/$', ConferenceCityCatalog.as_view(), {'meta_id':27}, name='conference_city_catalog_slug_year'), url(r'^conference/city/(?P[^/]*)/$', ConferenceCityCatalog.as_view(), {'meta_id':26}, name='conf_city'), # theme catalog url(r'^conference/theme/$', ConferenceByTheme.as_view(), {'meta_id':50}, name='conference_theme'), url(r'^conference/theme/(?P[^/]*)/country/(?P[^/]*)/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_countryslug_year_month_page'), url(r'^conference/theme/(?P[^/]*)/country/(?P[^/]*)/(?P\d+)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_countryslug_year_page'), url(r'^conference/theme/(?P[^/]*)/country/(?P[^/]*)/(?P\d+)/(?P[^/]*)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_countryslug_year_month'), url(r'^conference/theme/(?P[^/]*)/country/(?P[^/]*)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_countryslug_page'), url(r'^conference/theme/(?P[^/]*)/country/(?P[^/]*)/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_countryslug_year'), url(r'^conference/theme/(?P[^/]*)/country/(?P[^/]*)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_countryslug'), url(r'^conference/theme/(?P[^/]*)/city/(?P[^/]*)/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_cityslug_year_month_page'), url(r'^conference/theme/(?P[^/]*)/city/(?P[^/]*)/(?P\d+)/(?P[^/]*)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_cityslug_year_month'), url(r'^conference/theme/(?P[^/]*)/city/(?P[^/]*)/(?P\d+)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_cityslug_year_page'), url(r'^conference/theme/(?P[^/]*)/city/(?P[^/]*)/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_cityslug_year'), url(r'^conference/theme/(?P[^/]*)/city/(?P[^/]*)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_cityslug_page'), url(r'^conference/theme/(?P[^/]*)/city/(?P[^/]*)/$', ConferenceThemeCatalog.as_view(), name='conference_theme_catalog_slug_cityslug'), url(r'^conference/theme/(?P[^/]*)/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), {'meta_id':31}, name='conference_theme_catalog_slug_year_month_page'), url(r'^conference/theme/(?P[^/]*)/(?P\d+)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), {'meta_id':30}, name='conference_theme_catalog_slug_year_page'), url(r'^conference/theme/(?P[^/]*)/page/(?P\d+)/$', ConferenceThemeCatalog.as_view(), {'meta_id':29}, name='conference_theme_catalog_slug_page'), url(r'^conference/theme/(?P[^/]*)/(?P\d+)/(?P[^/]*)/$', ConferenceThemeCatalog.as_view(), {'meta_id':31}, name='conference_theme_catalog_slug_year_month'), url(r'^conference/theme/(?P[^/]*)/(?P\d+)/$', ConferenceThemeCatalog.as_view(), {'meta_id':30}, name='conference_theme_catalog_slug_year'), url(r'^conference/theme/(?P[^/]*)/$', ConferenceThemeCatalog.as_view(), {'meta_id':29}, name='conference_theme_catalog_slug'), # tag catalog url(r'^conference/tag/$', ConferenceByTag.as_view(), {'meta_id':50}, name='conference_tag'), url(r'^conference/tag/(?P[^/]*)/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceTagCatalog.as_view(), {'meta_id':34}), url(r'^conference/tag/(?P[^/]*)/(?P\d+)/page/(?P\d+)/$', ConferenceTagCatalog.as_view(), {'meta_id':33}), url(r'^conference/tag/(?P[^/]*)/page/(?P\d+)/$', ConferenceTagCatalog.as_view(), {'meta_id':32}), url(r'^conference/tag/(?P[^/]*)/(?P\d+)/(?P[^/]*)/$', ConferenceTagCatalog.as_view(), {'meta_id':34}), url(r'^conference/tag/(?P[^/]*)/(?P\d+)/$', ConferenceTagCatalog.as_view(), {'meta_id':33}), url(r'^conference/tag/(?P[^/]*)/$', ConferenceTagCatalog.as_view(), {'meta_id':32}), # conf additional pages url(r'^conference/(?P[^/]*)/send_to_organiser/$', 'conference.views.send_to_organiser'), url(r'^conference/(?P[^/]*)/photo/page/(?P\d+)/$', ConferencePhotoView.as_view(), {'meta_id': 93}), url(r'^conference/(?P[^/]*)/photo/$', ConferencePhotoView.as_view(), {'meta_id': 93}), url(r'^conference/(?P[^/]*)/visitors/page/(?P\d+)/$', ConferenceVisitors.as_view()), url(r'^conference/(?P[^/]*)/visitors/$', ConferenceVisitors.as_view()), url(r'^conference/(?P[^/]*)/members/page/(?P\d+)/$', ConferenceMembers.as_view()), url(r'^conference/(?P[^/]*)/members/$', ConferenceMembers.as_view()), url(r'^conference/(?P[^/]*)/service/thanks/', ConferenceThankView.as_view()), url(r'^conference/(?P[^/]*)/service/visit/', 'conference.views.visit_redirect'), url(r'^conference/(?P[^/]*)/service/(?P[^/]*)/', ConferenceServiceView.as_view()), # conf list url(r'^conference/(?P\d+)/(?P[^/]*)/page/(?P\d+)/$', ConferenceList.as_view(), {'meta_id':22}), url(r'^conference/(?P\d+)/page/(?P\d+)/$', ConferenceList.as_view(), {'meta_id':21}), url(r'^conference/(?P\d+)/(?P[^/]*)/$', ConferenceList.as_view(), {'meta_id':22}), url(r'^conference/(?P\d+)/$', ConferenceList.as_view(), {'meta_id':21}), url(r'^conference/page/(?P\d+)/$', ConferenceList.as_view(), {'meta_id':20}), # conf page url(r'^conference/(?P[^/]*)/$', ConferenceDetail.as_view(), {'meta_id':35}), url(r'^conference/$', ConferenceList.as_view(), {'meta_id':20}), ) """ """