From: wmorgan Date: Mon, 8 Jan 2007 18:51:04 +0000 (+0000) Subject: made URI valid X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=de735be892fed323b46931e6f677548b8c4953fe;p=sup made URI valid git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@227 5c8cc53c-5e98-4d25-b20a-d8db53a31250 --- diff --git a/lib/sup/draft.rb b/lib/sup/draft.rb index 712274b..6ba7a47 100644 --- a/lib/sup/draft.rb +++ b/lib/sup/draft.rb @@ -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 diff --git a/lib/sup/sent.rb b/lib/sup/sent.rb index 1b093d5..05b2f70 100644 --- a/lib/sup/sent.rb +++ b/lib/sup/sent.rb @@ -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