Methods

Class/Module Index [+]

Quicksearch

Origami::ExternalFile

A class representing a file outside the current PDF file.

Public Class Methods

new(dos, mac = "", unix = "") click to toggle source

Creates a new external file specification.

dos

The Windows path to this file.

mac

The MacOS path to this file.

unix

The UNIX path to this file.

# File lib/origami/file.rb, line 193
def initialize(dos, mac = "", unix = "")
  
  if not mac.empty? or not unix.empty?
    super(:DOS => Filename.DOS(dos), :Mac => Filename.Mac(mac), :Unix => Filename.Unix(unix))
  else
   super(:F => dos)
  end
  
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.