[ruby-oci8-commit] [342] web: * hiki_data/(en|ja)/text/FAQ_proxy_auth:
nobody at rubyforge.org
nobody at rubyforge.org
Fri May 8 08:59:03 EDT 2009
Revision: 342
Author: kubo
Date: 2009-05-08 08:59:02 -0400 (Fri, 08 May 2009)
Log Message:
-----------
* hiki_data/(en|ja)/text/FAQ_proxy_auth:
add proxy authentication sample codes.
* hiki_data/(en|ja)/text/SideMenu
add a link to proxy authentication page.
* hiki_data/(en|ja)/text/ReportInstallProblem:
change the forum name from "rubyforge help forum" to
"ruby-oci8 help forum at rubyforge." Even thought it had
been linked to the ruby-oci8 project, some people post
help requests to rubyforge support.
Modified Paths:
--------------
web/ChangeLog
web/hiki_data/en/info.db
web/hiki_data/en/text/ReportInstallProblem
web/hiki_data/en/text/SideMenu
web/hiki_data/ja/info.db
web/hiki_data/ja/text/ReportInstallProblem
web/hiki_data/ja/text/SideMenu
Added Paths:
-----------
web/hiki_data/en/text/FAQ_proxy_auth
web/hiki_data/ja/text/FAQ_proxy_auth
Modified: web/ChangeLog
===================================================================
--- web/ChangeLog 2009-04-18 12:52:21 UTC (rev 341)
+++ web/ChangeLog 2009-05-08 12:59:02 UTC (rev 342)
@@ -1,3 +1,14 @@
+2009-05-08 KUBO Takehiro <kubo at jiubao.org>
+ * hiki_data/(en|ja)/text/FAQ_proxy_auth:
+ add proxy authentication sample codes.
+ * hiki_data/(en|ja)/text/SideMenu
+ add a link to proxy authentication page.
+ * hiki_data/(en|ja)/text/ReportInstallProblem:
+ change the forum name from "rubyforge help forum" to
+ "ruby-oci8 help forum at rubyforge." Even thought it had
+ been linked to the ruby-oci8 project, some people post
+ help requests to rubyforge support.
+
2009-02-08 KUBO Takehiro <kubo at jiubao.org>
* hiki_data/(en|ja)/text/PlatformSpecificIssue:
update Mac OS X information.
Modified: web/hiki_data/en/info.db
===================================================================
--- web/hiki_data/en/info.db 2009-04-18 12:52:21 UTC (rev 341)
+++ web/hiki_data/en/info.db 2009-05-08 12:59:02 UTC (rev 342)
@@ -47,6 +47,17 @@
],
:title => "How can I get PL/SQL OUT parameters?",
},
+"FAQ_proxy_auth" => {
+:count => 0,
+:editor => nil,
+:freeze => false,
+:keyword => [
+],
+:last_modified => Time.at(1241786075),
+:references => [
+],
+:title => "Proxy authentication",
+},
"FAQ_uninstall" => {
:count => 11,
:editor => nil,
@@ -136,7 +147,7 @@
:freeze => false,
:keyword => [
],
-:last_modified => Time.at(1234099345),
+:last_modified => Time.at(1234707420),
:references => [
],
:title => "News in 2.0",
@@ -159,7 +170,7 @@
:freeze => false,
:keyword => [
],
-:last_modified => Time.at(1168171962),
+:last_modified => Time.at(1241783562),
:references => [
"PlatformSpecificIssue",
],
@@ -171,7 +182,7 @@
:freeze => false,
:keyword => [
],
-:last_modified => Time.at(1234098412),
+:last_modified => Time.at(1241785225),
:references => [
"FrontPage",
"News2_0",
@@ -196,6 +207,7 @@
"FAQ_plsql_out_param",
"FAQ_long_or_long_raw",
"FAQ_uninstall",
+"FAQ_proxy_auth",
"dev_SourceCode",
"dev_CodingStyle",
"dev_APIWrap",
Added: web/hiki_data/en/text/FAQ_proxy_auth
===================================================================
--- web/hiki_data/en/text/FAQ_proxy_auth (rev 0)
+++ web/hiki_data/en/text/FAQ_proxy_auth 2009-05-08 12:59:02 UTC (rev 342)
@@ -0,0 +1,23 @@
+Refer to "Client Access Through a Proxy" at the following URL for the sample codes in this page.
+* http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28395/oci02bas.htm#CHDJDICD
+
+!! Local user acting on behalf of a local user.
+ OCI8.new('dilbert[joe]/tiger123 at db1')
+ or
+ OCI8.new('dilbert[joe]', 'tiger123', 'db1')
+
+!! Local user acting on behalf of local user, where user names must be quoted.
+ OCI8.new('"Dilbert"["Joe"]/tiger123 at db1')
+ or
+ OCI8.new('"Dilbert"["Joe"]', 'tiger123', 'db1')
+Pass the username including double quotations.
+
+!! Local user dilbert[mybert] connecting to database.
+ OCI8.new('"dilbert[mybert]"/tiger123')
+ or
+ OCI8.new('"dilbert[mybert]"', 'tiger123')
+
+!! Local user acting on behalf of local user, where the user name has [].
+ OCI8.new('"dilbert[mybert]"["joe[myjoe]"]/tiger123')
+ or
+ OCI8.new('"dilbert[mybert]"["joe[myjoe]"]', 'tiger123')
Modified: web/hiki_data/en/text/ReportInstallProblem
===================================================================
--- web/hiki_data/en/text/ReportInstallProblem 2009-04-18 12:52:21 UTC (rev 341)
+++ web/hiki_data/en/text/ReportInstallProblem 2009-05-08 12:59:02 UTC (rev 342)
@@ -1,4 +1,4 @@
-Post the following information to [[rubyforge help forum|http://rubyforge.org/forum/forum.php?forum_id=1078]]
+Post the following information to [[ruby-oci8 help forum at rubyforge|http://rubyforge.org/forum/forum.php?forum_id=1078]]
or mail it to [[me|mailto:kubo at jiubao.org]].
note: Before reporting, check [[PlatformSpecificIssue]].
Modified: web/hiki_data/en/text/SideMenu
===================================================================
--- web/hiki_data/en/text/SideMenu 2009-04-18 12:52:21 UTC (rev 341)
+++ web/hiki_data/en/text/SideMenu 2009-05-08 12:59:02 UTC (rev 342)
@@ -35,6 +35,7 @@
** [[FAQ_plsql_out_param]]
** [[FAQ_long_or_long_raw]]
** [[FAQ_uninstall]]
+** [[FAQ_proxy_auth]]
!! Note for Developers
* [[dev_SourceCode]]
Modified: web/hiki_data/ja/info.db
===================================================================
--- web/hiki_data/ja/info.db 2009-04-18 12:52:21 UTC (rev 341)
+++ web/hiki_data/ja/info.db 2009-05-08 12:59:02 UTC (rev 342)
@@ -46,6 +46,17 @@
],
:title => "PL/SQL \343\201\256 OUT \343\203\221\343\203\251\343\203\241\343\203\274\343\202\277\343\202\222\345\217\226\345\276\227\343\201\231\343\202\213\343\201\253\343\201\257\357\274\237",
},
+"FAQ_proxy_auth" => {
+:count => 0,
+:editor => nil,
+:freeze => false,
+:keyword => [
+],
+:last_modified => Time.at(1241786082),
+:references => [
+],
+:title => "\343\203\227\343\203\255\343\202\255\343\202\267\350\252\215\350\250\274",
+},
"FAQ_uninstall" => {
:count => 10,
:editor => nil,
@@ -147,7 +158,7 @@
:freeze => false,
:keyword => [
],
-:last_modified => Time.at(1168171996),
+:last_modified => Time.at(1241783610),
:references => [
"PlatformSpecificIssue",
],
@@ -159,7 +170,7 @@
:freeze => false,
:keyword => [
],
-:last_modified => Time.at(1224421807),
+:last_modified => Time.at(1241783799),
:references => [
"FrontPage",
"HowToInstall",
@@ -183,6 +194,7 @@
"FAQ_plsql_out_param",
"FAQ_long_or_long_raw",
"FAQ_uninstall",
+"FAQ_proxy_auth",
],
:title => "SideMenu",
},
Added: web/hiki_data/ja/text/FAQ_proxy_auth
===================================================================
--- web/hiki_data/ja/text/FAQ_proxy_auth (rev 0)
+++ web/hiki_data/ja/text/FAQ_proxy_auth 2009-05-08 12:59:02 UTC (rev 342)
@@ -0,0 +1,23 @@
+このページのサンプルの内容については、以下の URL の「プロキシ経由のクライアント・アクセス」を参照してください。
+* http://otndnld.oracle.co.jp/document/products/oracle11g/111/doc_dvd/appdev.111/E05677-02/oci02bas.htm#CHDJDICD
+
+! ローカル・ユーザーを別のローカル・ユーザーの代理にする場合
+ OCI8.new('dilbert[joe]/tiger123 at db1')
+ or
+ OCI8.new('dilbert[joe]', 'tiger123', 'db1')
+
+! ローカル・ユーザーを別のローカル・ユーザーの代理とし、かつ各ユーザー名を引用符で囲む必要がある場合
+ OCI8.new('"Dilbert"["Joe"]/tiger123 at db1')
+ or
+ OCI8.new('"Dilbert"["Joe"]', 'tiger123', 'db1')
+引用符込みの文字列をユーザ名として使用してください。
+
+! ローカル・ユーザーdilbert[mybert]がデータベースに接続する場合
+ OCI8.new('"dilbert[mybert]"/tiger123')
+ or
+ OCI8.new('"dilbert[mybert]"', 'tiger123')
+
+! ローカル・ユーザーを別のローカル・ユーザーの代理にし、かつユーザー名に [ ] を含める場合
+ OCI8.new('"dilbert[mybert]"["joe[myjoe]"]/tiger123')
+ or
+ OCI8.new('"dilbert[mybert]"["joe[myjoe]"]', 'tiger123')
Modified: web/hiki_data/ja/text/ReportInstallProblem
===================================================================
--- web/hiki_data/ja/text/ReportInstallProblem 2009-04-18 12:52:21 UTC (rev 341)
+++ web/hiki_data/ja/text/ReportInstallProblem 2009-05-08 12:59:02 UTC (rev 342)
@@ -1,4 +1,4 @@
-以下の情報を [[rubyforge help forum|http://rubyforge.org/forum/forum.php?forum_id=1078]] へ投稿するか、[[私|mailto:kubo at jiubao.org]]へメールしてください。
+以下の情報を [[ruby-oci8 help forum at rubyforge|http://rubyforge.org/forum/forum.php?forum_id=1078]] へ投稿するか、[[私|mailto:kubo at jiubao.org]]へメールしてください。
note: 問題を報告する前に [[PlatformSpecificIssue]] を読んでください。
Modified: web/hiki_data/ja/text/SideMenu
===================================================================
--- web/hiki_data/ja/text/SideMenu 2009-04-18 12:52:21 UTC (rev 341)
+++ web/hiki_data/ja/text/SideMenu 2009-05-08 12:59:02 UTC (rev 342)
@@ -32,3 +32,4 @@
** [[FAQ_plsql_out_param]]
** [[FAQ_long_or_long_raw]]
** [[FAQ_uninstall]]
+** [[FAQ_proxy_auth]]
More information about the ruby-oci8-commit
mailing list