myexperiment-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myexperiment-hackers] [2677] trunk/app/controllers/oauth_controller.rb:


From: noreply
Subject: [myexperiment-hackers] [2677] trunk/app/controllers/oauth_controller.rb: Whitespace clean up.
Date: Wed, 17 Aug 2011 12:31:41 -0400 (EDT)

Revision
2677
Author
dtm
Date
2011-08-17 12:31:40 -0400 (Wed, 17 Aug 2011)

Log Message

Whitespace clean up.

Modified Paths

Diff

Modified: trunk/app/controllers/oauth_controller.rb (2676 => 2677)


--- trunk/app/controllers/oauth_controller.rb	2011-08-17 16:28:38 UTC (rev 2676)
+++ trunk/app/controllers/oauth_controller.rb	2011-08-17 16:31:40 UTC (rev 2677)
@@ -14,8 +14,8 @@
     else
       render :nothing => true, :status => 401
     end
-  end 
-  
+  end
+
   def access_token
     @token=current_token.exchange!
     if @token
@@ -28,7 +28,7 @@
   def test_request
     render :text=>params.collect{|k,v|"#{k}=#{v}"}.join("&")
   end
-  
+
   def authorize
     @client_applications=current_user.client_applications
     @token=RequestToken.find_by_token params[:oauth_token]
@@ -42,8 +42,8 @@
     @address@hidden
     redirect_url=params[:oauth_callback]||@token.client_application.callback_url
     if (@token.client_application.key_type == 'System') || @client_applications.include?(@token.client_application)
-      unless @token.invalidated?    
-        if request.post? 
+      unless @token.invalidated?
+        if request.post?
           if params[:authorize]=='1'
             @token.authorize!(current_user)
             if redirect_url
@@ -53,11 +53,11 @@
             end
           elsif params[:commit]=="Save Changes"
             @token.invalidate!
-	    if redirect_url
-	      redirect_to redirect_url+"?oauth_failure=1"
-	    else 
+            if redirect_url
+              redirect_to redirect_url+"?oauth_failure=1"
+            else
               render :action=""
-	    end
+            end
           end
         end
       else
@@ -75,7 +75,7 @@
        end
     end
   end
-  
+
   def revoke
     @token=current_user.tokens.find_by_token params[:token]
     if @token
@@ -84,7 +84,7 @@
     end
     redirect_to oauth_url
   end
-  
+
   def index
     @client_applications=current_user.client_applications
     @admin_client_applications=ClientApplication.find(:all, :conditions => ["user_id != ? and creator_id = ?", current_user.id, current_user.id])
@@ -113,10 +113,10 @@
       render :action=""
     end
   end
-  
+
   def show
     if (!(@client_application.user_id == current_user.id or @client_application.creator_id == current_user.id))
-    	@client_application = nil
+      @client_application = nil
     end
     @address@hidden
   end
@@ -129,10 +129,10 @@
     end
     @address@hidden
     unless @client_application.nil?
-    	@address@hidden
+      @address@hidden
     end
   end
-  
+
   def update
     if (current_user.admin? or @client_application.key_type=="User")
       @client_application.permissions.delete_all
@@ -182,7 +182,7 @@
 
   def error(notice, message, attr=:id)
     flash[:error] = notice
-    
+
     respond_to do |format|
       format.html { redirect_to oauth_url }
     end

reply via email to

[Prev in Thread] Current Thread [Next in Thread]