Re: [sup-devel] [PATCH] implement const_missing for Index

2010-01-04 Thread Rich Lane
Excerpts from William Morgan's message of 2010-01-04 14:43:58 -0500: > Reformatted excerpts from Rich Lane's message of 2010-01-04: > > This should be added to the ruby-1.9-encoding branch. > > Not to ferret-deprecation? Oh, right, sorry. Airports are messing with my brain. __

[sup-devel] [PATCH] only open mail files in binary mode on Ruby 1.9

2010-01-04 Thread Rich Lane
--- lib/sup/maildir.rb |4 ++-- lib/sup/mbox/loader.rb |4 ++-- lib/sup/util.rb|7 +++ 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/sup/maildir.rb b/lib/sup/maildir.rb index 0852576..b2c5847 100644 --- a/lib/sup/maildir.rb +++ b/lib/sup/maildir.rb

Re: [sup-devel] [PATCH] implement const_missing for Index

2010-01-04 Thread William Morgan
Reformatted excerpts from Rich Lane's message of 2010-01-04: > This should be added to the ruby-1.9-encoding branch. Not to ferret-deprecation? -- William ___ Sup-devel mailing list Sup-devel@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-deve

[sup-devel] [PATCH] implement const_missing for Index

2010-01-04 Thread Rich Lane
Otherwise, constant references to LockError and ParseError will fail. --- This should be added to the ruby-1.9-encoding branch. lib/sup/index.rb |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/sup/index.rb b/lib/sup/index.rb index f02c96b..8a4b8f2 100644 --- a/lib/sup

[sup-devel] [PATCH] implement String#each on Ruby 1.9 for lockfile

2010-01-04 Thread Rich Lane
--- lib/sup/util.rb |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/lib/sup/util.rb b/lib/sup/util.rb index 206c18a..2d3a2ad 100644 --- a/lib/sup/util.rb +++ b/lib/sup/util.rb @@ -290,6 +290,12 @@ class String end end + unless method_defined? :each +def

[sup-devel] [PATCH] add console commands to get/set loglevel

2010-01-04 Thread Rich Lane
--- lib/sup/logger.rb |3 ++- lib/sup/modes/console-mode.rb |4 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/lib/sup/logger.rb b/lib/sup/logger.rb index ccaeae0..ab97e47 100644 --- a/lib/sup/logger.rb +++ b/lib/sup/logger.rb @@ -14,13 +14,14 @@ class Logg

[sup-devel] [issue43] fails to start after running current next

2010-01-04 Thread Ben Walton
New submission from Ben Walton : Sup failed to start after updating to next (sha1: a1669), which is where the ruby-1.9-encoding branch was merged. It seems that my ruby doesn't like the :BINARY suffix on the file open mode introduced by commit a6bb5. Removing :BINARY from the mode parameter wor

[sup-devel] [PATCH] [issue7] configurable poll interval

2010-01-04 Thread Eric Sherman
This patch does not add configurable per-source poll intervals, but it does add a single :poll_interval which still defaults to 300 seconds if not defined in config.yaml. --- lib/sup.rb |3 ++- lib/sup/poll.rb |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/s

[sup-devel] [PATCHv2] [issue14] poll updates accumulate while idle

2010-01-04 Thread Eric Sherman
If you were to leave sup running for a long time, this patch would enable you to get a glance summary of new mail activity since sup was last touched, by letting the poll update message accumulate its tally while idle. On keystrokes, BufferManager sends an :unidle update if the last keystroke occu

Re: [sup-devel] [PATCH] [issue14] poll updates accumulate while idle

2010-01-04 Thread Eric Sherman
Excerpts from Eric Sherman's message of Mon Jan 04 01:20:34 -0500 2010: > If you were to leave sup running for a long time, this patch would > enable you to get a glance summary of new mail activity since sup was > last touched, by letting the poll update message accumulate its tally > while idle.