10000 commcare-hq/urls.py at 82630-Registration · lwyszomi/commcare-hq · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":".travis","path":".travis","contentType":"directory"},{"name":"apache","path":"apache","contentType":"directory"},{"name":"app_builder_live_test","path":"app_builder_live_test","contentType":"directory"},{"name":"corehq","path":"corehq","contentType":"directory"},{"name":"custom","path":"custom","contentType":"directory"},{"name":"docs","path":"docs","contentType":"directory"},{"name":"hqscripts","path":"hqscripts","contentType":"directory"},{"name":"loadtest","path":"loadtest","contentType":"directory"},{"name":"locale","path":"locale","contentType":"directory"},{"name":"requirements","path":"requirements","contentType":"directory"},{"name":"scripts","path":"scripts","contentType":"directory"},{"name":"services","path":"services","contentType":"directory"},{"name":"staticmedia","path":"staticmedia","contentType":"directory"},{"name":"submodules","path":"submodules","contentType":"directory"},{"name":".coveragerc","path":".coveragerc","contentType":"file"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".gitmodules","path":".gitmodules","contentType":"file"},{"name":".travis.yml","path":".travis.yml","contentType":"file"},{"name":"LICENSE","path":"LICENSE","contentType":"file"},{"name":"PRODUCTION-INSTALL.md","path":"PRODUCTION-INSTALL.md","contentType":"file"},{"name":"README.md","path":"README.md","contentType":"file"},{"name":"RHEL-INSTALL.rst","path":"RHEL-INSTALL.rst","contentType":"file"},{"name":"__init__.py","path":"__init__.py","contentType":"file"},{"name":"fabfile.py","path":"fabfile.py","contentType":"file"},{"name":"install.sh","path":"install.sh","contentType":"file"},{"name":"localsettings.example.py","path":"localsettings.example.py","contentType":"file"},{"name":"manage.py","path":"manage.py","contentType":"file"},{"name":"settings.py","path":"settings.py","contentType":"file"},{"name":"settingshelper.py","path":"settingshelper.py","contentType":"file"},{"name":"testrunner.py","path":"testrunner.py","contentType":"file"},{"name":"urls.py","path":"urls.py","contentType":"file"}],"totalCount":31}},"fileTreeProcessingTime":10.457739,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":12557346,"defaultBranch":"master","name":"commcare-hq","ownerLogin":"lwyszomi","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2013-09-03T07:05:35.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/429541?v=4","public":true,"private":false,"isOrgOwned":false},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"82630-Registration","listCacheKey":"v0:1574410059.0","canEdit":false,"refType":"branch","currentOid":"05d0ff9b12311c314ff3f8df09e0babc0902aab9"},"path":"urls.py","currentUser":null,"blob":{"rawLines":["from django.conf import settings","from django.conf.urls.defaults import patterns, url, include","from django.views.generic import TemplateView, RedirectView","from corehq.apps.domain.utils import legacy_domain_re","","# Uncomment the next two lines to enable the admin:","from django.contrib import admin","from corehq.apps.orgs.urls import organizations_urls","from corehq.apps.reports.urls import report_urls","","try:"," from localsettings import LOCAL_APP_URLS","except ImportError:"," LOCAL_APP_URLS = ()","admin.autodiscover()","","handler500 = 'corehq.apps.hqwebapp.views.server_error'","handler404 = 'corehq.apps.hqwebapp.views.not_found'","","from corehq.apps.hqwebapp.urls import domain_specific as hqwebapp_domain_specific","from corehq.apps.settings.urls import domain_specific as settings_domain_specific","from corehq.apps.settings.urls import users_redirect, domain_redirect","from corehq.apps.adm.urls import adm_admin_interface_urls","from corehq.apps.sms.urls import sms_admin_interface_urls","","","domain_specific = patterns('',"," url(r'^logo.png', 'corehq.apps.domain.views.logo', name='logo'),"," (r'^apps/', include('corehq.apps.app_manager.urls')),"," (r'^api/', include('corehq.apps.api.urls')),"," # the receiver needs to accept posts at an endpoint that might"," # not have a slash, so don't include it at the root urlconf"," (r'^receiver', include('corehq.apps.receiverwrapper.urls')),"," (r'^migration/', include('corehq.apps.migration.urls')),"," (r'^settings/', include(settings_domain_specific)),"," (r'^users/', include(users_redirect)),"," (r'^domain/', include(domain_redirect)),"," (r'^groups/', include('corehq.apps.groups.urls')),"," (r'^phone/', include('corehq.apps.ota.urls')),"," (r'^phone/', include('corehq.apps.mobile_auth.urls')),"," (r'^sms/', include('corehq.apps.sms.urls')),"," (r'^commtrack/', include('corehq.apps.commtrack.urls')),"," (r'^reminders/', include('corehq.apps.reminders.urls')),"," (r'^indicators/mvp/', include('mvp.urls')),"," (r'^indicators/', include('corehq.apps.indicators.urls')),"," (r'^reports/adm/', include('corehq.apps.adm.urls')),"," (r'^reports/', include('corehq.apps.reports.urls')),"," (r'^data/', include('corehq.apps.data_interfaces.urls')),"," (r'^', include(hqwebapp_domain_specific)),"," (r'^case/', include('corehq.apps.hqcase.urls')),"," (r'^cleanup/', include('corehq.apps.cleanup.urls')),"," (r'^phonelog/', include('phonelog.urls')),"," (r'^cloudcare/', include('corehq.apps.cloudcare.urls')),"," (r'^fixtures/', include('corehq.apps.fixtures.urls')),"," (r'^importer/', include('corehq.apps.importer.urls')),"," (r'^sqlextract/', include('ctable_view.urls')),"," (r'^fri/', include('custom.fri.urls')),",")","","urlpatterns = patterns('',"," (r'^favicon\\.ico$', RedirectView.as_view(url='%shqwebapp/img/favicon2.png' % settings.STATIC_URL)),"," (r'^auditcare/', include('auditcare.urls')),"," (r'^admin/', include(admin.site.urls)),"," (r'^register/', include('corehq.apps.registration.urls')),"," (r'^a/(?P\u003cdomain\u003e%s)/' % legacy_domain_re, include(domain_specific)),"," (r'^o/', include('corehq.apps.orgs.urls')),"," (r'^organizations/', include(organizations_urls)),"," (r'^account/', include('corehq.apps.settings.urls')),"," (r'^couch/', include('djangocouch.urls')),"," (r'^project_store(.*)$', 'corehq.apps.appstore.views.rewrite_url'),"," (r'^exchange/', include('corehq.apps.appstore.urls')),"," (r'^webforms/', include('touchforms.formplayer.urls')),"," (r'', include('corehq.apps.hqwebapp.urls')),"," (r'', include('corehq.apps.domain.urls')),"," (r'^adm/', include(adm_admin_interface_urls)),"," (r'^announcements/', include('corehq.apps.announcements.urls')),"," (r'^hq/sms/', include(sms_admin_interface_urls)),"," (r'^hq/billing/', include('hqbilling.urls')),"," (r'^hq/multimedia/', include('corehq.apps.hqmedia.urls')),"," (r'^hq/admin/', include('corehq.apps.hqadmin.urls')),"," (r'^hq/prescriptions/', include('corehq.apps.prescriptions.urls')),"," (r'^hq/reports/', include(report_urls)),"," (r'^couchlog/', include('couchlog.urls')),"," (r'^formtranslate/', include('formtranslate.urls')),"," (r'^unicel/', include('corehq.apps.unicel.urls')),"," (r'^tropo/', include('corehq.apps.tropo.urls')),"," (r'^twilio/', include('corehq.apps.twilio.urls')),"," (r'^telerivet/', include('corehq.apps.telerivet.urls')),"," (r'^kookoo/', include('corehq.apps.kookoo.urls')),"," (r'^yo/', include('corehq.apps.yo.urls')),"," (r'^gvi/', include('corehq.apps.grapevine.urls')),"," (r'^sislog/', include('corehq.apps.sislog.urls')),"," (r'^langcodes/', include('langcodes.urls')),"," (r'^builds/', include('corehq.apps.builds.urls')),"," (r'^downloads/temp/', include('soil.urls')),"," (r'^test/CommCare.jar', 'corehq.apps.app_manager.views.download_test_jar'),"," (r'^translations/', include('corehq.apps.translations.urls')),"," (r'^sqlextract/', include('ctable_view.urls')),"," (r'^500/$', TemplateView.as_view(template_name='500.html')),"," (r'^404/$', TemplateView.as_view(template_name='404.html')),"," url(r'^eula_basic/$', TemplateView.as_view(template_name='eula.html'), name='eula_basic'),"," url(r'^eula/$', 'corehq.apps.hqwebapp.views.eula', name='eula'),"," url(r'^apache_license_basic/$', TemplateView.as_view(template_name='apache_license.html'), name='apache_license_basic'),"," url(r'^apache_license/$', 'corehq.apps.hqwebapp.views.apache_license', name='apache_license'),"," url(r'^bsd_license_basic/$', TemplateView.as_view(template_name='bsd_license.html'), name='bsd_license_basic'),"," url(r'^bsd_license/$', 'corehq.apps.hqwebapp.views.bsd_license', name='bsd_license'),"," url(r'^exchange/cda_basic/$', TemplateView.as_view(template_name='cda.html'), name='cda_basic'),"," url(r'^exchange/cda/$', 'corehq.apps.hqwebapp.views.cda', name='cda'),"," url(r'^sms_in/$', 'corehq.apps.sms.views.sms_in', name='sms_in'),"," url(r'^unsubscribe/(?P\u003cuser_id\u003e[\\w-]+)/', 'corehq.apps.hqwebapp.views.unsubscribe', name='unsubscribe'),"," (r'^wisepill/', include('custom.apps.wisepill.urls')),",") + patterns('', *LOCAL_APP_URLS)","","# django rosetta support if configured","if 'rosetta' in settings.INSTALLED_APPS:"," urlpatterns += patterns('',"," url(r'^rosetta/', include('rosetta.urls')),"," )","","#django-staticfiles static/ url mapper","if settings.DEBUG:"," urlpatterns += patterns('django.contrib.staticfiles.views',"," url(r'^static/(?P\u003cpath\u003e.*)$', 'serve'),"," )"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/lwyszomi/commcare-hq/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"urls.py","displayUrl":"https://github.com/lwyszomi/commcare-hq/blob/82630-Registration/urls.py?raw=true","headerInfo":{"blobSize":"6.27 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"8c998d7","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Flwyszomi%2Fcommcare-hq%2Fblob%2F82630-Registration%2Furls.py","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"125","truncatedSloc":"115"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"Python","languageID":303,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/lwyszomi/commcare-hq/blob/82630-Registration/urls.py","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/lwyszomi/commcare-hq/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/lwyszomi/commcare-hq/raw/refs/heads/82630-Registration/urls.py","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":false,"symbols":[{"name":"handler500","kind":"constant","ident_start":513,"ident_end":523,"extent_start":513,"extent_end":567,"fully_qualified_name":"handler500","ident_utf16":{"start":{"line_number":16,"utf16_col":0},"end":{"line_number":16,"utf16_col":10}},"extent_utf16":{"start":{"line_number":16,"utf16_col":0},"end":{"line_number":16,"utf16_col":54}}},{"name":"handler404","kind":"constant","ident_start":568,"ident_end":578,"extent_start":568,"extent_end":619,"fully_qualified_name":"handler404","ident_utf16":{"start":{"line_number":17,"utf16_col":0},"end":{"line_number":17,"utf16_col":10}},"extent_utf16":{"start":{"line_number":17,"utf16_col":0},"end":{"line_number":17,"utf16_col":51}}},{"name":"domain_specific","kind":"constant","ident_start":973,"ident_end":988,"extent_start":973,"extent_end":2684,"fully_qualified_name":"domain_specific","ident_utf16":{"start":{"line_number":26,"utf16_col":0},"end":{"line_number":26,"utf16_col":15}},"extent_utf16":{"start":{"line_number":26,"utf16_col":0},"end":{"line_number":57,"utf16_col":1}}},{"name":"urlpatterns","kind":"constant","ident_start":2686,"ident_end":2697,"extent_start":2686,"extent_end":6067,"fully_qualified_name":"urlpatterns","ident_utf16":{"start":{"line_number":59,"utf16_col":0},"end":{"line_number":59,"utf16_col":11}},"extent_utf16":{"start":{"line_number":59,"utf16_col":0},"end":{"line_number":111,"utf16_col":33}}}]}},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/lwyszomi/commcare-hq/branches":{"post":"7D5K7WKWEBSLxnR_yi-BUvYEVzGBHhpTZGqre0pqEz_4kYA0Qbt3MY8pigiMyOiFRxe9YhDQlMIsOKlLEKX6VQ"},"/repos/preferences":{"post":"hrerTNO4xddK2JEkYPw9MN7VQ2ZPRhv7SgcRLrgbE6Xf8S3rOXNyQfxbM9pdh7ru0RYqX6forAF5vmuU2SZ7pg"}}},"title":"commcare-hq/urls.py at 82630-Registration · lwyszomi/commcare-hq","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-7d7eb7c71814.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1ae9fa256942.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true,"github_models_repo_integration":false}}}
0