# File lib/puppet/util/rdoc/generators/puppet_generator.rb, line 440
440:     def initialize(context, html_file, prefix, options)
441:       super(context, options)
442: 
443:       @html_file = html_file
444:       @is_module = context.is_module?
445:       @values    = {}
446: 
447:       context.viewer = self
448: 
449:       if options.all_one_file
450:         @path = context.full_name
451:       else
452:         @path = http_url(context.full_name, prefix)
453:       end
454: 
455:       AllReferences.add("NODE(#{@context.full_name})", self)
456:     end