]> git.notmuchmail.org Git - sup/commitdiff
made URI valid
authorwmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Mon, 8 Jan 2007 18:51:04 +0000 (18:51 +0000)
committerwmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Mon, 8 Jan 2007 18:51:04 +0000 (18:51 +0000)
git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@227 5c8cc53c-5e98-4d25-b20a-d8db53a31250

lib/sup/draft.rb
lib/sup/sent.rb

index 712274bb8db9212ab60aef12e130eb9e801ec52a..6ba7a47a737a8ffa9535eee4ede3c184bc1ae656 100644 (file)
@@ -10,7 +10,7 @@ class DraftManager
     self.class.i_am_the_instance self
   end
 
-  def self.source_name; "drafts://"; end
+  def self.source_name; "sup://drafts"; end
   def self.source_id; 9999; end
   def new_source; @source = DraftLoader.new; end
 
index 1b093d5f403fff1ca269b23a0bf04439f1eaafc0..05b2f70c7bc5105ecda90560824f7945aa87ebd0 100644 (file)
@@ -10,7 +10,7 @@ class SentManager
     self.class.i_am_the_instance self
   end
 
-  def self.source_name; "sent://"; end
+  def self.source_name; "sup://sent"; end
   def self.source_id; 9998; end
   def new_source; @source = SentLoader.new; end