84件ヒット
[1-84件を表示]
(0.022秒)
種類
- インスタンスメソッド (48)
- クラス (12)
- 文書 (12)
- 特異メソッド (12)
ライブラリ
クラス
-
CGI
:: Cookie (36) -
WEBrick
:: Cookie (24)
キーワード
- Cookie (12)
- new (12)
-
ruby 1
. 8 . 4 feature (12) - secure= (24)
検索結果
先頭5件
-
WEBrick
:: Cookie # secure -> bool (21124.0) -
クッキーのSecure属性を真偽値で表すアクセサです。
...クッキーのSecure属性を真偽値で表すアクセサです。
@param value クッキーのSecure属性を真偽値で指定します。... -
CGI
:: Cookie # secure -> bool (21101.0) -
自身がセキュアクッキーである場合は、真を返します。 そうでない場合は、偽を返します。
自身がセキュアクッキーである場合は、真を返します。
そうでない場合は、偽を返します。 -
WEBrick
:: Cookie # secure=(value) (9124.0) -
クッキーのSecure属性を真偽値で表すアクセサです。
...クッキーのSecure属性を真偽値で表すアクセサです。
@param value クッキーのSecure属性を真偽値で指定します。... -
CGI
:: Cookie # secure=(val) (9101.0) -
セキュアクッキーであるかどうかを変更します。
セキュアクッキーであるかどうかを変更します。
@param val 真を指定すると自身はセキュアクッキーになります。 -
CGI
:: Cookie (6162.0) -
クッキーを表すクラスです。
...クッキーを表すクラスです。
例:
cookie1 = CGI::Cookie.new("name", "value1", "value2", ...)
cookie1 = CGI::Cookie.new({"name" => "name", "value" => "value"})
cookie1 = CGI::Cookie.new({'name' => 'name',
'value' => ['value1', 'value2', ...],......'secure' => true # optional
'httponly' => true # optional
})
cgi.out({"cookie" => [cookie1, cookie2]}){ "string" }
name = cookie1.name
values = cookie1.value
path = cookie1.path
domain = cookie1.do......res = cookie1.expires
secure = cookie1.secure
httponly = cookie1.httponly
cookie1.name = 'name'
cookie1.value = ['value1', 'value2', ...]
cookie1.path = 'path'
cookie1.domain = 'domain'
cookie1.expires = Time.now + 30
cookie1.secure = true
cookie1.httpo... -
CGI
:: Cookie . new(name = "" , *value) -> CGI :: Cookie (3269.0) -
クッキーオブジェクトを作成します。
...を適用するドメインを指定します。
: expires
このクッキーの有効期限を Time のインスタンスで指定します。
: secure
真を指定すると、このクッキーはセキュアクッキーになります。
デフォルトは偽です。セキュアクッキ......値のリストを一つ以上指定します。
例:
cookie1 = CGI::Cookie.new("name", "value1", "value2", ...)
cookie1 = CGI::Cookie.new({"name" => "name", "value" => "value"})
cookie1 = CGI::Cookie.new({'name' => 'name',
'......secure' => true # optional
'httponly' => true # optional
})
cgi.out({"cookie" => [cookie1, cookie2]}){ "string" }
name = cookie1.name
values = cookie1.value
path = cookie... -
ruby 1
. 8 . 4 feature (66.0) -
ruby 1.8.4 feature ruby 1.8.4 での ruby 1.8.3 からの変更点です。
...307>))
: set_trace_func [change]
#Mon Sep 26 22:32:13 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
#
# * eval.c (set_trace_func): add rb_secure(4) to prevent adding
# tracing function.
$SAFE=4でtrace_funcの追加を禁止。
: printf [bug]
#Wed Dec 7 15:31:35 2005 Yukihi......): the value of Set-Cookie:
# header field should be splited into each cookie. [ruby-Bugs:2199]
#
# * lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookie): new method
# to parse the value of Set-Cookie: header field.
#
# * test/webrick/test_cookie.rb, test/webrick/te......st_cgi.rb,
# test/webrick/webrick.cgi: add some test for cookie.
#
# ?
: WEBrick::Config::FileHandler [compat]
#Fri Oct 14 16:57:32 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
#
# * lib/webrick/config.rb (Config::FileHandler): :UserDir should be nil.
# It is harmful to permi...