Split a font's filename and its alias.
[redact.git] / lib / redact / redact.rb
index 7417c92467e21f01a934369056c97716e7b4d10d..7b9a802461c644048235570b3a8482df409f505d 100644 (file)
@@ -1,5 +1,5 @@
 #--
-# $Id: redact.rb 28 2005-04-14 19:53:45Z tilman $
+# $Id: redact.rb 48 2005-06-08 21:38:34Z tilman $
 #
 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
 #
@@ -57,7 +57,7 @@ class String
 end
 
 module Redact
-       VERSION = "0.1.0"
+       VERSION = "0.1.1"
 
        class RedactError < StandardError; end
 
@@ -142,10 +142,12 @@ module Redact
        end
 
        class FontDirectoryEntry # :nodoc:
-               attr_reader :filename
+               attr_reader :filename, :alias
 
                def initialize(filename)
                        @filename = filename.to_str.dup.freeze
+                       @alias = "Edje." + File.basename(@filename).
+                                sub(/.[^.]+$/, "").freeze
                end
 
                protected
@@ -154,7 +156,7 @@ module Redact
                end
 
                def to_eet_properties
-                       {"entry" => [@filename]}
+                       {"entry" => [@alias]}
                end
        end
 
@@ -273,7 +275,7 @@ module Redact
                                        ImagePart
                                else
                                        raise(ArgumentError,
-                                             "invalid program type - #{type.to_s}")
+                                             "invalid part type - #{type.to_s}")
                                end
 
                                p = klass.new(self, @parts.size, name)