# File lib/puppet/util/rdoc/generators/puppet_generator.rb, line 620
620:         def initialize(context, html_file, prefix, options)
621:             super(context, options)
622: 
623:             @html_file = html_file
624:             @is_module = false
625:             @values    = {}
626: 
627:             context.viewer = self
628: 
629:             if options.all_one_file
630:                 @path = context.full_name
631:             else
632:                 @path = http_url(context.full_name, prefix)
633:             end
634: 
635:             AllReferences.add("PLUGIN(#{@context.full_name})", self)
636:         end