Results for: "Pathname"

No documentation available
No documentation available

Create a new DRbObject from a URI alone.

Create a new DRbObject from a URI alone.

Returns the inverse of the eigenvector matrix V

No documentation available
No documentation available
No documentation available
No documentation available
No documentation available
No documentation available

Enables SMTP/TLS (STARTTLS) for this object if server accepts. context is a OpenSSL::SSL::SSLContext object.

No documentation available

CRAM-MD5: [RFC2195]

No documentation available
No documentation available
No documentation available
No documentation available
No documentation available

Set the entity expansion limit. By default the limit is set to 10000.

Deprecated. Use REXML::Security.entity_expansion_limit= instead.

Get the entity expansion limit. By default the limit is set to 10000.

Deprecated. Use REXML::Security.entity_expansion_limit= instead.

No documentation available
No documentation available

The get_attribute_ns method retrieves a method by its namespace and name. Thus it is possible to reliably identify an attribute even if an XML processor has changed the prefix.

Method contributed by Henrik Martensson

Writes out text, substituting special characters beforehand. out A String, IO, or any other object supporting <<( String ) input the text to substitute and the write out

z=utf8.unpack("U*")
ascOut=""
z.each{|r|
  if r <  0x100
    ascOut.concat(r.chr)
  else
    ascOut.concat(sprintf("&#x%x;", r))
  end
}
puts ascOut
Search took: 3ms  ·  Total Results: 2732