Displaying 2 results from an estimated 2 matches for "requested_url".
Did you mean:
requested_avl
2008 Apr 20
2
open_id_authentication - authenticate_with_open_id
...gin just like the README
says. However, when I submit my openid_url, the
authenticate_with_open_id method gives me the error below.
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:
150:in `+''
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:
150:in `requested_url''
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:
146:in `open_id_redirect_url''
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:
97:in `begin_open_id_authentication''
vendor/plugins/open_id_authentication/lib/open_id_authentication.r...
2008 Jun 15
1
14 commits - configure.ac swfdec/.gitignore swfdec-gtk/swfdec_gtk_loader.c swfdec-gtk/swfdec_playback_alsa.c swfdec/Makefile.am swfdec/swfdec_asnative.h swfdec/swfdec_as_string.c swfdec/swfdec_audio.c swfdec/swfdec_audio_load.c swfdec/swfdec_audio_load.h
...urn_if_fail (SWFDEC_IS_SANDBOX (sandbox));
+ g_return_if_fail (url_string != NULL);
cx = SWFDEC_AS_OBJECT (stream)->context;
player = SWFDEC_PLAYER (cx);
@@ -588,52 +587,9 @@ swfdec_net_stream_set_url (SwfdecNetStream *stream, SwfdecSandbox *sandbox, cons
return;
}
stream->requested_url = g_strdup (url_string);
- stream->sandbox = sandbox;
-#if 0
- if (swfdec_url_path_is_relative (url_string)) {
- swfdec_net_stream_load (player, TRUE, stream);
- return;
- }
-#endif
- url = swfdec_player_create_url (player, url_string);
- if (url == NULL) {
- swfdec_net_stream_load...