diff --git a/INSTALL b/INSTALL index 89f1b9bd..3c67d5cb 100644 --- a/INSTALL +++ b/INSTALL @@ -32,16 +32,16 @@ Or, if you installed via rubygems: $> irb irb$> require "rubygems" => true - irb$> require_gem "ruby-openid" + irb$> require_gem "ruby-openid" => true == Run the test suite -Go into the test directory and execute the *runtests.rb* script. +Go into the admin directory and execute the *runtests.rb* script. == Next steps -* Run consumer.rb in the examples directory. +* Run consumer.rb in the examples directory. * Get started writing your own consumer using OpenID::Consumer * Write your own server with OpenID::Server * Use the OpenIDLoginGenerator! Read example/README for more info. diff --git a/lib/openid/util.rb b/lib/openid/util.rb index 3c2bdc03..8c243124 100644 --- a/lib/openid/util.rb +++ b/lib/openid/util.rb @@ -91,22 +91,23 @@ def Util.log(message) end def Util.auto_submit_html(form, title='OpenID transaction in progress') - return " - - - #{title} - - -#{form} - - - -" + return " + + #{title} + + + + + #{form} + + " end ESCAPE_TABLE = { '&' => '&', '<' => '<', '>' => '>', '"' => '"', "'" => ''' }