# File lib/puppet/util/rdoc/generators/puppet_generator.rb, line 688 688: def initialize(context, html_file, prefix, options) 689: super(context, options) 690: 691: @html_file = html_file 692: @is_module = false 693: @values = {} 694: 695: context.viewer = self 696: 697: if options.all_one_file 698: @path = context.full_name 699: else 700: @path = http_url(context.full_name, prefix) 701: end 702: 703: AllReferences.add("PLUGIN(#{@context.full_name})", self) 704: end