Timeline


and

Sep 30, 2011:

11:47 PM Changeset [215b8d5] by David Benjamin <davidben@mit.edu>
Cleanup in owl_zwrite_create on error cases Before, the caller was required to cleanup, even on error. This is kind of weird. In particular, owl_zwrite_create_and_send_from_line forgot to so there was a small leak in there. Also with the previous set of commits it's now possible to error from owl_zwrite_create_from_line before the owl_zwrite is initialized, which means that owl_zwrite_new_from_line on misquoted strings explodes. Oops. Although I don't think this is actually possible to trigger. Also be consistent about whether rv != 0 or rv < 0 is the error condition. Barring any actual arguments one or another, I'm going to arbitrary declare it's the former since that function doesn't really have a useful number to return.
11:09 PM Changeset [f89cc6f]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Use the pre-parsed argc/argv in building owl_zwrites When called programmatically, the buff argument is, unfortunately, bogus. Quoting that correctly is somewhat more of a pain due to skiptokens commands. (See e3c8332fa85642544dba1222912b77cf6e32ce8c and 6a7111370ea0e1de2c3eb86a85f34cd68848d4b1. Though we really should fix that properly sometime.) This fixes programmatically sending zwrites from perl with spaces and such. For instance, BarnOwl::zwrite('-c', 'barnowl', '-i', 'spaces yay?'); and BarnOwl::zwrite('davidben', '-m', "mangoes\nare\ntasty"); It also, as a side effect, brings us one small step closer to eliminating the buff argument from C commands. Reported-by: Alex Dehnert <adehnert@mit.edu>
11:09 PM Changeset [6329cd5]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Allow building a zwrite from an argv Add new versions of owl_zwrite_create and owl_zwrite_new. Note that this means we rebuild z->zwriteline from scratch unconditionally. The only behavior change is that the user's spacing and quoting is not preserved in zwrite locktext. For instance :zwrite davidben -i "spaces yay?" now gets a locktext of ----> zwrite davidben -i 'spaces yay?' I think this isn't a big deal. It already happens for every other *write locktext, and if we kill the buff argument, it'll happen there too.
9:35 PM Changeset [a962f5c] by GitHub Merge Button <merge-button@github.com>
Merge 2dd9c4831cbda78650784ec9d10c3f6820bfdc01 into 78033261fc599d8d986e1c32b68523132b853d40
9:32 PM Changeset [2dd9c48] by David Benjamin <davidben@mit.edu>
Use the pre-parsed argc/argv in building owl_zwrites When called programmatically, the buff argument is, unfortunately, bogus. Quoting that correctly is somewhat more of a pain due to skiptokens commands. (See e3c8332fa85642544dba1222912b77cf6e32ce8c and 6a7111370ea0e1de2c3eb86a85f34cd68848d4b1. Though we really should fix that properly sometime.) This fixes programmatically sending zwrites from perl with spaces and such. For instance, BarnOwl::zwrite('-c', 'barnowl', '-i', 'spaces yay?'); and BarnOwl::zwrite('davidben', '-m', "mangoes\nare\ntasty"); It also, as a side effect, brings us one small step closer to eliminating the buff argument from C commands. Reported-by: Alex Dehnert <adehnert@mit.edu>
9:32 PM Changeset [d6c2e03] by David Benjamin <davidben@mit.edu>
Allow building a zwrite from an argv Add new versions of owl_zwrite_create and owl_zwrite_new. Note that this means we rebuild z->zwriteline from scratch unconditionally. The only behavior change is that the user's spacing and quoting is not preserved in zwrite locktext. For instance :zwrite davidben -i "spaces yay?" now gets a locktext of ----> zwrite davidben -i 'spaces yay?' I think this isn't a big deal. It already happens for every other *write locktext, and if we kill the buff argument, it'll happen there too.
9:32 PM Changeset [7b89e8c]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Add owl_argv_quote convenience function Did we really never write this thing?
7:58 PM Changeset [d953ede]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Rename owl_zwrite_new to owl_zwrite_new_from_line owl_zwrite_new will take an argv, like god intended.
7:24 PM Changeset [923c3f6] by Alex Dehnert <adehnert@mit.edu>
Export zephyr_zcrypt function to Perl The currently available infrastructure doesn't appear to allow sending multi-line zcrypted zephyrs from Perl (or at least not reasonably).
8:23 AM Changeset [6df57d4] by Jason Gross <jgross@mit.edu>
Added a perl hook for :away Note: The sepbar no longer distinguishes between AWAY, A-AWAY, and Z-AWAY.
8:22 AM Changeset [57ad328] by Jason Gross <jgross@mit.edu>
Added support for calling perl subs with various return types
8:22 AM Changeset [0c71c58] by Jason Gross <jgross@mit.edu>
Refactor perl calls through a single method I don't know the perl/C interface well enough to figure out the best way to standardize the many variants that we use to call perl code. Perhaps we should standardize the error messages, and put less knobs on the boilerplate macro.
8:14 AM Changeset [e21b921] by Jason Gross <jgross@mit.edu>
Add tests for enum variables.
8:14 AM Changeset [cce9369] by Jason Gross <jgross@mit.edu>
Allowed custom validsettings for other non-boolean perl variables.
8:14 AM Changeset [b54b06a] by Jason Gross <jgross@mit.edu>
Added functionality for creating enum variables from perl
8:12 AM Changeset [c0e728a] by Jason Gross <jgross@mit.edu>
Added functionality to create new enum variables from C
8:12 AM Changeset [5f784ec] by Jason Gross <jgross@mit.edu>
Refactored perl variable creation code in preparation for ambiguous types When we allow enums in perl, we can't be sure that recreation of an int isn't actually changing it into an enum (though, really, variables should only be recreated when you reload module code). This makes BarnOwl reinitilize all the fields, but keep the current value, if there is one.
8:07 AM Changeset [7803326]release-1.10release-1.9 by Jason Gross <jgross@mit.edu>
editwin callback for canceling the editwin The code for editwin callbacks (called when the editwin is created) has been extended so that callbacks are called when the editwin is canceled. The old (perl) editwin callbacks still exist and have the same functionality that they always have. They are now deprecated.
8:06 AM Changeset [e89ec48]release-1.10release-1.9 by Jason Gross <jgross@mit.edu>
Made BarnOwl::start_* wrappers around a new BarnOwl::start_edit A new function, BarnOwl::start_edit, was created as the preferred interface for starting the edit_win from perl. The perl interface to the edit_win is backwards compatible. This is mostly preparation for the next commit, which generalizes the syntax of starting an edit_win to allow callbacks on cancel.
8:06 AM Changeset [c737503]release-1.10release-1.9 by Jason Gross <jgross@mit.edu>
Improved consistency between owl_function_start_* functions

