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

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 437
437:     def collect_methods
438:       list = @context.method_list
439:       unless @options.show_all
440:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
441:       end
442:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
443:     end

[Source]

     # File generators/xhtml_generator.rb, line 431
431:     def value_hash
432:       super
433:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
434:       @values
435:     end

[Validate]