[Jifty-commit] r3717 - talks/talks

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Jul 24 19:49:51 EDT 2007


Author: trs
Date: Tue Jul 24 19:49:50 2007
New Revision: 3717

Modified:
   talks/talks/oscon.dsls.2007.txt

Log:
Fix double HTTPS

Modified: talks/talks/oscon.dsls.2007.txt
==============================================================================
--- talks/talks/oscon.dsls.2007.txt	(original)
+++ talks/talks/oscon.dsls.2007.txt	Tue Jul 24 19:49:50 2007
@@ -880,10 +880,9 @@
 sub on     ($$@) { ... }
 sub after  ($$@) { ... }
 sub run    (&) { return shift } 
-sub HTTPS  ($) { return protocol => 'HTTPS', @_) }
-sub HTTP   ($) { return protocol => 'HTTP', @_) }
-sub HTTPS  ($) { return protocol => 'HTTPS', @_) }
-sub GET    ($) { return method => 'GET', @_) }
+sub HTTPS  ($) { return( protocol => 'HTTPS', @_ ) }
+sub HTTP   ($) { return( protocol => 'HTTP', @_ ) }
+sub GET    ($) { return( method => 'GET', @_ ) }
 ---
 The rest is just building up a list of rules and running it
 ---


More information about the Jifty-commit mailing list