(PDF 1.2) Send data to a uniform resource locator. p703
[Source]
# File sources/parser/actions.rb, line 246 246: def initialize(url, fields = [], flags = 0) 247: 248: if not url.is_a? FileSpec 249: url = FileSpec.new(:FS => :URL, :F => url) 250: end 251: 252: super(:F => url, :Fields => fields, :Flags => flags) 253: 254: end
[Validate]