Timeline


and

Jan 13, 2009:

5:48 PM Changeset [b4b5a7e]release-1.10release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Opps, typo fix should fix replying to tweets.
2:07 PM Changeset [bc7037c]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Alejandro R. Sedeño <asedeno@mit.edu>
Ensure that at least one account is connected to Jabber before trying to disconnect any. If not, return a helpful error message. Reported by: yoz

Jan 12, 2009:

7:38 PM WikiStart edited by nelhage@MIT.EDU
(diff)

Jan 11, 2009:

4:52 PM Changeset [e9708d2]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Update perlwrap.pm about the receiveMessage/newMessage distinction.

Jan 10, 2009:

6:17 PM Changeset [50f8932]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Geoffrey Thomas <geofft@mit.edu>
keys: Map Esc-A/B/C/D like arrow keys everywhere. M-[ A and M-[ B were mapped the same as UP and DOWN in one place. Extend this to all places UP, DOWN, LEFT, and RIGHT occur.

Jan 9, 2009:

2:58 PM Changeset [927c186]release-1.10release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Support sending and receiving direct messages.

Jan 7, 2009:

5:28 PM Changeset [db1af5f]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Alejandro R. Sedeño <asedeno@mit.edu>
Fix a bug rendering multi-byte characters in the last column of the window. When the last character on a line was not wide, the code assumed that it consumed one byte. This caused multi-byte characters to render improperly. Now we find the start of the next character to ensure we get the whole thing. [Fixes: #56] Reported by: andersk Also, clarified some comments and did a bit of code hoisting.
4:41 PM Ticket #58 (Multibyte characters in the last column of the window are misrendered) created by andersk@MIT.EDU
[…]

Jan 6, 2009:

11:21 PM GettingStarted edited by alexmv@MIT.EDU
(diff)

Jan 5, 2009:

9:53 PM Changeset [da3596f]release-1.10release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Note that Twitter.par now receives messages.

Dec 27, 2008:

5:41 PM Changeset [e2a620b]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Geoffrey Thomas <geofft@mit.edu>
Handle one more corner case for discuss zephyrs. Signed-off-by: Geoffrey Thomas <geofft@mit.edu>

Dec 26, 2008:

2:40 AM Ticket #57 (Multi-line IRC messages should be broken into multiple messages) created by broder@MIT.EDU
This should be configurable; probably a command line option.

Dec 20, 2008:

10:17 PM Changeset [bd8b991]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Turn multi-line error messages into admin messages. This should help a lot with helping users debug perl modules and the like; The previous behavior of just showing one line was pretty much useless. We may still want to go through and replace some calls to owl_function_error with owl_function_adminmsg and vice versa.
9:53 PM Ticket #56 (Trac Search error) closed by nelhage@MIT.EDU
fixed: Thanks for the report. Looks like this was caused by our use of the …
9:47 PM Changeset [924f7cd]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Pull data from stderr in larger chunks at a time.
9:14 PM Ticket #56 (Trac Search error) created by jdaniel@MIT.EDU
ProgrammingError: (1146, "Table 'barnowl+trac.revision' doesn't …

Dec 17, 2008:

5:16 PM Changeset [df7f364]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Remove muxevents owl_muxevents has now been entirely replaced by owl_select.
5:13 PM Changeset [40c6657]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Use owl_select instead of owl_muxevents for owl_popexec.
5:13 PM Changeset [cf0cc64]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Use owl_select instead of owl_muxevents for stderr redirection. owl_muxevents appears to be a partial select() event loop that we didn't know about it. Since we have a full event loop now, this commit and the next few will remove muxevents and move their users over to owl_select.
5:13 PM Changeset [1895c29]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Fix owl_select_remove_dispatch bugs. Fix two bugs in owl_select_remove_dispatch: (1) Removing a dispatch from that dispatch's callback was bad, because it mutated the dispatch list while it was being traversed. Fix that by noting if we're in the middle of a dispatch, and deferring cleanup until later. (2) Calling owl_free on dispatches in select.c is a strange API, since it doesn't allocate them in the first place. Since we now have destructors, make freeing the dispatch their job.
5:12 PM Changeset [f36cd97]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Add a void* data to owl_dispatch and pass it around. Add a void* data field for the use of dispatches, and pass around the owl_dispatch. This allows one dispatch function to be used for multiple fd's, and lets us eliminate perl-specific code from the dispatch loop. In addition, we need to add a destructor to owl_dispatch so that perl dispatches can have their SV* decref'd on destroy.
3:24 PM Changeset [1631825]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Implement a perl timer class and minimal interface. I will document this and add a better API (perhaps through an AnyEvent impl) in later commits.
3:24 PM Changeset [c675b39]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Give timers a destructor field. Perl timers are going to need this in order to free the SV* callback we're holding onto.
3:24 PM Changeset [e0096b7]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
perlconfig.c: Properly wrap eval_pv with ENTER/SAVETMPS/FREETMPS/LEAVE Previously, we were leaking references to anything returned from perl evaluated by owl_perlconfig_execute.
3:02 PM Changeset [c415aca]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Stop using deprecated perl_* functions The perl_* forms of eval_* and get_* are deprecated in favor of the unprefixed versions (See `perldoc perlapi`).
3:00 PM Changeset [f7a61ef]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Nelson Elhage <nelhage@mit.edu>
Remove the unused owl_perlconfig_get_hashkeys

Dec 15, 2008:

1:04 PM Changeset [3048f1f]debianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9 by Anders Kaseorg <andersk@mit.edu>
Show incoming IRC /me messages with * instead of bold, too.
Note: See TracTimeline for information about the timeline view.