From: Daniel Gruno Date: Tue, 11 Feb 2014 22:49:21 +0000 (+0000) Subject: xforms X-Git-Tag: 2.5.0-alpha~4493 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eec546c0164092a32caecd1aa953f934f677c1e0;p=apache xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1567431 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en index cfa00849de..066946f9cf 100644 --- a/docs/manual/mod/directives.html.en +++ b/docs/manual/mod/directives.html.en @@ -292,8 +292,8 @@
  • HeartbeatAddress
  • HeartbeatListen
  • HeartbeatMaxServers
  • -
  • HeartbeatStorage
  • HeartbeatStorage
  • +
  • HeartbeatStorage
  • HostnameLookups
  • IdentityCheck
  • IdentityCheckTimeout
  • diff --git a/docs/manual/mod/mod_lua.html.en b/docs/manual/mod/mod_lua.html.en index 64e81e3625..2e38afc452 100644 --- a/docs/manual/mod/mod_lua.html.en +++ b/docs/manual/mod/mod_lua.html.en @@ -949,8 +949,22 @@ end
    r:getcookie(key) -- Gets a HTTP cookie
    -
    r:setcookie(key, value, secure, expires) -- Sets a HTTP cookie, for instance:
    -r:setcookie("foo", "bar and stuff", false, os.time() + 86400)
    +
    r:setcookie{
    +  key = [key],
    +  value = [value],
    +  expires = [expiry],
    +  secure = [boolean],
    +  httponly = [boolean],
    +  path = [path],
    +  domain = [domain]
    +} -- Sets a HTTP cookie, for instance:
    +
    +r:setcookie{
    +  key = "cookie1",
    +  value = "HDHfa9eyffh396rt",
    +  expires = os.time() + 86400,
    +  secure = true
    +}
    r:wsupgrade() -- Upgrades a connection to WebSockets if possible (and requested):
    diff --git a/docs/manual/mod/mod_lua.xml.fr b/docs/manual/mod/mod_lua.xml.fr
    index 7ae13d58f5..87b10f825e 100644
    --- a/docs/manual/mod/mod_lua.xml.fr
    +++ b/docs/manual/mod/mod_lua.xml.fr
    @@ -1,7 +1,7 @@
     
     
     
    -
    +
     
     
     
    diff --git a/docs/manual/mod/mod_lua.xml.meta b/docs/manual/mod/mod_lua.xml.meta
    index b55c7710e9..8fc1a0efdf 100644
    --- a/docs/manual/mod/mod_lua.xml.meta
    +++ b/docs/manual/mod/mod_lua.xml.meta
    @@ -8,6 +8,6 @@
     
       
         en
    -    fr
    +    fr
       
     
    diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en
    index 65ec4864dc..d590bb20f1 100644
    --- a/docs/manual/mod/quickreference.html.en
    +++ b/docs/manual/mod/quickreference.html.en
    @@ -483,8 +483,8 @@ of the index listing
     HeartbeatListenaddr:portsXmulticast address to listen for incoming heartbeat requests 
     HeartbeatMaxServers number-of-servers 10 sXSpecifies the maximum number of servers that will be sending 
     heartbeat requests to this server
    -HeartbeatStorage file-path logs/hb.dat sXPath to read heartbeat data
    -HeartbeatStorage file-path logs/hb.dat sXPath to store heartbeat data
    +HeartbeatStorage file-path logs/hb.dat sXPath to store heartbeat data
    +HeartbeatStorage file-path logs/hb.dat sXPath to read heartbeat data
     HostnameLookups On|Off|Double Off svdCEnables DNS lookups on client IP addresses
     IdentityCheck On|Off Off svdEEnables logging of the RFC 1413 identity of the remote
     user