summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-10-03 14:14:38 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-10-03 14:14:38 +0000
commit675b1b6d686bab49866a1f55044e3ea8d3969172 (patch)
tree6d5a61835ef2431726fe76d774b053ec53d9a7cf
parent84b98f7e8c4178f387ea18bca18c2f03101d2783 (diff)
* luci/lib/httpprotocol: fix inline documentation for http.protocol.conditionals
-rw-r--r--libs/http/luasrc/http/protocol/conditionals.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/http/luasrc/http/protocol/conditionals.lua b/libs/http/luasrc/http/protocol/conditionals.lua
index d31a47454..015cf4518 100644
--- a/libs/http/luasrc/http/protocol/conditionals.lua
+++ b/libs/http/luasrc/http/protocol/conditionals.lua
@@ -118,7 +118,7 @@ function if_none_match( req, stat )
return true
end
--- 14.27 / If-Range
+--- 14.27 / If-Range
-- The If-Range header is currently not implemented due to the lack of general
-- byte range stuff in luci.http.protocol . This function will always return
-- false, 412 to indicate a failed precondition.
@@ -131,7 +131,7 @@ function if_range( req, stat )
return false, 412
end
--- 14.28 / If-Unmodified-Since
+--- 14.28 / If-Unmodified-Since
-- Test whether the given message object contains an "If-Unmodified-Since"
-- header and compare it against the given stat object.
-- @param req HTTP request message object