Sha256: 06b0d67bcb1305c3ff4c10f12ed465a2ba57ebb830f38a9137524e3cff8b3d6c

Contents?: true

Size: 1.72 KB

Versions: 7

Compression:

Stored size: 1.72 KB

Contents

#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = RichTextFunctionExample.rb -- The TaskJuggler III Project Management Software
#
# Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011
#               by Chris Schlaeger <chris@linux.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#

require 'taskjuggler/RichText/FunctionHandler'
require 'taskjuggler/TjpExample'
require 'taskjuggler/XMLElement'

class TaskJuggler

  # This class is a specialized RichTextFunctionHandler that turns references to
  # TJP example code in the test/TestSuite/Syntax/Correct directory into
  # embedded example code. It currently only supports HTML.
  class RichTextFunctionExample < RichTextFunctionHandler

    def initialize
      super(nil, 'example')
      @blockFunction = true
    end

    # Not supported for this function
    def to_s(args)
      ''
    end

    # Return a XMLElement tree that represents the example file as HTML code.
    def to_html(args)
      unless (file = args['file'])
        raise "'file' argument missing"
      end
      tag = args['tag']

      example = TjpExample.new
      fileName = AppConfig.dataDirs('test')[0] +
                 "TestSuite/Syntax/Correct/#{file}.tjp"
      example.open(fileName)
      frame = XMLElement.new('div', 'class' => 'codeframe')
      frame << (pre = XMLElement.new('pre', 'class' => 'code'))
      unless (text = example.to_s(tag))
        raise "There is no tag '#{tag}' in file " +
            "#{fileName}."
      end
      pre << XMLText.new(text)
      frame
    end

    # Not supported for this function.
    def to_tagged(args)
      nil
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
taskjuggler-3.0.0 lib/taskjuggler/RichText/FunctionExample.rb
taskjuggler-0.2.2 lib/taskjuggler/RichText/FunctionExample.rb
taskjuggler-0.2.1 lib/taskjuggler/RichText/FunctionExample.rb
taskjuggler-0.2.0 lib/taskjuggler/RichText/FunctionExample.rb
taskjuggler-0.1.1 lib/taskjuggler/RichText/FunctionExample.rb
taskjuggler-0.1.0 lib/taskjuggler/RichText/FunctionExample.rb
taskjuggler-0.0.11 lib/taskjuggler/RichText/FunctionExample.rb