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

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 408
408:     def collect_methods
409:       list = @context.method_list
410:       unless @options.show_all
411:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
412:       end
413:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
414:     end

[Source]

     # File generators/xhtml_generator.rb, line 402
402:     def value_hash
403:       super
404:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
405:       @values
406:     end

[Validate]