Home
last modified time | relevance | path

Searched refs:return_url (Results 1 – 25 of 193) sorted by relevance

12345678

/dports/security/py-pysaml24/pysaml2-4.9.0/src/saml2/
H A Ddiscovery.py68 def create_discovery_service_response(return_url=None, argument
71 if return_url is None:
72 return_url = kwargs["return"]
77 part = parse.urlparse(return_url)
80 return_url = "%s&%s" % (return_url, qp)
82 return_url = "%s?%s" % (return_url, qp)
84 return return_url
94 def verify_return(self, entity_id, return_url): argument
97 assert return_url.startswith(endp["location"])
/dports/security/py-pysaml26/pysaml2-6.5.2/src/saml2/
H A Ddiscovery.py75 def create_discovery_service_response(return_url=None, argument
78 if return_url is None:
79 return_url = kwargs["return"]
84 part = parse.urlparse(return_url)
87 return_url = "%s&%s" % (return_url, qp)
89 return_url = "%s?%s" % (return_url, qp)
91 return return_url
101 def verify_return(self, entity_id, return_url): argument
103 if not return_url.startswith(endp["location"]):
/dports/security/py-pysaml2/pysaml2-7.1.0/src/saml2/
H A Ddiscovery.py75 def create_discovery_service_response(return_url=None, argument
78 if return_url is None:
79 return_url = kwargs["return"]
84 part = parse.urlparse(return_url)
87 return_url = "%s&%s" % (return_url, qp)
89 return_url = "%s?%s" % (return_url, qp)
91 return return_url
101 def verify_return(self, entity_id, return_url): argument
103 if not return_url.startswith(endp["location"]):
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/django_util/
H A Dviews.py44 def _make_flow(request, scopes, return_url=None): argument
63 'return_url': return_url,
133 return_url = state['return_url']
156 return shortcuts.redirect(return_url)
174 return_url = request.GET.get('return_url', None)
175 if not return_url:
176 return_url = request.META.get('HTTP_REFERER', '/')
187 user_oauth = django_util.UserOAuth2(request, scopes, return_url)
189 return redirect(return_url)
191 flow = _make_flow(request=request, scopes=scopes, return_url=return_url)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/contrib/django_util/
H A Dviews.py44 def _make_flow(request, scopes, return_url=None): argument
63 'return_url': return_url,
133 return_url = state['return_url']
156 return shortcuts.redirect(return_url)
174 return_url = request.GET.get('return_url', None)
175 if not return_url:
176 return_url = request.META.get('HTTP_REFERER', '/')
187 user_oauth = django_util.UserOAuth2(request, scopes, return_url)
189 return redirect(return_url)
191 flow = _make_flow(request=request, scopes=scopes, return_url=return_url)
/dports/security/py-oauth2client/oauth2client-4.1.3/oauth2client/contrib/django_util/
H A Dviews.py44 def _make_flow(request, scopes, return_url=None): argument
63 'return_url': return_url,
133 return_url = state['return_url']
156 return shortcuts.redirect(return_url)
174 return_url = request.GET.get('return_url', None)
175 if not return_url:
176 return_url = request.META.get('HTTP_REFERER', '/')
187 user_oauth = django_util.UserOAuth2(request, scopes, return_url)
189 return redirect(return_url)
191 flow = _make_flow(request=request, scopes=scopes, return_url=return_url)
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/oauth2client/contrib/django_util/
H A Dviews.py43 def _make_flow(request, scopes, return_url=None): argument
62 'return_url': return_url,
131 return_url = state['return_url']
154 return shortcuts.redirect(return_url)
172 return_url = request.GET.get('return_url', None)
182 return redirect(return_url)
186 if not return_url:
187 return_url = request.META.get('HTTP_REFERER', '/')
188 flow = _make_flow(request=request, scopes=scopes, return_url=return_url)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/third_party/oauth2client/oauth2client/contrib/django_util/
H A Dviews.py31 def _make_flow(request, scopes, return_url=None): argument
40 'return_url': return_url,
95 return_url = state['return_url']
117 return shortcuts.redirect(return_url)
133 return_url = request.GET.get('return_url', None)
135 if not return_url:
136 return_url = request.META.get('HTTP_REFERER', '/')
137 flow = _make_flow(request=request, scopes=scopes, return_url=return_url)
H A Ddecorators.py54 return_url = decorator_kwargs.pop('return_url',
56 user_oauth = django_util.UserOAuth2(request, scopes, return_url)
105 return_url = decorator_kwargs.pop('return_url',
107 user_oauth = django_util.UserOAuth2(request, scopes, return_url)
/dports/security/p5-AuthCAS/AuthCAS-1.6/t/
H A Dsimple.t12 my $return_url = 'http://myapp/something';
15 my $login_url = $cas->getServerLoginURL($return_url);
18 $cas->validateST( $return_url, 'ST-42-SLwl77Lv5xx6QK2dmlze-cas' )
31 my $return_url = 'http://myapp/something';
34 my $login_url = $cas->getServerLoginURL($return_url);
37 $cas->validateST( $return_url, 'ST-42-SLwl77Lv5xx6QK2dmlze-cas' )
44 $cas->validateST( $return_url, '' )
50 $cas->validateST( $return_url )
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/
H A Dflask_util.py325 def _make_flow(self, return_url=None, **kwargs): argument
334 'return_url': return_url
374 return_url = args.pop('return_url', None)
375 if return_url is None:
376 return_url = request.referrer or '/'
378 flow = self._make_flow(return_url=return_url, **args)
406 return_url = state['return_url']
432 return redirect(return_url)
487 def authorize_url(self, return_url, **kwargs): argument
496 return url_for('oauth2.authorize', return_url=return_url, **kwargs)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/contrib/
H A Dflask_util.py325 def _make_flow(self, return_url=None, **kwargs): argument
334 'return_url': return_url
374 return_url = args.pop('return_url', None)
375 if return_url is None:
376 return_url = request.referrer or '/'
378 flow = self._make_flow(return_url=return_url, **args)
406 return_url = state['return_url']
432 return redirect(return_url)
487 def authorize_url(self, return_url, **kwargs): argument
496 return url_for('oauth2.authorize', return_url=return_url, **kwargs)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/third_party/oauth2client/oauth2client/contrib/
H A Dflask_util.py326 def _make_flow(self, return_url=None, **kwargs): argument
335 'return_url': return_url
375 return_url = args.pop('return_url', None)
376 if return_url is None:
377 return_url = request.referrer or '/'
379 flow = self._make_flow(return_url=return_url, **args)
406 return_url = state['return_url']
432 return redirect(return_url)
487 def authorize_url(self, return_url, **kwargs): argument
496 return url_for('oauth2.authorize', return_url=return_url, **kwargs)
[all …]
/dports/security/py-oauth2client/oauth2client-4.1.3/oauth2client/contrib/
H A Dflask_util.py325 def _make_flow(self, return_url=None, **kwargs): argument
334 'return_url': return_url
374 return_url = args.pop('return_url', None)
375 if return_url is None:
376 return_url = request.referrer or '/'
378 flow = self._make_flow(return_url=return_url, **args)
406 return_url = state['return_url']
432 return redirect(return_url)
487 def authorize_url(self, return_url, **kwargs): argument
496 return url_for('oauth2.authorize', return_url=return_url, **kwargs)
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/oauth2client/contrib/
H A Dflask_util.py326 def _make_flow(self, return_url=None, **kwargs): argument
335 'return_url': return_url
375 return_url = args.pop('return_url', None)
376 if return_url is None:
377 return_url = request.referrer or '/'
379 flow = self._make_flow(return_url=return_url, **args)
406 return_url = state['return_url']
432 return redirect(return_url)
487 def authorize_url(self, return_url, **kwargs): argument
496 return url_for('oauth2.authorize', return_url=return_url, **kwargs)
[all …]
/dports/www/p5-Dancer2-Plugin-Interchange6/Dancer2-Plugin-Interchange6-0.204/lib/Dancer2/Plugin/Interchange6/Routes/
H A DAccount.pm43 if ( my $return_url = $app->request->param('return_url') ) {
44 $values{return_url} = $return_url;
53 $app->session->write( return_url => $values{return_url} );
98 $app->session->write( return_url => undef );
115 return_url => $app->request->params->{return_url},
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/google-endpoints/oauth2client/
H A Dflask_util.py325 def _make_flow(self, return_url=None, **kwargs): argument
334 'return_url': return_url
374 return_url = args.pop('return_url', None)
375 if return_url is None:
376 return_url = request.referrer or '/'
378 flow = self._make_flow(return_url=return_url, **args)
405 return_url = state['return_url']
431 return redirect(return_url)
479 def authorize_url(self, return_url, **kwargs): argument
488 return url_for('oauth2.authorize', return_url=return_url, **kwargs)
[all …]
/dports/security/p5-Dancer-Plugin-Auth-Extensible/Dancer-Plugin-Auth-Extensible-1.00/lib/Dancer/Plugin/Auth/
H A DExtensible.pm226 return redirect uri_for($loginpage, { return_url => request->request_uri });
301 return redirect uri_for($loginpage, { return_url => request->request_uri });
332 return redirect uri_for($deniedpage, { return_url => request->request_uri });
577 redirect params->{return_url} || $userhomepage;
621 redirect params->{return_url} || $userhomepage;
630 redirect params->{return_url} || $userhomepage;
640 if (params->{return_url}) {
641 redirect params->{return_url};
668 my $return_url = params->{return_url} || '';
685 <input type="hidden" name="return_url" value="$return_url">
/dports/devel/py-oci/oci-2.53.1/src/oci/osp_gateway/models/
H A Dpay_invoice_details.py75 def return_url(self): member in PayInvoiceDetails
86 @return_url.setter
87 def return_url(self, return_url): argument
96 self._return_url = return_url
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/
H A Dprefs_manage.php90 $return_url = isset($_POST['return_url']) ? $_POST['return_url'] : null; variable
135 if ($return_url) {
137 , htmlspecialchars($return_url) , '" />';
169 if ($return_url) {
170 $query = PhpMyAdmin\Util::splitURLQuery($return_url);
171 $return_url = parse_url($return_url, PHP_URL_PATH); variable
182 $return_url = 'prefs_manage.php'; variable
186 $userPreferences->redirect($return_url, $params);
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/Controllers/Preferences/
H A DManageController.php64 global $new_config, $config, $return_url, $form_display, $all_ok, $params, $query, $route;
130 $return_url = $_POST['return_url'] ?? null;
171 'return_url' => $return_url,
196 if ($return_url) {
197 $query = Util::splitURLQuery($return_url);
198 $return_url = parse_url($return_url, PHP_URL_PATH);
209 $return_url = 'index.php?route=/preferences/manage';
213 $this->userPreferences->redirect($return_url ?? '', $params);
/dports/www/py-flask-admin/Flask-Admin-1.5.8/flask_admin/model/
H A Dbase.py2080 return redirect(return_url)
2116 return_url=return_url)
2126 return redirect(return_url)
2130 return redirect(return_url)
2136 return redirect(return_url)
2168 return_url=return_url)
2178 return redirect(return_url)
2182 return redirect(return_url)
2199 return_url=return_url)
2234 return redirect(return_url)
[all …]
/dports/www/horde-base/horde-5.2.23/services/facebook/
H A Dindex.php27 $return_url = $registry->getServiceLink('prefs', 'horde') variable
37 $return_url->redirect();
60 $return_url->redirect();
69 $return_url->redirect();
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/static_site_editor/config/
H A Dgenerated_config.rb7 def initialize(repository, ref, path, return_url) argument
11 @return_url = return_url
23 return_url: sanitize_url(return_url),
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/static_site_editor/config/
H A Dgenerated_config_spec.rb6 subject(:config) { described_class.new(repository, ref, path, return_url) }
31 return_url: 'http://example.com',
106 it { is_expected.to include(return_url: nil) }
112 it { is_expected.to include(return_url: nil) }
118 it { is_expected.to include(return_url: nil) }

12345678