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

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 395
395:     def collect_methods
396:       list = @context.method_list
397:       unless @options.show_all
398:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
399:       end
400:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
401:     end

[Source]

     # File generators/xhtml_generator.rb, line 389
389:     def value_hash
390:       super
391:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
392:       @values
393:     end

[Validate]