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

Methods

Public Instance methods

[Source]

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

[Source]

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

[Validate]