Skip to content

Commit

Permalink
Improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
episod committed Mar 3, 2010
1 parent 645d793 commit 3fc8c52
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
13 changes: 7 additions & 6 deletions README
Expand Up @@ -26,17 +26,18 @@ How To Install
* Run ./script/server and browse to http://localhost:3000 to make it all happen

Upcoming Features
* Set HTTP headers for a request arbitrarily
* Manipulate the OAuth steps to test unusual scenarios
* Out of Band mode support
* Two-legged OAuth support
* XAuth support
* Set HTTP headers for a request arbitrarily
* Querystring-based OAuth support
* Manipulate the OAuth steps to test unusual scenarios
* Out of Band mode support
* Two-legged OAuth support
* XAuth support

Some "newer" OAuth features are already supported if you turn your head and squint your eye "just right."

Be good with this tool. Don't use it for bad purposes. Don't host it on the internet trying to collect the OAuth secrets of poor souls who don't know better. This is the policy. By downloading this, you agree that you won't do anything I'd disapprove of with this tool.

"Hold me closer, OAuth dancer. Now it's in you, always with you, an OAuth Dancer for your hand..."
"Hold me closer, OAuth Dancer. Now it's in you, always with you, an OAuth Dancer for your hand..."

Taylor Singletary
http://www.twitter.com/episod
Expand Down
17 changes: 10 additions & 7 deletions app/views/layouts/application.html.erb
Expand Up @@ -10,15 +10,18 @@
<body>

<div id="container">
<div id="header" style="height:60px;"><h1><%= image_tag "dance-move.jpg", :height => "60px" %>&nbsp;&nbsp;<%= link_to "OAuth Dancer", {:controller => "home"} %></h1></div>
<div id="header" style="height:60px;"><h1><%= image_tag "dance-move.jpg", :height => "60px" %>&nbsp;&nbsp;<%= link_to "OAuth Dancer",
{:controller => "home"} %></h1>
</div>
<div style="font-size: 12px;position:absolute;top:23px;left:58px;">
<%= link_to "Service Providers", { :controller => :service_providers, :action => :index }, :class => "menu_link" %> &nbsp;
<%= link_to "the OAuth Dance", { :controller => :the_dance, :action => :index }, :class => "menu_link" %>&nbsp;
<%= link_to "Make Requests", { :controller => :api_request, :action => :index }, :class => "menu_link" %></div>
<div style="clear:both;">
<div id="main_content_top"><%= flash[:notice] %></div>
<div id="main_content">
<div class="content">
<p><%= link_to "Service Providers", { :controller => :service_providers, :action => :index }, :class => "menu_link" %> &nbsp;
<%= link_to "the OAuth Dance", { :controller => :the_dance, :action => :index }, :class => "menu_link" %>&nbsp;
<%= link_to "Make Requests", { :controller => :api_request, :action => :index }, :class => "menu_link" %>
</p


<div class="content" style="margin-top:10px">
<%= yield %>

</div>
Expand Down
2 changes: 1 addition & 1 deletion config/environment.rb
Expand Up @@ -18,7 +18,7 @@
config.gem "oauth"
config.gem "sqlite3-ruby", :lib => "sqlite3"
config.gem "coderay"
config.gem "rest-open-uri"
# config.gem "rest-open-uri"

# config.gem "bj"
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
Expand Down
1 change: 1 addition & 0 deletions public/stylesheets/application.css
@@ -1,3 +1,4 @@
a[class="menu_link"], div.main_content_top { background:white;color:black !important;padding:5px 5px 5px 5px;}
input[type="text"], textarea { width: 400px;}
body {
background: black;
Expand Down

0 comments on commit 3fc8c52

Please sign in to comment.