コード例 #1
0
ファイル: urls.py プロジェクト: wangwei917/freenas
         'ds': InitialWizardDSForm.show_condition,
         'import': InitialWizardVolumeImportForm.show_condition,
         'volume': InitialWizardVolumeForm.show_condition,
     },
 ), name='system_initialwizard'),
 url(r'^wizard/progress/$', 'initialwizard_progress', name="system_initialwizard_progress"),
 url(r'^reboot/$', 'reboot', name="system_reboot"),
 url(r'^reboot/dialog/$', 'reboot_dialog', name="system_reboot_dialog"),
 url(r'^reboot/run/$', 'reboot_run', name="system_reboot_run"),
 url(r'^shutdown/$', 'shutdown', name="system_shutdown"),
 url(r'^shutdown/dialog/$', 'shutdown_dialog', name="system_shutdown_dialog"),
 url(r'^shutdown/run/$', 'shutdown_run', name="system_shutdown_run"),
 url(r'^reporting/$', 'reporting', name="system_reporting"),
 url(r'^info/$', 'system_info', name="system_info"),
 url(r'^manualupdate/$', ManualUpdateWizard.as_view(
     [ManualUpdateTemporaryLocationForm, ManualUpdateUploadForm]
 ), name='system_manualupdate'),
 url(r'^manualupdate/progress/$', "manualupdate_progress", name="system_manualupdate_progress"),
 url(r'^bootenv/activate/(?P<name>[^/]+)/$', 'bootenv_activate', name='system_bootenv_activate'),
 url(r'^bootenv/add/$', 'bootenv_add', name='system_bootenv_add'),
 url(r'^bootenv/add/(?P<source>[^/]+)/$', 'bootenv_add', name='system_bootenv_add'),
 url(r'^bootenv/pool/attach/$', 'bootenv_pool_attach', name='system_bootenv_pool_attach'),
 url(r'^bootenv/pool/detach/(?P<label>[^/]+)/$', 'bootenv_pool_detach', name='system_bootenv_pool_detach'),
 url(r'^bootenv/pool/replace/(?P<label>.+)/$', 'bootenv_pool_replace', name='system_bootenv_pool_replace'),
 url(r'^bootenv/scrub/$', 'bootenv_scrub', name='system_bootenv_scrub'),
 url(r'^bootenv/scrub/interval/$', 'bootenv_scrub_interval', name='system_bootenv_scrub_interval'),
 url(r'^bootenv/bulk-delete/$', 'bootenv_deletebulk', name='system_bootenv_deletebulk'),
 url(r'^bootenv/bulk-delete/progress/$', 'bootenv_deletebulk_progress', name='system_bootenv_deletebulk_progress'),
 url(r'^bootenv/delete/(?P<name>[^/]+)/$', 'bootenv_delete', name='system_bootenv_delete'),
 url(r'^bootenv/rename/(?P<name>[^/]+)/$', 'bootenv_rename', name='system_bootenv_rename'),
 url(r'^bootenv/datagrid/$', 'bootenv_datagrid', name='system_bootenv_datagrid'),
