This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ Started request handling: Thu Nov 13 14:35:57 +0000 2008 | |
~ Routed to: {"user"=>{"password_confirmation"=>"******", "openid_url"=>"edgar.gonzalez.net.ve", "username"=>"", "password"=>"******", "email"=>""}, "format"=>nil, "x"=>"74", "y"=>"12", "age_confirmation"=>"1", "action"=>"create", "controller"=>"users"} | |
~ Params: {"user"=>{"password_confirmation"=>"******", "openid_url"=>"edgar.gonzalez.net.ve", "username"=>"", "password"=>"******", "email"=>""}, "format"=>nil, "x"=>"74", "y"=>"12", "age_confirmation"=>"1", "action"=>"create", "controller"=>"users"} | |
~ Redirecting to: http://www.myopenid.com/server?openid.assoc_handle=%7BHMAC-SHA1%7D%7B491c37a5%7D%7BI5qdAQ%3D%3D%7D&openid.identity=http%3A%2F%2Fedgargonzalez.myopenid.com%2F&openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Fgreenwala.integralstaging.com%2Fusers%2Fopenid_completion%3Fopenid1_claimed_id%3Dhttp%253A%252F%252Fedgar.gonzalez.net.ve%252F%26openid_complete%3D1%26rp_nonce%3D2008-11-13T14%253A35%253A58ZNOws6X&openid.sreg.optional=ful |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ 550 relay not permitted | |
- (Net::SMTPFatalError) | |
/opt/local/lib/ruby/1.8/net/smtp.rb:680:in `check_response' | |
/opt/local/lib/ruby/1.8/net/smtp.rb:653:in `getok' | |
/opt/local/lib/ruby/1.8/net/smtp.rb:635:in `rcptto' | |
/opt/local/lib/ruby/1.8/net/smtp.rb:546:in `send0' | |
/opt/local/lib/ruby/1.8/net/smtp.rb:545:in `each' | |
/opt/local/lib/ruby/1.8/net/smtp.rb:545:in `send0' | |
/opt/local/lib/ruby/1.8/net/smtp.rb:472:in `send_message' | |
/opt/local/lib/ruby/gems/1.8/gems/merb-mailer-0.9.4/lib/merb-mailer/mailer.rb:59:in `net_smtp' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ Request OpenID: | |
====== | |
#<OpenID::Consumer::CheckIDRequest:0x7fe7a6ab1270 @return_to_args={"rp_nonce"=>"2008-11-13T21:48:41ZSItFtj", | |
"openid1_claimed_id"=>"http://romanandreg.myopenid.com/"}, @endpoint=#<OpenID::OpenIDServiceEndpoint:0x7fe7a6bbebe0 | |
@local_id="http://romanandreg.myopenid.com/", @display_identifier=nil, @type_uris=["http://openid.net/signon/1.0", | |
"http://openid.net/sreg/1.0", "http://openid.net/extensions/sreg/1.1", | |
"http://schemas.openid.net/pape/policies/2007/06/phishing-resistant", "http://openid.net/srv/ax/1.0"], @used_yadis=true, | |
@server_url="http://www.myopenid.com/server", @canonical_id=nil, @claimed_id="http://romanandreg.myopenid.com/">, | |
@message=#<OpenID::Message:0x7fe7a6a38b40 @openid_ns_uri="http://openid.net/signon/1.0", | |
@namespaces=#<OpenID::NamespaceMap:0x7fe7a6a38a78 @namespace_to_alias={"http://openid.net/extensions/sreg/1.1"=>"sreg", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ Named route not found: default - (Merb::Router::GenerationError) | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-core-1.0/lib/merb-core/dispatch/router.rb:231:in `url' | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-core-1.0/lib/merb-core/controller/merb_controller.rb:289:in `url' | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-helpers-1.0/lib/merb-helpers/form/builder.rb:399:in `process_form_attrs' | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-helpers-1.0/lib/merb-helpers/form/builder.rb:15:in `form' | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-helpers-1.0/lib/merb-helpers/form/helpers.rb:95:in `form_for' | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-helpers-1.0/lib/merb-helpers/form/helpers.rb:31:in `with_form_context' | |
/Users/roman/Documents/trabajo/personal/merb-project/gems/gems/merb-helpers-1.0/lib/merb-helpers/form/helpers.rb:94:in `form_for' | |
/Users/roman/Documents/tra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> describe projects_users; | |
+------------+---------+------+-----+---------+-------+ | |
| Field | Type | Null | Key | Default | Extra | | |
+------------+---------+------+-----+---------+-------+ | |
| user_id | int(11) | YES | | NULL | | | |
| project_id | int(11) | YES | | NULL | | | |
+------------+---------+------+-----+---------+-------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
migration 8, :add_projects_users do | |
up do | |
create_table :projects_users do | |
column :user_id, Integer, :key => true | |
column :project_id, Integer, :key => true | |
end | |
end | |
down do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.suggestionFiller = this.fireEvent.delay(500, this, ['inputChanged', possibleSuggestions]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "ruby_openid_test_server" | |
class TestHelper < Test::Unit | |
include RubyOpenIdTestServer::ServerSpecHelper | |
# The identity on the rots server (must be the same as the one executing) | |
self.rots_config = YAML.load(<<-CONFIG | |
identity: john.doe | |
sreg: | |
nickname: jdoe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module GlobRegex | |
( | |
globToRegex, | |
matchesGlob | |
) | |
where | |
import Text.Regex.Posix ((=~)) | |
import Data.Char (toLower) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
import java.security.*; | |
public class MyEnvironment { | |
public static void main (String[] args) { | |
Map<String, String> m = System.getenv(); | |
for(String k : m.keySet()) { | |
System.out.printf("%s = %s\n", k, m.get(k)); | |
} |
OlderNewer