Sep 28, 2011:

5:31 PM 256Colors edited by andersk@mit.edu
Emacs bug is fixed in Emacs 24 (diff)
5:19 PM 256Colors edited by andersk@mit.edu
The screen-256color underline bug was fixed in ncurses 5.8 (diff)

Sep 27, 2011:

5:24 PM Changeset [c162fd6] by GitHub Merge Button <merge-button@github.com>
Merge c8ef50b948941e905b8fd8356002fc8014f22c8d into eba02ec95bdc692803bcaf7dc90abc666c7097f7
4:23 PM Changeset [eba02ec]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Fix dirtying windows inside a redraw handler This is a seriously sketchy thing to do, but at least maintain dirty and dirty_subtree bits correctly. Tested by triggering an editwin dirty from the sepbar code. Reviewed-by: Nelson Elhage <nelhage@mit.edu>
4:19 PM Changeset [bc6d81d] by GitHub Merge Button <merge-button@github.com>
Merge 8e40da7419b6431d25fbdbc22d60b91b64994bb4 into bbd0cf162e91b3b75e5ee8670e46db64431aa63b
4:16 PM Changeset [8e40da74] by David Benjamin <davidben@mit.edu>
Fix dirtying windows inside a redraw handler This is a seriously sketchy thing to do, but at least maintain dirty and dirty_subtree bits correctly. Tested by triggering an editwin dirty from the sepbar code.

