]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/furnace/sessions/sessions-docs.factor
help.markup: adding a $slots word to document slots, use it.
[factor.git] / basis / furnace / sessions / sessions-docs.factor
index e272f36fa1d7f3aa61443fe080b933d1fc383c27..5ed300e96bbc12021193fe910bc512acf236cc73 100644 (file)
@@ -24,9 +24,9 @@ HELP: sset
 
 ARTICLE: "furnace.sessions.config" "Session manager configuration"
 "The " { $link sessions } " tuple has two slots which contain configuration parameters:"
-{ $table
-    { { $slot "verify?" } { "If set to a true value, the client IP address and user agent of each session is tracked, and checked every time a client attempts to re-establish a session. While this does not offer any real security, it can thwart unskilled packet-sniffing attacks. On by default." } }
-    { { $slot "timeout" } { "A " { $link duration } " storing the maximum time that inactive sessions will be stored on the server. The default timeout is 20 minutes. Note that for sessions to actually expire, you must start a thread to do so; see the " { $vocab-link "furnace.alloy" } " vocabulary for an easy way of doing this." } }
+{ $slots
+    { "verify?" { "If set to a true value, the client IP address and user agent of each session is tracked, and checked every time a client attempts to re-establish a session. While this does not offer any real security, it can thwart unskilled packet-sniffing attacks. On by default." } }
+    { "timeout" { "A " { $link duration } " storing the maximum time that inactive sessions will be stored on the server. The default timeout is 20 minutes. Note that for sessions to actually expire, you must start a thread to do so; see the " { $vocab-link "furnace.alloy" } " vocabulary for an easy way of doing this." } }
 } ;
 
 ARTICLE: "furnace.sessions.serialize" "Session state serialization"