Esempio n. 1
0
 url(r'^internal/calculated_properties/$',
     calculated_properties,
     name='calculated_properties'),
 url(r'^previews/$',
     FeaturePreviewsView.as_view(),
     name=FeaturePreviewsView.urlname),
 url(r'^flags/$',
     FlagsAndPrivilegesView.as_view(),
     name=FlagsAndPrivilegesView.urlname),
 url(r'^project_limits/$',
     ProjectLimitsView.as_view(),
     name=ProjectLimitsView.urlname),
 url(r'^toggle_diff/$', toggle_diff, name='toggle_diff'),
 url(r'^sms_rates/$', SMSRatesView.as_view(), name=SMSRatesView.urlname),
 url(r'^recovery_measures_history/$',
     RecoveryMeasuresHistory.as_view(),
     name=RecoveryMeasuresHistory.urlname),
 url(r'^manage_releases_by_location/$',
     ManageReleasesByLocation.as_view(),
     name=ManageReleasesByLocation.urlname),
 url(r'^manage_releases_by_app_profile/$',
     ManageReleasesByAppProfile.as_view(),
     name=ManageReleasesByAppProfile.urlname),
 url(r'^deactivate_release_restriction/(?P<restriction_id>[\w-]+)/$',
     deactivate_release_restriction,
     name='deactivate_release_restriction'),
 url(r'^activate_release_restriction/(?P<restriction_id>[\w-]+)/$',
     activate_release_restriction,
     name='activate_release_restriction'),
 url(r'^toggle_release_restriction_by_app_profile/(?P<restriction_id>[\w-]+)/$',
     toggle_release_restriction_by_app_profile,
Esempio n. 2
0
    url(r'^forwarding/(?P<repeater_id>[\w-]+)/pause/$', pause_repeater, name='pause_repeater'),
    url(r'^forwarding/(?P<repeater_id>[\w-]+)/resume/$', resume_repeater, name='resume_repeater'),
    url(r'^snapshots/set_published/(?P<snapshot_name>[\w-]+)/$', set_published_snapshot, name='domain_set_published'),
    url(r'^snapshots/set_published/$', set_published_snapshot, name='domain_clear_published'),
    url(r'^snapshots/$', ExchangeSnapshotsView.as_view(), name=ExchangeSnapshotsView.urlname),
    url(r'^transfer/$', TransferDomainView.as_view(), name=TransferDomainView.urlname),
    url(r'^snapshots/new/$', CreateNewExchangeSnapshotView.as_view(), name=CreateNewExchangeSnapshotView.urlname),
    url(r'^multimedia/$', ManageProjectMediaView.as_view(), name=ManageProjectMediaView.urlname),
    url(r'^case_search/$', CaseSearchConfigView.as_view(), name=CaseSearchConfigView.urlname),
    url(r'^domain_links/$', DomainLinkView.as_view(), name=DomainLinkView.urlname),
    url(r'^calendar_settings/$', CalendarFixtureConfigView.as_view(), name=CalendarFixtureConfigView.urlname),
    url(r'^location_settings/$', LocationFixtureConfigView.as_view(), name=LocationFixtureConfigView.urlname),
    url(r'^commtrack/settings/$', RedirectView.as_view(url='commtrack_settings', permanent=True)),
    url(r'^internal/info/$', EditInternalDomainInfoView.as_view(), name=EditInternalDomainInfoView.urlname),
    url(r'^internal/calculations/$', EditInternalCalculationsView.as_view(), name=EditInternalCalculationsView.urlname),
    url(r'^internal/calculated_properties/$', calculated_properties, name='calculated_properties'),
    url(r'^previews/$', FeaturePreviewsView.as_view(), name=FeaturePreviewsView.urlname),
    url(r'^flags/$', FlagsAndPrivilegesView.as_view(), name=FlagsAndPrivilegesView.urlname),
    url(r'^toggle_diff/$', toggle_diff, name='toggle_diff'),
    url(r'^sms_rates/$', SMSRatesView.as_view(), name=SMSRatesView.urlname),
    url(r'^recovery_measures_history/$',
        RecoveryMeasuresHistory.as_view(),
        name=RecoveryMeasuresHistory.urlname),
    url(r'^manage_releases/$', ManageReleases.as_view(), name=ManageReleases.urlname),
    url(r'^deactivate_release_restriction/(?P<restriction_id>[\w-]+)/$', deactivate_release_restriction,
        name='deactivate_release_restriction'),
    url(r'^activate_release_restriction/(?P<restriction_id>[\w-]+)/$', activate_release_restriction,
        name='activate_release_restriction'),
    DomainReportDispatcher.url_pattern()
]