private Method

Generic.check_path(v)

There's no documentation for this item.

Source Code

# File uri/generic.rb, line 464
def check_path(v)
  # raise if both hier and opaque are not nil, because:
  # absoluteURI   = scheme ":" ( hier_part | opaque_part )
  # hier_part     = ( net_path | abs_path ) [ "?" query ]
  if v && @opaque
    raise InvalidURIError, 
      "path conflicts with opaque"
  end

  if @scheme
    if v && v != '' && ABS_PATH !~ v
      raise InvalidComponentError, 
        "bad component(expected absolute path component): #{v}"
    end
  else
    if v && v != '' && ABS_PATH !~ v && REL_PATH !~ v
      raise InvalidComponentError, 
        "bad component(expected relative path component): #{v}"
    end
  end

  return true
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.