Method: Webgen::Path#alcn

Defined in:
lib/webgen/path.rb

#alcnObject

The absolute localized canonical name of this path.

Triggers analyzation of the path if invoked.



208
209
210
211
212
213
214
# File 'lib/webgen/path.rb', line 208

def alcn
  if @path.include?('#')
    self.class.new(parent_path).alcn << lcn
  else
    parent_path + lcn
  end
end