るりまサーチ

最速Rubyリファレンスマニュアル検索!
480件ヒット [1-100件を表示] (0.098秒)
トップページ > クエリ:a[x] > クエリ:Namespace[x]

別のキーワード

  1. _builtin to_a
  2. matrix to_a
  3. to_a
  4. dbm to_a
  5. argf.class to_a

検索結果

<< 1 2 3 ... > >>

REXML::Namespace (24000.0)

XML 名前空間によって管理される「名前」を持つようなノードを 表すモジュール。

...XML 名前空間によって管理される「名前」を持つようなノードを
表すモジュール。

要素(REXML::Element)、属性(REXML::Attribute)
に include されます。...

Kernel#namespace(name = nil) { ... } -> Rake::NameSpace (12520.0)

新しい名前空間を作成します。

...新しい名前空間を作成します。

与えられたブロックを評価する間は、その名前空間を使用します。

例:
ns = namespace "nested" do
task :run
end
task_run = ns[:run] # find :run in the given namespace.

@see Rake::TaskManager#in_namespace...

REXML::Element#delete_namespace(namespace = "xmlns") -> self (12438.0)

名前空間を要素から削除します。

...除します。

@param namespace 削除する名前空間の prefix

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new "<a xmlns:foo='bar' xmlns='twiddle'/>"
doc.root.delete_namespace
doc.to_s # => "<a xmlns:foo='bar'/>"
doc.root.delete_namespace 'foo'
doc.to_s # => "<a/>"
//}...

Rake::TaskManager#in_namespace(name) {|name_space| ... } -> Array (12413.0)

与えられた名前の名前空間でブロックを評価します。

...クを評価します。

@param name 名前を指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app

namespace
:sample do
def hoge
puts "hoge"
end
end

task :test_rake_app do
task.application.in_namespace("sample") do
hoge # => "hoge"...

REXML::Element#add_namespace(prefix, uri) -> self (12292.0)

名前空間を要素に追加します。

... namespace の uri を指定します。

既に同じ prefix が存在する場合はそれが上書きされます。

@param prefix 名前空間の prefix
@param uri 名前空間の uri

//emlist[][ruby]{
require 'rexml/document'
a
= REXML::Element.new("a")
a
.add_namespace("xmlns:foo", "bar" )
a
....
...add_namespace("foo", "bar") # 上と同じ意味
a
.add_namespace("twiddle")
a
.to_s # => "<a xmlns:foo='bar' xmlns='twiddle'/>"
a
.add_namespace("foo", "baz")
a
.to_s # => "<a xmlns:foo='baz' xmlns='twiddle'/>"
//}...

絞り込み条件を変える

REXML::Element#add_namespace(uri) (12292.0)

名前空間を要素に追加します。

... namespace の uri を指定します。

既に同じ prefix が存在する場合はそれが上書きされます。

@param prefix 名前空間の prefix
@param uri 名前空間の uri

//emlist[][ruby]{
require 'rexml/document'
a
= REXML::Element.new("a")
a
.add_namespace("xmlns:foo", "bar" )
a
....
...add_namespace("foo", "bar") # 上と同じ意味
a
.add_namespace("twiddle")
a
.to_s # => "<a xmlns:foo='bar' xmlns='twiddle'/>"
a
.add_namespace("foo", "baz")
a
.to_s # => "<a xmlns:foo='baz' xmlns='twiddle'/>"
//}...

REXML::Element#namespace(prefix=nil) -> String (12237.0)

self の文脈で prefix が指している名前空間の URI を返します。

...ます。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a xmlns='1' xmlns:y='2'><b/><c xmlns:z='3'/><y:d /></a>")
b = doc.elements['//b']
b.namespace # => "1"
b.namespace("y") # => "2"
b.namespace("z") # => nil
d = doc.elements['//y:d']
d.namespace # => "2"
//}...

REXML::Attributes#namespaces -> { String => String } (12224.0)

self の中で宣言されている名前空間の集合を返します。

...
Hash を返します。

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='&lt;'/>
</root>
EOS
a
= doc.get_elements("/root/a").first

p doc.root.attribu...
...tes.namespaces
# => {"foo"=>"http://example.org/foo", "bar"=>"http://example.org/bar"}
p a.attributes.namespaces
# => {}
//}...

REXML::Element#namespaces -> {String => String} (12212.0)

self の文脈で定義されている名前空間の情報を返します。

...義されている名前空間を、{ prefix => 識別子 }
というハッシュテーブルで返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a xmlns:x='1' xmlns:y='2'><b/><c xmlns:z='3'/></a>")
doc.elements['//b'].namespaces # => {"x"=>"1", "y"=>"2"}
//}...
<< 1 2 3 ... > >>