< :前の番号
^ :番号順リスト
> :次の番号
P :前の記事(スレッド移動)
N :次の記事(スレッド移動)
|<:前のスレッド
>|:次のスレッド
^ :返事先
_:自分への返事
>:同じ返事先を持つ記事(前)
<:同じ返事先を持つ記事(後)
---:分割してスレッド表示、再表示
| :分割して(縦)スレッド表示、再表示
~ :スレッドのフレーム消去
.:インデックス
..:インデックスのインデックス
Issue #8544 has been updated by duerst (Martin D端rst).
naruse (Yui NARUSE) wrote:
> duerst (Martin D端rst) wrote:
> > phluid61 (Matthew Kerwin) wrote:
> >
> > > Perhaps this can get some traction: http://tools.ietf.org/html/draft-kerwin-file-scheme-01
> >
> > It would be great if it did. Just for your reference, others have tried before you.
> > Please check out http://tools.ietf.org/html/draft-yevstifeyev-ftp-uri-scheme-08, http://tools.ietf.org/html/draft-hoffman-ftp-uri-04, and http://tools.ietf.org/html/draft-hoffman-ftp-uri-04.
>
> They are ftp: scheme.
Really sorry about that! I knew Paul Hoffman had a draft about file:. I made a mistake when searching, but once I found a draft by Paul, that made it more difficult to realize my mistake.
----------------------------------------
Feature #8544: OpenURI should open 'file://' URIs
https://bugs.ruby-lang.org/issues/8544#change-40142
Author: silasdavis (Silas Davis)
Status: Open
Priority: Normal
Assignee:
Category: core
Target version: next minor
The following code prints the contents of '/tmp/file.txt':
require 'open-uri'
open('/tmp/file.txt').read {|f| puts f.read }
which although useful should probably fail since a unix file path is not a URI, and therefore might shield data problems in a system
However the following should produce the same output and is a URI, but fails:
open('file:///tmp/file.txt').read {|f| puts f.read }
I note that the documentation for open-uri does explain that it is a wrapper for http, https, and ftp, but to deserve its name it should open such URIs as specified in this RFC: http://tools.ietf.org/html/rfc1630. This coupled with the fact that it already does open files, but not by a URI specification.
--
http://bugs.ruby-lang.org/