Sep 26, 2011:

12:45 PM Ticket #173 (Barnowl does not visually distinguish between messages to -c foo and ...) closed by jgross@mit.edu
fixed: Fixed by commit 732d5c0e9d9ef138feef0e02f8c2ad5840e830a2

Sep 24, 2011:

10:15 PM Ticket #202 (Add Any::Moose to the locker) created by jgross@mit.edu
When I run eval "$(barnowl-perl-config)" and then run the trunk …
10:10 PM Ticket #201 (Implement Facebook chat/messaging) created by jgross@mit.edu
6:53 PM Ticket #200 (Trac 'component's for a new ticket should be updated) created by jgross@mit.edu
The components drop-down should include things like Facebook', AIM', …
6:48 PM Ticket #146 (Timestamps in info view should include a timezone) closed by jgross@mit.edu
fixed: Fixed by commit 4ebbfbc5360fa004637dd101f5a0c833cdccd60a

Sep 22, 2011:

7:37 PM UserFAQ edited by lnemzer@mit.edu
(diff)
7:27 PM UserFAQ created by lnemzer@mit.edu
I'd like a place to throw random observations without disrupting …
7:21 PM WikiStart edited by lnemzer@mit.edu
I'd like a place to throw random observations without disrupting … (diff)

Sep 21, 2011:

4:21 PM Changeset [c8ef50b] by Jason Gross <jgross@mit.edu>
editwin callback for canceling the editwin The code for editwin callbacks (called when the editwin is created) has been extended so that callbacks are called when the editwin is canceled. The old (perl) editwin callbacks still exist and have the same functionality that they always have. They are now deprecated.
4:21 PM Changeset [8ad3964] by Jason Gross <jgross@mit.edu>
Made BarnOwl::start_* wrappers around a new BarnOwl::start_edit A new function, BarnOwl::start_edit, was created as the preferred interface for starting the edit_win from perl. The perl interface to the edit_win is backwards compatible. This is mostly preparation for the next commit, which generalizes the syntax of starting an edit_win to allow callbacks on cancel.
4:20 PM Changeset [11d55e5] by Jason Gross <jgross@mit.edu>
Improved consistency between owl_function_start_* functions
3:52 PM Filters edited by jgross@mit.edu
updated list of special filters (diff)
10:37 AM Plugins edited by jgross@mit.edu
Removed Twitter, as it's now in trunk (diff)
10:31 AM CreatingAModule edited by jgross@mit.edu
Updated the list of BarnOwl modules in trunk (diff)

Sep 20, 2011:

