Class Generators::XHtmlFile
In: generators/xhtml_generator.rb
Parent: HtmlFile

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 369
369:     def collect_methods
370:       list = @context.method_list
371:       unless @options.show_all
372:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
373:       end
374:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
375:     end

[Source]

     # File generators/xhtml_generator.rb, line 363
363:     def value_hash
364:       super
365:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
366:       @values
367:     end

[Validate]