Class: Generators::HTMLPuppetResource
- Includes:
- MarkUp
- Defined in:
- lib/puppet/util/rdoc/generators/puppet_generator.rb
Constant Summary collapse
- @@seq =
"R000000"
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #aref ⇒ Object
- #as_href(from_path) ⇒ Object
- #description ⇒ Object
- #document_self ⇒ Object
- #find_symbol(symbol, method = nil) ⇒ Object
- #index_name ⇒ Object
-
#initialize(context, html_class, options) ⇒ HTMLPuppetResource
constructor
A new instance of HTMLPuppetResource.
- #name ⇒ Object
- #params ⇒ Object
- #parent_name ⇒ Object
- #path ⇒ Object
- #section ⇒ Object
Methods included from MarkUp
Constructor Details
#initialize(context, html_class, options) ⇒ HTMLPuppetResource
Returns a new instance of HTMLPuppetResource.
824 825 826 827 828 829 830 831 832 833 834 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 824 def initialize(context, html_class, ) @context = context @html_class = html_class = @@seq = @@seq.succ @seq = @@seq context.viewer = self AllReferences.add(name, self) end |
Instance Attribute Details
#context ⇒ Object (readonly)
Returns the value of attribute context.
820 821 822 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 820 def context @context end |
Instance Method Details
#<=>(other) ⇒ Object
884 885 886 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 884 def <=>(other) @context <=> other.context end |
#aref ⇒ Object
868 869 870 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 868 def aref @seq end |
#as_href(from_path) ⇒ Object
836 837 838 839 840 841 842 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 836 def as_href(from_path) if .all_one_file "##{path}" else HTMLGenerator.gen_url(from_path, path) end end |
#description ⇒ Object
880 881 882 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 880 def description markup(@context.comment) end |
#document_self ⇒ Object
888 889 890 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 888 def document_self @context.document_self end |
#find_symbol(symbol, method = nil) ⇒ Object
892 893 894 895 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 892 def find_symbol(symbol, method = nil) res = @context.parent.find_symbol(symbol, method) res && res.viewer end |
#index_name ⇒ Object
852 853 854 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 852 def index_name "#{@context.name}" end |
#name ⇒ Object
844 845 846 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 844 def name @context.name end |
#params ⇒ Object
856 857 858 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 856 def params @context.params end |
#parent_name ⇒ Object
860 861 862 863 864 865 866 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 860 def parent_name if @context.parent.parent @context.parent.parent.full_name else nil end end |
#path ⇒ Object
872 873 874 875 876 877 878 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 872 def path if .all_one_file aref else @html_class.path + "##{aref}" end end |
#section ⇒ Object
848 849 850 |
# File 'lib/puppet/util/rdoc/generators/puppet_generator.rb', line 848 def section @context.section end |