11:16 PM Changeset [db67d4a] by GitHub Merge Button <merge-button@github.com>
Merge a2d682b324f875a104a06e8a30ad73d81fb41931 into bbd0cf162e91b3b75e5ee8670e46db64431aa63b
11:15 PM Changeset [bbd0cf1]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Bundle Ouch, AnyEvent::HTTP, and URI::Encode from CPAN Those dependencies of Facebook::Graph are not in Debian and are each single files, so we may as well just bundle them. Also update list of bundled libraries in README and drop their licenses (or the closest thing they have resembling one) into COPYING.
11:15 PM Changeset [f4037cf]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Update README, narrow POSIX import. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [7efa163]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Wordwrap, write the config, style wibbles. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [1d11b78]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Extra TODO item. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [395d304]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Style wibble. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [fe03126]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Expand deps for inlined Facebook::Graph. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [1efafe7]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Remove silly hgignore. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [8aa81172]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Show permalink for comments too. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [68c0afd]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Informative messages upon posting. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [5ef98c7]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Fix broken posts, better permission detection, implement deletion. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [b7fa912]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Force void context on callbacks. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [7777ac2]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Convert to async (both Facebook::Graph and us.) Work items: - Documentation is all out of date - Think more carefully about error handling (right now it's delayed into the response object) - Really bad HTTP POST hack in Publish.pm. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [2a42248]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Add vanilla Facebook::Graph. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [35c5bd8]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Add Facebook to MODULES list. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [d9fe25a]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Bundling Facebook::Graph now. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [d9c6631]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Consistent BarnOwl capitalization. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [7cb2830]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Show error message why failed to authenticate. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [a7ac83a]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Remove extra spaces round parentheses. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [fb06a17]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Rename zsig to permalink. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [e1ed6f4]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Refine module setup process. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [a4ae221]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Fix bug with removed get_topic comment. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [01d186f]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Improve docs, error handling and refactor. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [65c2b3c]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Make topic detection more robust. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [8b62088]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Add autocomplete and wall-posting support. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [eb20731]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Suppress failed URL fetch errors. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [b49aaf8]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Replace punctuation with spaces, and spaces to dashes, on rnjacob's suggestion. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [4b23009]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Note about async Facebook::Graph. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [77d1ef1]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Suppress interest groups for now. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [44f585c]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Add alternate implementation of keywords. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [eb497a9]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Rename postid to post_id. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [99f0a77]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Implement automatic instance selection, with no de-dup. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [3199d8e]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Add facebook-poll command and be more consistent about poll invoke. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [460413f]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Poll after comment. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [3d10ed3]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Make filters act more like traditional Zephyr filters. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [63afb72]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Comment reading support and back-timing. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
11:15 PM Changeset [24bd860]release-1.10release-1.9 by Edward Z. Yang <ezyang@mit.edu>
Initial commit of Facebook module implementation. This module was inspired by Kevin Riggle's Facebook-hacked-onto-Twitter implementation, but was rewritten to stand alone as its own module and use the new Facebook Graph API. It requires the Facebook::Graph CPAN module. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
5:47 PM Changeset [30781f6]release-1.10release-1.9 by Alejandro R. Sedeño <asedeno@mit.edu>
Fix bug generating filter text

Sep 19, 2011:

4:50 PM 256Colors edited by andersk@mit.edu
Syntax highlighting (diff)
1:31 PM Changeset [a2d682b] by Edward Z. Yang <ezyang@mit.edu>
Update README, narrow POSIX import. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [74c7a14] by Edward Z. Yang <ezyang@mit.edu>
Wordwrap, write the config, style wibbles. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [1260a65] by Edward Z. Yang <ezyang@mit.edu>
Extra TODO item. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [69066f6] by Edward Z. Yang <ezyang@mit.edu>
Style wibble. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [ec4b217] by Edward Z. Yang <ezyang@mit.edu>
Expand deps for inlined Facebook::Graph. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [d35b6fa] by Edward Z. Yang <ezyang@mit.edu>
Remove silly hgignore. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [0b372aa] by Edward Z. Yang <ezyang@mit.edu>
Show permalink for comments too. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [fd92f78] by Edward Z. Yang <ezyang@mit.edu>
Informative messages upon posting. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [83e90de] by Edward Z. Yang <ezyang@mit.edu>
Fix broken posts, better permission detection, implement deletion. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [c104b43] by Edward Z. Yang <ezyang@mit.edu>
Force void context on callbacks. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [9820d55] by Edward Z. Yang <ezyang@mit.edu>
Convert to async (both Facebook::Graph and us.) Work items: - Documentation is all out of date - Think more carefully about error handling (right now it's delayed into the response object) - Really bad HTTP POST hack in Publish.pm. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [cfca761] by Edward Z. Yang <ezyang@mit.edu>
Add vanilla Facebook::Graph. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [9d6afe0] by Edward Z. Yang <ezyang@mit.edu>
Add Facebook to MODULES list. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [a62f5171] by Edward Z. Yang <ezyang@mit.edu>
Bundling Facebook::Graph now. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [cb5d448] by Edward Z. Yang <ezyang@mit.edu>
Consistent BarnOwl capitalization. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [4200d87] by Edward Z. Yang <ezyang@mit.edu>
Show error message why failed to authenticate. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [e5b119a] by Edward Z. Yang <ezyang@mit.edu>
Remove extra spaces round parentheses. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [d387e0d] by Edward Z. Yang <ezyang@mit.edu>
Rename zsig to permalink. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [9776805] by Edward Z. Yang <ezyang@mit.edu>
Refine module setup process. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [ac45403] by Edward Z. Yang <ezyang@mit.edu>
Fix bug with removed get_topic comment. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [bc56a0d] by Edward Z. Yang <ezyang@mit.edu>
Improve docs, error handling and refactor. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [a8e1fcf] by Edward Z. Yang <ezyang@mit.edu>
Make topic detection more robust. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [c833c3d] by Edward Z. Yang <ezyang@mit.edu>
Add autocomplete and wall-posting support. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [00adc24] by Edward Z. Yang <ezyang@mit.edu>
Suppress failed URL fetch errors. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [67f6d7d] by Edward Z. Yang <ezyang@mit.edu>
Replace punctuation with spaces, and spaces to dashes, on rnjacob's suggestion. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [4724f1a] by Edward Z. Yang <ezyang@mit.edu>
Note about async Facebook::Graph. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [a98e071] by Edward Z. Yang <ezyang@mit.edu>
Suppress interest groups for now. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [61d7594] by Edward Z. Yang <ezyang@mit.edu>
Add alternate implementation of keywords. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [2226f91] by Edward Z. Yang <ezyang@mit.edu>
Rename postid to post_id. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [9da6022] by Edward Z. Yang <ezyang@mit.edu>
Implement automatic instance selection, with no de-dup. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [f75a9ca] by Edward Z. Yang <ezyang@mit.edu>
Add facebook-poll command and be more consistent about poll invoke. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [a0c06dc] by Edward Z. Yang <ezyang@mit.edu>
Poll after comment. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [b594537] by Edward Z. Yang <ezyang@mit.edu>
Make filters act more like traditional Zephyr filters. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [718c23f] by Edward Z. Yang <ezyang@mit.edu>
Comment reading support and back-timing. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
1:31 PM Changeset [ee98987] by Edward Z. Yang <ezyang@mit.edu>
Initial commit of Facebook module implementation. This module was inspired by Kevin Riggle's Facebook-hacked-onto-Twitter implementation, but was rewritten to stand alone as its own module and use the new Facebook Graph API. It requires the Facebook::Graph CPAN module. Signed-off-by: Edward Z. Yang <ezyang@mit.edu>

Sep 16, 2011:

1:18 AM Changeset [d973a73]release-1.10release-1.9 by Jason Gross <jgross@mit.edu>
Complete unstartup command just like startup command
1:16 AM Changeset [42a0c8b] by GitHub Merge Button <merge-button@github.com>
Merge 6edc38b038b3087836f5666d5f0b5820e4499c2c into 732d5c0e9d9ef138feef0e02f8c2ad5840e830a2
1:14 AM Changeset [732d5c0]release-1.10release-1.9 by Anders Kaseorg <andersk@mit.edu>
Show foreign realms on non-personal zephyrs like Owl did Signed-off-by: Anders Kaseorg <andersk@mit.edu> Reviewed-by: David Benjamin <davidben@mit.edu>

Sep 11, 2011:

1:18 PM Changeset [bcb84df] by GitHub Merge Button <merge-button@github.com>
Merge 8a13ea3063191e5cf58fc382cafe76511c6cf056 into 6646fdb981a88a6548cbc3da4b4963330fe1c7d6

Sep 7, 2011:

10:06 AM Changeset [6646fdb]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Restore correct semantics of message 'time' attribute This rewrites part of 4ebbfbc5360fa004637dd101f5a0c833cdccd60a. We can't replace every instance of ctime with a user-formatted time, as the time attribute is not user-formatted. It is (unfortunately) the API for perl to override the timestamp and owl_perlconfig_hashref2message expects a particular format for strptime. We should not then flip the values around once they reach C. (Especially not a locale-dependent one.) Rename *_to_timestr functions to owl_util_format_* so it is clear the function should only be used for user-formatted times.
Note: See TracTimeline for information about the timeline view.