X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=lib%2Fredact%2Fredact.rb;h=260f34208c31afa73de7d7a2613406ac43c1b91b;hb=007d0d3d2ba79967df8fe005ead33224cab32c87;hp=59740f70f2f1e23b1477de9c3f6aec0b2cf102dc;hpb=2c25c90e2aaf57a7508a7988f58b2784d5071a7e;p=redact.git diff --git a/lib/redact/redact.rb b/lib/redact/redact.rb index 59740f7..260f342 100644 --- a/lib/redact/redact.rb +++ b/lib/redact/redact.rb @@ -1,5 +1,5 @@ #-- -# $Id: redact.rb 1 2005-03-26 01:32:38Z tilman $ +# $Id: redact.rb 25 2005-04-14 19:42:06Z tilman $ # # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) # @@ -27,7 +27,7 @@ require "imlib2" require "redact/part" require "redact/program" -class Object +class Object # :nodoc: undef :id end @@ -57,7 +57,7 @@ class String end module Redact - VERSION = "0.0.1" + VERSION = "0.1.0" class RedactError < StandardError; end @@ -84,7 +84,7 @@ module Redact @data = DataHash.new end - def collection(name) + def collection(name) # :yields: collection c = @collections[name] block_given? ? (yield c) : c @@ -105,7 +105,7 @@ module Redact end end - class DataHash < Hash + class DataHash < Hash # :nodoc: def [](key) super.value end @@ -115,7 +115,7 @@ module Redact end end - class HashEntry + class HashEntry # :nodoc: attr_reader :key, :value def initialize(key, value) @@ -128,7 +128,7 @@ module Redact end end - class FontDirectory < Array + class FontDirectory < Array # :nodoc: def to_eet_name "Edje_Font_Directory" end @@ -138,7 +138,7 @@ module Redact end end - class FontDirectoryEntry + class FontDirectoryEntry # :nodoc: attr_reader :filename def initialize(filename) @@ -154,7 +154,7 @@ module Redact end end - class ImageDirectory < Array + class ImageDirectory < Array # :nodoc: def <<(entry) super @@ -170,7 +170,7 @@ module Redact end end - class ImageDirectoryEntry + class ImageDirectoryEntry # :nodoc: attr_reader :filename, :image, :id def initialize(filename) @@ -203,7 +203,7 @@ module Redact end end - class CollectionDirectory < Array + class CollectionDirectory < Array # :nodoc: def to_eet_name "Edje_Part_Collection_Directory" end @@ -213,7 +213,7 @@ module Redact end end - class CollectionDirectoryEntry + class CollectionDirectoryEntry # :nodoc: def initialize(col) @name = col.name.to_str.dup.freeze @id = col.id @@ -230,8 +230,8 @@ module Redact end class Collection - attr_reader :name, :id, :data, :min, :max, :parts, :programs - attr_accessor :script + attr_reader :name, :id, :data, :min, :max, :parts, :programs, + :script def initialize(name, id) @name = name.to_str.dup.freeze @@ -247,7 +247,11 @@ module Redact @script = nil end - def part(name, type = :invalid) + def script=(v) + @script = v.to_str.dup + end + + def part(name, type = :invalid) # :yields: part p = @parts[name] if p.nil? klass = case type @@ -271,7 +275,7 @@ module Redact block_given? ? (yield p) : p end - def program(name, type = :invalid) + def program(name, type = :invalid) # :yields: program p = @programs[name] if p.nil? klass = case type