PHP 8.2.31
Preview: document.rb Size: 2.42 KB
//proc/thread-self/root/opt/alt/ruby19/lib64/ruby/1.9.1/rdoc/markup/document.rb

##
# A Document containing lists, headings, paragraphs, etc.

class RDoc::Markup::Document

  ##
  # The file this document was created from.  See also
  # RDoc::ClassModule#add_comment

  attr_accessor :file

  ##
  # The parts of the Document

  attr_reader :parts

  ##
  # Creates a new Document with +parts+

  def initialize *parts
    @parts = []
    @parts.push(*parts)

    @file = nil
  end

  ##
  # Appends +part+ to the document

  def << part
    case part
    when RDoc::Markup::Document then
      unless part.empty? then
        parts.push(*part.parts)
        parts << RDoc::Markup::BlankLine.new
      end
    when String then
      raise ArgumentError,
            "expected RDoc::Markup::Document and friends, got String" unless
        part.empty?
    else
      parts << part
    end
  end

  def == other # :nodoc:
    self.class == other.class and
      @file == other.file and
      @parts == other.parts
  end

  ##
  # Runs this document and all its #items through +visitor+

  def accept visitor
    visitor.start_accepting

    @parts.each do |item|
      case item
      when RDoc::Markup::Document then # HACK
        visitor.accept_document item
      else
        item.accept visitor
      end
    end

    visitor.end_accepting
  end

  ##
  # Does this document have no parts?

  def empty?
    @parts.empty? or (@parts.length == 1 and merged? and @parts.first.empty?)
  end

  ##
  # When this is a collection of documents (#file is not set and this document
  # contains only other documents as its direct children) #merge replaces
  # documents in this class with documents from +other+ when the file matches
  # and adds documents from +other+ when the files do not.
  #
  # The information in +other+ is preferred over the receiver

  def merge other
    if empty? then
      @parts = other.parts
      return self
    end

    other.parts.each do |other_part|
      self.parts.delete_if do |self_part|
        self_part.file and self_part.file == other_part.file
      end

      self.parts << other_part
    end

    self
  end

  ##
  # Does this Document contain other Documents?

  def merged?
    RDoc::Markup::Document === @parts.first
  end

  def pretty_print q # :nodoc:
    start = @file ? "[doc (#{@file}): " : '[doc: '

    q.group 2, start, ']' do
      q.seplist @parts do |part|
        q.pp part
      end
    end
  end

  ##
  # Appends +parts+ to the document

  def push *parts
    self.parts.push(*parts)
  end

end

Directory Contents

Dirs: 0 × Files: 24

Name Size Perms Modified Actions
7.80 KB lrw-r--r-- 2011-02-02 00:32:30
Edit Download
361 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download
2.42 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
3.30 KB lrw-r--r-- 2011-08-24 00:02:17
Edit Download
15.71 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
314 B lrw-r--r-- 2011-02-02 00:32:30
Edit Download
534 B lrw-r--r-- 2011-06-16 04:59:24
Edit Download
2.76 KB lrw-r--r-- 2011-06-28 02:28:25
Edit Download
1.08 KB lrw-r--r-- 2010-12-20 03:22:49
Edit Download
1.26 KB lrw-r--r-- 2010-12-20 03:22:49
Edit Download
191 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download
12.65 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
6.33 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
965 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download
285 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download
2.53 KB lrw-r--r-- 2011-05-15 11:55:52
Edit Download
1.79 KB lrw-r--r-- 2011-06-28 02:28:25
Edit Download
1.70 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
6.66 KB lrw-r--r-- 2011-08-24 00:02:17
Edit Download
3.34 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
5.58 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
1.16 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
2.11 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
634 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).