Timeline


and

Oct 17, 2011:

8:15 PM Changeset [a19c9a3] by GitHub Merge Button <merge-button@github.com>
Merge 389d48749c4eb68f218e9fd6faf953ba542bfb75 into ef4074b758108eb46e2b1884e950d6f092a01260
8:12 PM Changeset [389d487]release-1.10release-1.9 by David Benjamin <davidben@mit.edu>
Switch to interactive context before sourcing the startup file There are no invariants that don't hold before the previous place we flip the interactive bit; although default_style is applied afterwards, there is still a style set before that code. There is no code which reads the READCONFIG bit, so no behavior should change from there. Setting the interactive bit makes owl_function_load{login,}subs noisier, but that's fine. A number of commands were labeled OWL_CTX_INTERACTIVE, but that doesn't change much because, unless the command is OWLCMD_*_CTX, the bits are ignored. What does change is that .owl/startup is allowed to leave with a context on the stack. In particular, this /finally/ fixes #161. More fundamentally, this makes .owl/startup identical to the user having run those commands in succession, which is a nice simplification.

Oct 15, 2011:

8:17 PM Changeset [822e9bd] by Jed Davis <jld@panix.com>
Fix SASL digest-uri to be acceptable to ejabberd. This is, approximately, 68ad6bc and 8fe68e0 from the XML-Stream repo. The problem is that, if example.com pointed SRV records at foo.example.com, we'd send "xmpp/foo.example.com" (which is, arguably, what RFC 2831 calls for, but community consensus seems to disagree) rather than "xmpp/example.com". ejabberd would also accept "xmpp/foo.example.com/example.com", and that would follow RFC 2831 more closely, but I don't want to introduce divergence from the upstream unless there's an observed interoperability problem that would be fixed by it.

Oct 14, 2011:

12:09 AM Ticket #204 (zpunt command should be consistent with the subscribe command) created by jgross@mit.edu
:sub message * @cs.cmu.edu and :zpunt message * @cs.cmu.edu both …

Oct 13, 2011:

3:36 AM Ticket #203 (Unsafe strcat on overlapping strings in owl_zephyr_smartstripped_user) created by andersk@mit.edu
From owl_zephyr_smartstripped_user: […] This strcat call might …

Oct 11, 2011:

11:47 PM release-notes/1.8 edited by davidben@mit.edu
Gmail some spaces got eaten. Also random wording cleanups (diff)
3:31 PM WikiStart edited by davidben@mit.edu
BarnOwl 1.8 (diff)
3:26 PM release-notes/1.8 created by davidben@mit.edu
2:05 PM Changeset [4f8535e]release-1.8 by David Benjamin <davidben@mit.edu>
BarnOwl 1.8

Oct 10, 2011:

8:07 PM Changeset [6503194] by GitHub Merge Button <merge-button@github.com>
Merge e21b9212952a5f6ff9f30193013153a0470944bb into ef4074b758108eb46e2b1884e950d6f092a01260

Oct 3, 2011:

12:33 AM Changeset [ef4074b]release-1.10release-1.9 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 6329cd5136a27361dedf94bb92e20fa2d327e43c 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 now. 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.

Oct 2, 2011:

3:38 PM Changeset [8da4e96] by Alex Dehnert <adehnert@mit.edu>
Add command to get a buddy's status This could be used by a user directly, though it's probably more likely to be used by a module author of some sort.
8:22 AM Changeset [9579509] by GitHub Merge Button <merge-button@github.com>
Merge 215b8d5017196e5ddc3408e367c01570c41c8680 into f34728b01e16a1cadffac064a947fd75ff28581a
1:31 AM Changeset [4af1241] by Alex Dehnert <adehnert@mit.edu>
Add completion for jabberlogout

Oct 1, 2011:

11:00 PM Changeset [f49afc3] by GitHub Merge Button <merge-button@github.com>
Merge f34728b01e16a1cadffac064a947fd75ff28581a into f89cc6fa54344f8f6b48601228af46e8fc95caea
10:59 PM Changeset [f34728b]release-1.10release-1.9 by Alex Dehnert <adehnert@mit.edu>
Add completion for reload-module
9:07 PM Changeset [ba4d1ad] by GitHub Merge Button <merge-button@github.com>
Merge 923c3f6c4a953b7c17e7a90328dcf2451255bdd2 into f89cc6fa54344f8f6b48601228af46e8fc95caea

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>
Note: See TracTimeline for information about the timeline view.