コード例 #2
0
ファイル: urls.py プロジェクト: markandrewj/freenas
     name='system_initialwizard'),
 url(r'^wizard/progress/$',
     'initialwizard_progress',
     name="system_initialwizard_progress"),
 url(r'^reboot/$', 'reboot', name="system_reboot"),
 url(r'^reboot/dialog/$', 'reboot_dialog', name="system_reboot_dialog"),
 url(r'^reboot/run/$', 'reboot_run', name="system_reboot_run"),
 url(r'^shutdown/$', 'shutdown', name="system_shutdown"),
 url(r'^shutdown/dialog/$',
     'shutdown_dialog',
     name="system_shutdown_dialog"),
 url(r'^shutdown/run/$', 'shutdown_run', name="system_shutdown_run"),
 url(r'^reporting/$', 'reporting', name="system_reporting"),
 url(r'^info/$', 'system_info', name="system_info"),
 url(r'^manualupdate/$',
     ManualUpdateWizard.as_view(
         [ManualUpdateTemporaryLocationForm, ManualUpdateUploadForm]),
     name='system_manualupdate'),
 url(r'^manualupdate/progress/$',
     "manualupdate_progress",
     name="system_manualupdate_progress"),
 url(r'^bootenv/activate/(?P<name>[^/]+)/$',
     'bootenv_activate',
     name='system_bootenv_activate'),
 url(r'^bootenv/add/$', 'bootenv_add', name='system_bootenv_add'),
 url(r'^bootenv/add/(?P<source>[^/]+)/$',
     'bootenv_add',
     name='system_bootenv_add'),
 url(r'^bootenv/scrub/$', 'bootenv_scrub', name='system_bootenv_scrub'),
 url(r'^bootenv/delete/(?P<name>[^/]+)/$',
     'bootenv_delete',
     name='system_bootenv_delete'),
コード例 #3
0
         'ds': InitialWizardDSForm.show_condition,
         'import': InitialWizardVolumeImportForm.show_condition,
         'volume': InitialWizardVolumeForm.show_condition,
     },
 ), name='system_initialwizard'),
 url(r'^wizard/progress/$', 'initialwizard_progress', name="system_initialwizard_progress"),
 url(r'^reboot/$', 'reboot', name="system_reboot"),
 url(r'^reboot/dialog/$', 'reboot_dialog', name="system_reboot_dialog"),
 url(r'^reboot/run/$', 'reboot_run', name="system_reboot_run"),
 url(r'^shutdown/$', 'shutdown', name="system_shutdown"),
 url(r'^shutdown/dialog/$', 'shutdown_dialog', name="system_shutdown_dialog"),
 url(r'^shutdown/run/$', 'shutdown_run', name="system_shutdown_run"),
 url(r'^reporting/$', 'reporting', name="system_reporting"),
 url(r'^info/$', 'system_info', name="system_info"),
 url(r'^manualupdate/$', ManualUpdateWizard.as_view(
     [ManualUpdateTemporaryLocationForm, ManualUpdateUploadForm]
 ), name='system_manualupdate'),
 url(r'^manualupdate/progress/$', "manualupdate_progress", name="system_manualupdate_progress"),
 url(r'^bootenv/activate/(?P<name>[^/]+)/$', 'bootenv_activate', name='system_bootenv_activate'),
 url(r'^bootenv/add/$', 'bootenv_add', name='system_bootenv_add'),
 url(r'^bootenv/add/(?P<source>[^/]+)/$', 'bootenv_add', name='system_bootenv_add'),
 url(r'^bootenv/pool/attach/$', 'bootenv_pool_attach', name='system_bootenv_pool_attach'),
 url(r'^bootenv/pool/detach/(?P<label>.+)/$', 'bootenv_pool_detach', name='system_bootenv_pool_detach'),
 url(r'^bootenv/pool/replace/(?P<label>.+)/$', 'bootenv_pool_replace', name='system_bootenv_pool_replace'),
 url(r'^bootenv/scrub/$', 'bootenv_scrub', name='system_bootenv_scrub'),
 url(r'^bootenv/scrub/interval/$', 'bootenv_scrub_interval', name='system_bootenv_scrub_interval'),
 url(r'^bootenv/bulk-delete/$', 'bootenv_deletebulk', name='system_bootenv_deletebulk'),
 url(r'^bootenv/bulk-delete/progress/$', 'bootenv_deletebulk_progress', name='system_bootenv_deletebulk_progress'),
 url(r'^bootenv/delete/(?P<name>[^/]+)/$', 'bootenv_delete', name='system_bootenv_delete'),
 url(r'^bootenv/rename/(?P<name>[^/]+)/$', 'bootenv_rename', name='system_bootenv_rename'),
 url(r'^bootenv/keep/(?P<name>[^/]+)/$', 'bootenv_keep', name='system_bootenv_keep'),