Displaying 2 results from an estimated 2 matches for "msgnotifi".
Did you mean:
msgnotify
2002 Dec 14
2
cygwin under wine?
Is it possible to run cygwin under wine?
when I do "wine setup.exe" (where setup.exe is the cygwin installer)
I get through till the "downloading mirrors.lst" screen and then it
hangs with these:
fixme:msvcrt:MSVCRT__sopen : pmode 0x40575b94 ignored
fixme:propsheet:PROPSHEET_DialogProc Unimplemented msg PSM_SETCURSELID
(after a zillion of
fixme:shell:MsgNotify unhandled (-12)
2006 Jul 14
4
Using BackgrounDRb to replace nested loops?
...s posted:
1. # within the create action...after the message is saved:
2.
3. # get subscribers to this category
4. @subscribers = @msg.category.subscribers
5.
6. # loop through the subscribers, delivering the message to each
one
7. for subscriber in @subscribers
8. MsgNotifier.deliver_update(@msg)
9. end
This causes a slight delay upon posting--the message has to be sent
to all the subscribers for this category--but it works. (I''m not
terribly concerned about the delay in this part, for now, but if
anyone has a suggestion on how to improve things, I...