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

Methods

Public Instance methods

[Source]

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

[Source]

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

[Validate]