Changes in / [ecaec21:89ab5c8]
- Files:
-
- 1 added
- 1 deleted
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rae333f0 rc45e1eb 1 1 ACLOCAL_AMFLAGS = -I m4 2 CFLAGS += $(EXTRA_CFLAGS) 2 3 3 4 GIT_DESCRIPTION := $(if $(wildcard .git),$(shell git describe --match='barnowl-*' HEAD 2>/dev/null)) … … 48 49 keypress.c keymap.c keybinding.c cmd.c context.c \ 49 50 aim.c buddy.c buddylist.c style.c errqueue.c \ 50 zbuddylist.c popexec.c obarray.cselect.c wcwidth.c \51 zbuddylist.c popexec.c select.c wcwidth.c \ 51 52 glib_compat.c filterproc.c 52 53 -
commands.c
r14965e5 rd544237 92 92 "Use 'show keymaps' to see the existing keymaps.\n" 93 93 "Key sequences may be things like M-C-t or NPAGE.\n\n" 94 "Ex.: bindkey recv C-b command zwrite -c barnowl" 95 "SEE ALSO: bindkey"), 94 "Ex.: bindkey recv C-b command zwrite -c barnowl\n" 95 "Ex.: bindkey recv m command start-command zwrite -c my-class -i \n\n" 96 "SEE ALSO: unbindkey, start-command"), 96 97 97 98 OWLCMD_ARGS("unbindkey", owl_command_unbindkey, OWL_CTX_ANY, … … 100 101 "Removes a binding of a key sequence within a keymap.\n" 101 102 "Use 'show keymaps' to see the existing keymaps.\n" 102 "Ex.: unbindkey recv H "103 "Ex.: unbindkey recv H\n\n" 103 104 "SEE ALSO: bindkey"), 104 105 105 106 OWLCMD_ARGS("zwrite", owl_command_zwrite, OWL_CTX_INTERACTIVE, 106 107 "send a zephyr", 107 "zwrite [-n] [-C] [-c class] [-i instance] [-r realm] [-O opc de] [<user> ...] [-m <message...>]",108 "zwrite [-n] [-C] [-c class] [-i instance] [-r realm] [-O opcode] [<user> ...] [-m <message...>]", 108 109 "Zwrite send a zephyr to the one or more users specified.\n\n" 109 110 "The following options are available:\n\n" … … 137 138 OWLCMD_ARGS("zcrypt", owl_command_zcrypt, OWL_CTX_INTERACTIVE, 138 139 "send an encrypted zephyr", 139 "zcrypt [-n] [-C] [-c class] [-i instance] [-r realm] [-O opc de] [-m <message...>]\n",140 "zcrypt [-n] [-C] [-c class] [-i instance] [-r realm] [-O opcode] [-m <message...>]\n", 140 141 "Behaves like zwrite but uses encryption. Not for use with\n" 141 142 "personal messages\n"), … … 147 148 "allow editing.\n\n" 148 149 "If 'sender' is specified, reply to the sender.\n\n" 149 "If 'all' or no args are specified, reply public ally to the\n"150 "If 'all' or no args are specified, reply publicly to the\n" 150 151 "same class/instance for non-personal messages and to the\n" 151 152 "sender for personal messages.\n\n" … … 265 266 "zpunt <class> <instance> [recipient]\n" 266 267 "zpunt <instance>", 267 "The zpunt command will sup ress messageto the specified\n"268 "The zpunt command will suppress messages to the specified\n" 268 269 "zephyr triplet. In the second usage messages are suppressed\n" 269 270 "for class MESSAGE and the named instance.\n\n" … … 282 283 "punt <filter-text>", 283 284 "punt <filter-text (multiple words)>\n" 284 "The punt command will sup ress messageto the specified\n"285 "The punt command will suppress messages to the specified\n" 285 286 "filter\n\n" 286 287 "SEE ALSO: unpunt, zpunt, show zpunts\n"), … … 585 586 "name style after the -s argument.\n" 586 587 "\n" 587 "The other usages listed above are abbre ivated forms that simply set\n"588 "The other usages listed above are abbreviated forms that simply set\n" 588 589 "the filter of the current view. The -d option allows you to write a\n" 589 590 "filter expression that will be dynamically created by owl and then\n" … … 593 594 OWLCMD_ARGS("smartnarrow", owl_command_smartnarrow, OWL_CTX_INTERACTIVE, 594 595 "view only messages similar to the current message", 595 "smartnarrow [-i | --instance] [-r | --relat de]",596 "smartnarrow [-i | --instance] [-r | --related]", 596 597 "If the curmsg is a personal message narrow\n" 597 598 " to the conversation with that user.\n" … … 613 614 " message, the filter is to that instance.\n" 614 615 "If the curmsg is a class message, the filter is that class.\n" 615 "If the curmsg is a class message and '-i' is speci ed\n"616 "If the curmsg is a class message and '-i' is specified\n" 616 617 " the filter is to that class and instance.\n"), 617 618 … … 673 674 "for formatting messages.\n\n" 674 675 "Show variables will list the names of all variables.\n\n" 675 "Show errors will show a list of errors e countered by Owl.\n\n"676 "Show errors will show a list of errors encountered by Owl.\n\n" 676 677 "SEE ALSO: filter, view, alias, bindkey, help\n"), 677 678 … … 742 743 "set the search highlight string without searching", 743 744 "setsearch <string>", 744 "The setsearch command highlights all occur ences of its\n"745 "The setsearch command highlights all occurrences of its\n" 745 746 "argument and makes it the default argument for future\n" 746 747 "search commands, but does not move the cursor. With\n" … … 1294 1295 char opt; 1295 1296 int instance = 0, related = 0, i; 1296 c har **tmp_argv = owl_malloc(sizeof(char *) * argc);1297 const char **tmp_argv = owl_malloc(sizeof(char *) * argc); 1297 1298 1298 1299 for (i = 0; i < argc; i++) 1299 tmp_argv[i] = owl_strdup(argv[i]);1300 1301 static struct option options[] = {1300 tmp_argv[i] = argv[i]; 1301 1302 static const struct option options[] = { 1302 1303 {"instance", 0, 0, 'i'}, 1303 1304 {"related", 0, 0, 'r'}, 1304 1305 {NULL, 0, 0, 0}}; 1305 while ((opt = getopt_long(argc, tmp_argv, "ir", options, NULL)) != -1) { 1306 1307 optind = 0; 1308 while ((opt = getopt_long(argc, (char **)tmp_argv, "ir", options, NULL)) != -1) { 1306 1309 switch (opt) { 1307 1310 case 'i': … … 1317 1320 } 1318 1321 1319 for (i = 0; i < argc; i++)1320 owl_free(tmp_argv[i]);1321 owl_free(tmp_argv);1322 1323 1322 filtname = owl_function_smartfilter(instance, related); 1324 1323 … … 1329 1328 1330 1329 done: 1331 optind = 0; /* reset getopt */ 1330 owl_free(tmp_argv); 1331 1332 1332 return NULL; 1333 1333 } … … 1608 1608 char *owl_command_exec(int argc, const char *const *argv, const char *buff) 1609 1609 { 1610 return owl_function_exec(argc, argv, buff, 0);1610 return owl_function_exec(argc, argv, buff, OWL_OUTPUT_RETURN); 1611 1611 } 1612 1612 1613 1613 char *owl_command_pexec(int argc, const char *const *argv, const char *buff) 1614 1614 { 1615 return owl_function_exec(argc, argv, buff, 1);1615 return owl_function_exec(argc, argv, buff, OWL_OUTPUT_POPUP); 1616 1616 } 1617 1617 1618 1618 char *owl_command_aexec(int argc, const char *const *argv, const char *buff) 1619 1619 { 1620 return owl_function_exec(argc, argv, buff, 2);1620 return owl_function_exec(argc, argv, buff, OWL_OUTPUT_ADMINMSG); 1621 1621 } 1622 1622 1623 1623 char *owl_command_perl(int argc, const char *const *argv, const char *buff) 1624 1624 { 1625 return owl_function_perl(argc, argv, buff, 0);1625 return owl_function_perl(argc, argv, buff, OWL_OUTPUT_RETURN); 1626 1626 } 1627 1627 1628 1628 char *owl_command_pperl(int argc, const char *const *argv, const char *buff) 1629 1629 { 1630 return owl_function_perl(argc, argv, buff, 1);1630 return owl_function_perl(argc, argv, buff, OWL_OUTPUT_POPUP); 1631 1631 } 1632 1632 1633 1633 char *owl_command_aperl(int argc, const char *const *argv, const char *buff) 1634 1634 { 1635 return owl_function_perl(argc, argv, buff, 2);1635 return owl_function_perl(argc, argv, buff, OWL_OUTPUT_ADMINMSG); 1636 1636 } 1637 1637 -
doc/releasing-barnowl.txt
r1ea0249 r5f08dbe 1 DOING A BARNOWL RELEASE 1 -*- mode: org *- 2 * DOING A BARNOWL RELEASE 3 - [ ] Send mail to barnowl-dev indicating that a release is 4 happening soon, and soliciting any improvements that 5 developers want included in the release. 6 - [ ] Wait a while (a week or so, or more if necessary) for any 7 pending patches to get in. 8 - [ ] Prepare the -rc commit 9 - [ ] Run ./scripts/add-changelog NEW-VERSION PREV-TAG..HEAD 10 - [ ] Edit ChangeLog to combine and filter entries 11 - [ ] Edit configure.ac to bump the version to 1.Nrc1 12 - [ ] Commit with message 'BarnOwl 1.Nrc1'; don't push until after 13 builds all succeed 14 - [ ] Run scripts/do-release with -f (so it won't complain about 15 missing changelog), makes a tarball 16 - [ ] Do a locker build (See DOING A LOCKER BUILD) 17 - [ ] Update configure.ac on master to bump the version to 1.(N+1)dev 18 - [ ] Push git git: 19 - [ ] The RC commit 20 - [ ] The configure.ac change on master 21 - [ ] A release-1.N branch pointing at the RC commit 22 - [ ] Copy tarball into /mit/barnowl/web_scripts/dist 23 - [ ] Send mail announcing the RC to barnowl-dev@mit.edu 24 - [ ] Wait 1-2 weeks, collect any bug reports 25 - [ ] Fix any reported bugs on master 26 - [ ] Cherry-pick/backport appropriate fixes from master onto 27 release-1.N 28 - [ ] If there have been many or large bugfixes, repeat the process 29 for barnowl 1.Nrc2 2 30 3 [ ] Send mail to barnowl-dev indicating that a release is happening 4 soon, and soliciting any improvements that developers want 5 included in the release. 31 * DOING THE ACTUAL RELEASE 32 - [ ] Update the changelog and configure.ac for barnowl 1.N 33 - [ ] run ./scripts/do-release 34 - [ ] Do the locker build 35 - [ ] Push the release tag 36 - [ ] Write up release notes 37 (I usually use the previous release's email as a template) 38 - [ ] Update the website 39 - [ ] Add the line that `do-release` printed to the changelog on the home page 40 - [ ] Add your release notes as /release-notes/1.N 41 - [ ] Send the release notes to barnowl-users@mit.edu 6 42 7 [ ] Wait a while (a week or so, or more if necessary) for any pending 8 patches to get in. 43 * DOING A LOCKER BUILD 44 - [ ] Copy the tarball to build@nelhage.com 45 - [ ] ssh to build@nelhage.com and kinit 46 - [ ] On build@nelhage.com, run barnowl-build-all TARBALL. 47 This script does builds for all Debathena platforms using chroots 48 on nelhage.com, and ssh's to Athena 9 machines to do the two 49 Athena 9 builds. 50 - [ ] Sanity-check the builds 51 - [ ] Do cursory testing on debathena platforms and both athena9s. 52 - [ ] chroots on nelhage.com also useful 53 - [ ] Update symlinks with locker-update script; 54 - locker-update [-b] [-n] VERSION 55 - e.g. locker-update -b -n barnowl-1.6rc1 56 - [ ] Use -b to update the barnowl-beta name 57 - [ ] Use -n first for dry-run 9 58 10 [ ] Prepare the -rc commit 11 12 [ ] Run ./scripts/add-changelog NEW-VERSION PREV-TAG..HEAD 13 14 [ ] Edit ChangeLog to combine and filter entries 15 16 [ ] Edit configure.ac to bump the version to 1.Nrc1 17 18 [ ] Commit with message 'BarnOwl 1.Nrc1'; don't push until after 19 builds all succeed 20 21 [ ] Run scripts/do-release with -f (so it won't complain about missing 22 changelog), makes a tarball 23 24 [ ] Make all the builds 25 26 [ ] On build@nelhage.com, run barnowl-build-all TARBALL to build for 27 everything with chroots, doesn't do athena 9 builds. Builds into 28 locker parellel to all other versions. 29 30 [ ] Do two athena9 builds: solaris and linux, usually use multics (or 31 sun.dialup) for the solaris build, oliver for linux athena9 32 33 [ ] Remember to add gnu; add barnowl 34 35 [ ] eval `barnowl-perl-config` to include the perl modules in the 36 barnowl locker 37 38 [ ] Run scripts/locker-build TARBALL (barnowl-build-all loops over 39 all of them in schroots). It overrides existing one. 40 41 [ ] Sanity-check the builds 42 43 [ ] Do cursory testing on debathena platforms and both athena9s. 44 45 [ ] chroots on nelhage.com also useful 46 47 [ ] Update symlinks with locker-update script; 48 49 locker-update [-b] [-n] VERSION 50 51 e.g. locker-update -b -n barnowl-1.6rc1 52 53 [ ] -b for the beta 54 55 [ ] -n first for dry-run 56 57 [ ] Push the RC commit 58 59 [ ] Copy tarball into /mit/barnowl/web_scripts/dist 60 61 [ ] Send mail (rcs to barnowl-dev@, release to barnowl-users@) 62 63 [ ] Make an actual release about a week after the RC 64 65 66 LOCKER LAYOUT 67 68 * builds/barnowl-VERSION contains the arch-independent files by 69 version 70 71 * arch/SYSNAME/bin/barnowl-VERSION is the actual binary 72 73 * arch/SYSNAME/bin/barnowl is a symlink to ../../common/bin/barnowl 74 (wrapper script runs barnowl.real). .../barnowl.real is a symlink to 75 the latest version. 76 77 * zcrypt is also installed with a versioned name, but currently 78 barnowl-N will not run zcrypt-N, so we can't change that interface 79 at all. 59 * LOCKER LAYOUT 60 - builds/barnowl-VERSION contains the arch-independent files by 61 version 62 - arch/SYSNAME/bin/barnowl-VERSION is the actual binary 63 - arch/SYSNAME/bin/barnowl is a symlink to ../../common/bin/barnowl 64 (wrapper script runs barnowl.real). .../barnowl.real is a symlink 65 to the latest version. 66 - zcrypt is also installed with a versioned name, but currently 67 barnowl-N will not run zcrypt-N, so we can't change that interface 68 at all. -
functions.c
recaec21 r2cfc6d7 1992 1992 newbuff = owl_sprintf("%s%s", buff, redirect); 1993 1993 1994 if (type == 1) {1994 if (type == OWL_OUTPUT_POPUP) { 1995 1995 owl_popexec_new(newbuff); 1996 1996 } else { … … 1999 1999 pclose(p); 2000 2000 2001 if (type==1) { 2002 owl_function_popless_text(out); 2003 } else if (type==0) { 2001 if (type == OWL_OUTPUT_RETURN) { 2004 2002 owl_free(newbuff); 2005 2003 return out; 2006 } else if (type ==2) {2004 } else if (type == OWL_OUTPUT_ADMINMSG) { 2007 2005 owl_function_adminmsg(buff, out); 2008 } else {2009 owl_function_popless_text(out);2010 2006 } 2011 2007 owl_free(out); … … 2034 2030 perlout = owl_perlconfig_execute(buff); 2035 2031 if (perlout) { 2036 if (type ==1) {2032 if (type == OWL_OUTPUT_POPUP) { 2037 2033 owl_function_popless_text(perlout); 2038 } else if (type ==2) {2034 } else if (type == OWL_OUTPUT_ADMINMSG) { 2039 2035 owl_function_adminmsg(buff, perlout); 2040 } else if (type ==0) {2036 } else if (type == OWL_OUTPUT_RETURN) { 2041 2037 return perlout; 2042 } else {2043 owl_function_popless_text(perlout);2044 2038 } 2045 2039 owl_free(perlout); … … 2331 2325 /* if it already exists then go with it. This lets users override */ 2332 2326 if (owl_global_get_filter(&g, filtname)) { 2333 return(filtname);2327 goto done; 2334 2328 } 2335 2329 … … 2361 2355 2362 2356 owl_free(argbuff); 2357 done: 2363 2358 owl_free(class); 2364 2359 if (instance) { -
global.c
r719173c4 r20aced3 53 53 g->filterlist = NULL; 54 54 owl_list_create(&(g->puntlist)); 55 owl_list_create(&(g->messagequeue));55 g->messagequeue = g_queue_new(); 56 56 owl_dict_create(&(g->styledict)); 57 57 g->curmsg_vert_offset=0; … … 113 113 g->pseudologin_notify = 0; 114 114 115 owl_obarray_init(&(g->obarray));116 117 115 owl_message_init_fmtext_cache(); 118 116 owl_list_create(&(g->io_dispatch_list)); … … 120 118 g->timerlist = NULL; 121 119 g->interrupted = FALSE; 120 121 /* set up a pad for input */ 122 g->input_pad = newpad(1, 1); 123 nodelay(g->input_pad, 1); 124 keypad(g->input_pad, 1); 125 meta(g->input_pad, 1); 122 126 } 123 127 … … 179 183 idlok(owl_global_get_curs_msgwin(g), FALSE); 180 184 181 nodelay(owl_global_get_curs_typwin(g), 1);182 keypad(owl_global_get_curs_typwin(g), TRUE);183 185 wmove(owl_global_get_curs_typwin(g), 0, 0); 184 185 meta(owl_global_get_curs_typwin(g), TRUE);186 186 } 187 187 … … 862 862 void owl_global_messagequeue_addmsg(owl_global *g, owl_message *m) 863 863 { 864 owl_list_append_element(&(g->messagequeue), m);864 g_queue_push_tail(g->messagequeue, m); 865 865 } 866 866 … … 873 873 owl_message *out; 874 874 875 if ( owl_list_get_size(&(g->messagequeue))==0) return(NULL);876 out=owl_list_get_element(&(g->messagequeue), 0);877 o wl_list_remove_element(&(g->messagequeue), 0);878 return (out);875 if (g_queue_is_empty(g->messagequeue)) 876 return NULL; 877 out = g_queue_pop_head(g->messagequeue); 878 return out; 879 879 } 880 880 881 881 int owl_global_messagequeue_pending(owl_global *g) 882 882 { 883 if (owl_list_get_size(&(g->messagequeue))==0) return(0); 884 return(1); 883 return !g_queue_is_empty(g->messagequeue); 885 884 } 886 885 … … 1010 1009 } 1011 1010 1012 const char * owl_global_intern(owl_global *g, const char * string)1013 {1014 return owl_obarray_insert(&(g->obarray), string);1015 }1016 1017 1011 owl_list *owl_global_get_io_dispatch_list(owl_global *g) 1018 1012 { -
message.c
r4727d31 rc314f39 61 61 owl_pair *p = NULL, *pair = NULL; 62 62 63 attrname = g_intern_string(attrname); 64 63 65 /* look for an existing pair with this key, */ 64 66 j=owl_list_get_size(&(m->attributes)); 65 67 for (i=0; i<j; i++) { 66 68 p=owl_list_get_element(&(m->attributes), i); 67 if ( !strcmp(owl_pair_get_key(p), attrname)) {69 if (owl_pair_get_key(p) == attrname) { 68 70 owl_free(owl_pair_get_value(p)); 69 71 pair = p; … … 74 76 if(pair == NULL) { 75 77 pair = owl_malloc(sizeof(owl_pair)); 76 owl_pair_create(pair, owl_global_intern(&g, attrname), NULL);78 owl_pair_create(pair, attrname, NULL); 77 79 owl_list_append_element(&(m->attributes), pair); 78 80 } … … 87 89 int i, j; 88 90 owl_pair *p; 91 GQuark quark; 92 93 quark = g_quark_try_string(attrname); 94 if (quark == 0) 95 /* don't bother inserting into string table */ 96 return NULL; 97 attrname = g_quark_to_string(quark); 89 98 90 99 j=owl_list_get_size(&(m->attributes)); 91 100 for (i=0; i<j; i++) { 92 101 p=owl_list_get_element(&(m->attributes), i); 93 if ( !strcmp(owl_pair_get_key(p), attrname)) {102 if (owl_pair_get_key(p) == attrname) { 94 103 return(owl_pair_get_value(p)); 95 104 } … … 496 505 void owl_message_set_hostname(owl_message *m, const char *hostname) 497 506 { 498 m->hostname =owl_global_intern(&g,hostname);507 m->hostname = g_intern_string(hostname); 499 508 } 500 509 -
owl.c
rf7cf6c2 r3aa0522 311 311 { 312 312 owl_input j; 313 WINDOW *typwin;314 315 typwin = owl_global_get_curs_typwin(&g);316 313 317 314 while (1) { 318 j.ch = wgetch( typwin);315 j.ch = wgetch(g.input_pad); 319 316 if (j.ch == ERR) return; 320 317 … … 339 336 340 337 for (i = 1; i < bytes; i++) { 341 int tmp = wgetch(typwin);338 int tmp = wgetch(g.input_pad); 342 339 /* If what we got was not a byte, or not a continuation byte */ 343 340 if (tmp > 0xff || !(tmp & 0x80 && ~tmp & 0x40)) { … … 458 455 #endif /* OWL_STDERR_REDIR */ 459 456 460 void owl_zephyr_buddycheck_timer(owl_timer *t, void *data) 461 { 462 if (owl_global_is_pseudologins(&g)) { 463 owl_function_debugmsg("Doing zephyr buddy check"); 464 owl_function_zephyr_buddy_check(1); 465 } 457 static int owl_refresh_pre_select_action(owl_ps_action *a, void *data) 458 { 459 /* if a resize has been scheduled, deal with it */ 460 owl_global_resize(&g, 0, 0); 461 /* also handle relayouts */ 462 owl_global_relayout(&g); 463 464 /* update the terminal if we need to */ 465 if (owl_global_is_needrefresh(&g)) { 466 /* these are here in case a relayout changes the windows */ 467 WINDOW *sepwin = owl_global_get_curs_sepwin(&g); 468 WINDOW *typwin = owl_global_get_curs_typwin(&g); 469 470 /* push all changed windows to screen */ 471 update_panels(); 472 /* leave the cursor in the appropriate window */ 473 if (!owl_popwin_is_active(owl_global_get_popwin(&g)) 474 && owl_global_get_typwin(&g)) { 475 owl_function_set_cursor(typwin); 476 } else { 477 owl_function_set_cursor(sepwin); 478 } 479 doupdate(); 480 owl_global_set_noneedrefresh(&g); 481 } 482 return 0; 466 483 } 467 484 … … 469 486 int main(int argc, char **argv, char **env) 470 487 { 471 WINDOW *sepwin, *typwin;472 488 int argcsave; 473 489 const char *const *argvsave; … … 583 599 owl_function_source(NULL); 584 600 585 update_panels();586 587 601 /* Set the default style */ 588 602 owl_function_debugmsg("startup: setting startup and default style"); … … 605 619 owl_global_push_context(&g, OWL_CTX_READCONFIG|OWL_CTX_RECV, NULL, "recv"); 606 620 607 owl_select_add_timer(180, 180, owl_zephyr_buddycheck_timer, NULL, NULL); 608 609 /* If we ever deprecate the mainloop hook, remove this. */ 610 owl_select_add_timer(0, 1, owl_perlconfig_mainloop, NULL, NULL); 611 621 owl_select_add_pre_select_action(owl_refresh_pre_select_action, NULL, NULL); 612 622 owl_select_add_pre_select_action(owl_process_messages, NULL, NULL); 613 623 … … 615 625 /* main loop */ 616 626 while (1) { 617 618 /* if a resize has been scheduled, deal with it */619 owl_global_resize(&g, 0, 0);620 /* also handle relayouts */621 owl_global_relayout(&g);622 623 /* these are here in case a relayout changes the windows */624 sepwin=owl_global_get_curs_sepwin(&g);625 typwin=owl_global_get_curs_typwin(&g);626 627 /* update the terminal if we need to */628 if (owl_global_is_needrefresh(&g)) {629 /* push all changed windows to screen */630 update_panels();631 /* leave the cursor in the appropriate window */632 if (!owl_popwin_is_active(owl_global_get_popwin(&g))633 && owl_global_get_typwin(&g)) {634 owl_function_set_cursor(typwin);635 } else {636 owl_function_set_cursor(sepwin);637 }638 doupdate();639 owl_global_set_noneedrefresh(&g);640 }641 642 627 /* select on FDs we know about. */ 643 628 owl_select(); -
owl.h
rf7cf6c2 r20aced3 184 184 #define OWL_VARIABLE_BOOL 2 185 185 #define OWL_VARIABLE_STRING 3 186 187 #define OWL_OUTPUT_RETURN 0 188 #define OWL_OUTPUT_POPUP 1 189 #define OWL_OUTPUT_ADMINMSG 2 186 190 187 191 #define OWL_FILTER_MAX_DEPTH 300 … … 518 522 } owl_colorpair_mgr; 519 523 520 typedef struct _owl_obarray {521 owl_list strings;522 } owl_obarray;523 524 524 typedef struct _owl_io_dispatch { 525 525 int fd; /* FD to watch for dispatch. */ … … 565 565 owl_view current_view; 566 566 owl_messagelist msglist; 567 WINDOW *input_pad; 567 568 PANEL *recpan, *seppan, *msgpan, *typpan; 568 569 int needrefresh; … … 605 606 char *aim_screenname_for_filters; /* currently logged in AIM screen name */ 606 607 owl_buddylist buddylist; /* list of logged in AIM buddies */ 607 owl_list messagequeue;/* for queueing up aim and other messages */608 GQueue *messagequeue; /* for queueing up aim and other messages */ 608 609 owl_dict styledict; /* global dictionary of available styles */ 609 610 char *response; /* response to the last question asked */ … … 618 619 int pseudologin_notify; 619 620 struct termios startup_tio; 620 owl_obarray obarray;621 621 owl_list io_dispatch_list; 622 622 owl_list psa_list; -
perl/lib/BarnOwl/Hooks.pm
rb30c256 r3aa0522 79 79 our %EXPORT_TAGS = (all => [@EXPORT_OK]); 80 80 81 use BarnOwl::MainLoopCompatHook; 82 81 83 our $startup = BarnOwl::Hook->new; 82 84 our $shutdown = BarnOwl::Hook->new; 83 85 our $receiveMessage = BarnOwl::Hook->new; 84 86 our $newMessage = BarnOwl::Hook->new; 85 our $mainLoop = BarnOwl:: Hook->new;87 our $mainLoop = BarnOwl::MainLoopCompatHook->new; 86 88 our $getBuddyList = BarnOwl::Hook->new; 87 89 our $getQuickstart = BarnOwl::Hook->new; … … 162 164 } 163 165 166 $mainLoop->check_owlconf(); 164 167 $startup->run(0); 165 168 BarnOwl::startup() if *BarnOwl::startup{CODE}; … … 186 189 187 190 BarnOwl::new_msg($m) if *BarnOwl::new_msg{CODE}; 188 }189 190 sub _mainloop_hook {191 $mainLoop->run;192 BarnOwl::mainloop_hook() if *BarnOwl::mainloop_hook{CODE};193 191 } 194 192 -
perl/lib/BarnOwl/Timer.pm
ree183be r8d16e58 21 21 } 22 22 23 sub stop { 24 my $self = shift; 25 if(defined($self->{timer})) { 26 BarnOwl::Internal::remove_timer($self->{timer}); 27 undef $self->{timer}; 28 } 29 } 30 23 31 sub do_callback { 24 32 my $self = shift; … … 28 36 sub DESTROY { 29 37 my $self = shift; 30 if(defined($self->{timer})) { 31 BarnOwl::Internal::remove_timer($self->{timer}); 32 } 38 $self->stop; 33 39 } 34 40 -
perl/modules/Jabber/lib/BarnOwl/Message/Jabber.pm
rc854e74 r8278543 77 77 } elsif ($self->jtype eq 'groupchat') { 78 78 my $room = $self->room; 79 $filter = "jabber-room-$room"; 80 BarnOwl::command(qw[filter], $filter, 81 qw[type ^jabber$ and room], "^\Q$room\E\$"); 79 if ($inst) { 80 my $subject = $self->subject; 81 $filter = "jabber-room-$room-subject-$subject"; 82 BarnOwl::command(qw[filter], $filter, 83 qw[type ^jabber$ and room], "^\Q$room\E\$", 84 qw[and subject], "^\Q$subject\E\$"); 85 } else { 86 $filter = "jabber-room-$room"; 87 BarnOwl::command(qw[filter], $filter, 88 qw[type ^jabber$ and room], "^\Q$room\E\$"); 89 } 82 90 return $filter; 83 91 } elsif ($self->login ne 'none') { -
perl/modules/Jabber/lib/BarnOwl/Module/Jabber.pm
r8789410 raa0a0b5 285 285 { 286 286 summary => "Send a Jabber Message", 287 usage => "jwrite <jid> [-t <thread>] [-s <subject>] [-a <account>] "287 usage => "jwrite <jid> [-t <thread>] [-s <subject>] [-a <account>] [-m <message>]" 288 288 } 289 289 ); … … 308 308 description => "jmuc sends Jabber commands related to MUC.\n\n" 309 309 . "The following commands are available\n\n" 310 . "join <muc> Join a MUC.\n\n" 310 . "join <muc>[/<nick>]\n" 311 . " Join a MUC (with a given nickname, or otherwise your JID).\n\n" 311 312 . "part <muc> Part a MUC.\n" 312 313 . " The MUC is taken from the current message if not supplied.\n\n" … … 377 378 my $cjidStr = $conn->baseJIDExists($jidStr); 378 379 if ($cjidStr) { 379 BarnOwl::error("Already logged in as $cjidStr."); 380 return; 380 die("Already logged in as $cjidStr.\n"); 381 381 } 382 382 } … … 387 387 388 388 if ( !$uid || !$componentname ) { 389 BarnOwl::error("usage: $cmd JID"); 390 return; 389 die("usage: $cmd JID\n"); 391 390 } 392 391 393 392 if ( $conn->jidActive($jidStr) ) { 394 BarnOwl::error("Already logged in as $jidStr."); 395 return; 393 die("Already logged in as $jidStr.\n"); 396 394 } elsif ($conn->jidExists($jidStr)) { 397 395 return $conn->tryReconnect($jidStr, 1); … … 526 524 sub cmd_jlist { 527 525 if ( !( scalar $conn->getJIDs() ) ) { 528 BarnOwl::error("You are not logged in to Jabber."); 529 return; 526 die("You are not logged in to Jabber.\n"); 530 527 } 531 528 BarnOwl::popless_ztext( onGetBuddyList() ); … … 534 531 sub cmd_jwrite { 535 532 if ( !$conn->connected() ) { 536 BarnOwl::error("You are not logged in to Jabber."); 537 return; 533 die("You are not logged in to Jabber.\n"); 538 534 } 539 535 … … 543 539 my $jwrite_thread = ""; 544 540 my $jwrite_subject = ""; 541 my $jwrite_body; 545 542 my ($to, $from); 546 543 my $jwrite_type = "chat"; … … 554 551 'subject=s' => \$jwrite_subject, 555 552 'account=s' => \$from, 556 'id=s' => \$jwrite_sid, 553 'id=s' => \$jwrite_sid, 554 'message=s' => \$jwrite_body, 557 555 ) or die("Usage: jwrite <jid> [-t <thread>] [-s <subject>] [-a <account>]\n"); 558 556 $jwrite_type = 'groupchat' if $gc; 559 557 560 558 if ( scalar @ARGV != 1 ) { 561 BarnOwl::error( 562 "Usage: jwrite <jid> [-t <thread>] [-s <subject>] [-a <account>]"); 563 return; 559 die("Usage: jwrite <jid> [-t <thread>] [-s <subject>] [-a <account>]\n"); 564 560 } 565 561 else { … … 570 566 571 567 unless(scalar @candidates) { 572 die("Unable to resolve JID $to ");568 die("Unable to resolve JID $to\n"); 573 569 } 574 570 … … 577 573 unless(scalar @candidates) { 578 574 if(!$from) { 579 die("You must specify an account with -a ");575 die("You must specify an account with -a\n"); 580 576 } else { 581 die("Unable to resolve account $from ");577 die("Unable to resolve account $from\n"); 582 578 } 583 579 } … … 594 590 type => $jwrite_type 595 591 }; 592 593 if (defined($jwrite_body)) { 594 process_owl_jwrite($jwrite_body); 595 return; 596 } 596 597 597 598 if(scalar @candidates > 1) { … … 631 632 my $func = $jmuc_commands{$cmd}; 632 633 if ( !$func ) { 633 BarnOwl::error("jmuc: Unknown command: $cmd"); 634 return; 634 die("jmuc: Unknown command: $cmd\n"); 635 635 } 636 636 … … 654 654 } 655 655 else { 656 BarnOwl::error('You must specify an account with -a <jid>');656 die("You must specify an account with -a <jid>\n"); 657 657 } 658 658 return $func->( $jid, $muc, @ARGV ); … … 667 667 668 668 $muc = shift @ARGV 669 or die("Usage: jmuc join <muc> [-p <password>] [-a <account>] ");669 or die("Usage: jmuc join <muc> [-p <password>] [-a <account>]\n"); 670 670 671 671 die("Error: Must specify a fully-qualified MUC name (e.g. barnowl\@conference.mit.edu)\n") … … 680 680 MaxChars => 0 681 681 }); 682 $completion_jids{$muc } = 1;682 $completion_jids{$muc->GetJID('base')} = 1; 683 683 return; 684 684 } … … 688 688 689 689 $muc = shift @args if scalar @args; 690 die("Usage: jmuc part [<muc>] [-a <account>] ") unless $muc;690 die("Usage: jmuc part [<muc>] [-a <account>]\n") unless $muc; 691 691 692 692 if($conn->getConnectionFromJID($jid)->MUCLeave(JID => $muc)) { 693 693 queue_admin_msg("$jid has left $muc."); 694 694 } else { 695 die("Error: Not joined to $muc ");695 die("Error: Not joined to $muc\n"); 696 696 } 697 697 } … … 703 703 $muc = shift @args if scalar @args; 704 704 705 die( 'Usage: jmuc invite <jid> [<muc>] [-a <account>]')705 die("Usage: jmuc invite <jid> [<muc>] [-a <account>]\n") 706 706 unless $muc && $invite_jid; 707 707 … … 718 718 my ( $jid, $muc, @args ) = @_; 719 719 $muc = shift @args if scalar @args; 720 die("Usage: jmuc configure [<muc>] ") unless $muc;720 die("Usage: jmuc configure [<muc>]\n") unless $muc; 721 721 my $iq = Net::Jabber::IQ->new(); 722 722 $iq->SetTo($muc); … … 759 759 760 760 $muc = shift @args if scalar @args; 761 die("Usage: jmuc presence [<muc>] ") unless $muc;761 die("Usage: jmuc presence [<muc>]\n") unless $muc; 762 762 763 763 if ($muc eq '-a') { … … 774 774 else { 775 775 my $m = $conn->getConnectionFromJID($jid)->FindMUC(jid => $muc); 776 die("No such muc: $muc ") unless $m;776 die("No such muc: $muc\n") unless $m; 777 777 BarnOwl::popless_ztext(jmuc_presence_single($m)); 778 778 } … … 801 801 my $func = $jroster_commands{$cmd}; 802 802 if ( !$func ) { 803 BarnOwl::error("jroster: Unknown command: $cmd"); 804 return; 803 die("jroster: Unknown command: $cmd\n"); 805 804 } 806 805 … … 825 824 } 826 825 else { 827 BarnOwl::error('You must specify an account with -a <jid>');826 die("You must specify an account with -a <jid>\n"); 828 827 } 829 828 return $func->( $jid, $name, \@groups, $purgeGroups, @ARGV ); … … 849 848 } 850 849 else { 851 BarnOwl::error('You must specify an account with -a <jid>');850 die("You must specify an account with -a <jid>\n"); 852 851 } 853 852 … … 1234 1233 $completion_jids{$room} = 1; 1235 1234 1235 my $muc; 1236 if ($dir eq 'in') { 1237 my $connection = $conn->getConnectionFromSid($props{sid}); 1238 $muc = $connection->FindMUC(jid => $from); 1239 } else { 1240 my $connection = $conn->getConnectionFromJID($props{from}); 1241 $muc = $connection->FindMUC(jid => $to); 1242 } 1243 $props{from} = $muc->GetFullJID($from) || $nick || $room; 1236 1244 $props{sender} = $nick || $room; 1237 1245 $props{recipient} = $room; … … 1331 1339 return $givenJIDStr if ($conn->jidExists($givenJIDStr) ); 1332 1340 return resolveConnectedJID($givenJID->GetJID('base')) if $loose; 1333 die("Invalid account: $givenJIDStr ");1341 die("Invalid account: $givenJIDStr\n"); 1334 1342 } 1335 1343 … … 1384 1392 # Not one of ours. 1385 1393 else { 1386 die("Invalid account: $givenJIDStr ");1394 die("Invalid account: $givenJIDStr\n"); 1387 1395 } 1388 1396 … … 1430 1438 if($from) { 1431 1439 $from_jid = resolveConnectedJID($from, 1); 1432 die("Unable to resolve account $from ") unless $from_jid;1440 die("Unable to resolve account $from\n") unless $from_jid; 1433 1441 $to_jid = resolveDestJID($to, $from_jid); 1434 1442 push @matches, [$from_jid, $to_jid] if $to_jid; -
perlconfig.c
r1b1cd2c r3aa0522 582 582 } 583 583 584 void owl_perlconfig_mainloop(owl_timer *t, void *data)585 {586 dSP;587 if (!owl_perlconfig_is_function("BarnOwl::Hooks::_mainloop_hook"))588 return;589 PUSHMARK(SP) ;590 call_pv("BarnOwl::Hooks::_mainloop_hook", G_DISCARD|G_EVAL);591 if(SvTRUE(ERRSV)) {592 owl_function_error("%s", SvPV_nolen(ERRSV));593 }594 return;595 }596 597 584 void owl_perlconfig_io_dispatch(const owl_io_dispatch *d, void *data) 598 585 { -
popwin.c
r06cc8d9 r0881cdd 28 28 popwin = newwin(pw->lines-2, pw->cols-2, startline+1, startcol+1); 29 29 pw->poppanel = new_panel(popwin); 30 31 meta(popwin,TRUE);32 nodelay(popwin, 1);33 keypad(popwin, TRUE);34 30 35 31 werase(popwin); -
scripts/do-release
r51dbfb5 rc62c755 94 94 NOW=$(date +"%B %d, %Y") 95 95 cat <<EOF 96 * '''$NOW''': BarnOwl $VERS Released. [wiki:Download] it here. or see the [ /browser/ChangeLog?rev=$COMMIT ChangeLog]96 * '''$NOW''': BarnOwl $VERS Released. [wiki:Download] it here. or see the [wiki:release-notes/$VERS Release Notes] or [/browser/ChangeLog?rev=barnowl-$VERS ChangeLog]. 97 97 EOF -
select.c
r2a17b63 rc3031f3 273 273 274 274 sigemptyset(&set); 275 sigaddset(&set, SIGWINCH); 276 sigaddset(&set, SIGALRM); 277 sigaddset(&set, SIGPIPE); 278 sigaddset(&set, SIGTERM); 279 sigaddset(&set, SIGHUP); 275 280 sigaddset(&set, SIGINT); 276 281 sigprocmask(SIG_BLOCK, &set, oldmask); -
tester.c
r4123da1 r3f6555d 16 16 int main(int argc, char **argv, char **env) 17 17 { 18 owl_errqueue_init(owl_global_get_errqueue(&g)); 19 owl_obarray_init(&(g.obarray)); 20 g.context_stack = NULL; 21 owl_global_push_context(&g, OWL_CTX_STARTUP, NULL, NULL); 18 /* initialize a fake ncurses, detached from std{in,out} */ 19 FILE *rnull = fopen("/dev/null", "r"); 20 FILE *wnull = fopen("/dev/null", "w"); 21 newterm("xterm", wnull, rnull); 22 /* initialize global structures */ 23 owl_global_init(&g); 22 24 23 25 numtests = 0; … … 31 33 numfailures += owl_variable_regtest(); 32 34 numfailures += owl_filter_regtest(); 33 numfailures += owl_obarray_regtest();34 35 numfailures += owl_editwin_regtest(); 35 36 if (numfailures) { … … 37 38 } 38 39 printf("1..%d\n", numtests); 40 41 /* probably not necessary, but tear down the screen */ 42 endwin(); 43 fclose(rnull); 44 fclose(wnull); 45 39 46 return(numfailures); 40 47 } … … 293 300 } 294 301 295 296 int owl_obarray_regtest(void) {297 int numfailed = 0;298 const char *p,*p2;299 300 owl_obarray oa;301 owl_obarray_init(&oa);302 303 printf("# BEGIN testing owl_obarray\n");304 305 p = owl_obarray_insert(&oa, "test");306 FAIL_UNLESS("returned string is equal", p && !strcmp(p, "test"));307 p2 = owl_obarray_insert(&oa, "test");308 FAIL_UNLESS("returned string is equal", p2 && !strcmp(p2, "test"));309 FAIL_UNLESS("returned the same string", p2 && p == p2);310 311 p = owl_obarray_insert(&oa, "test2");312 FAIL_UNLESS("returned string is equal", p && !strcmp(p, "test2"));313 p2 = owl_obarray_find(&oa, "test2");314 FAIL_UNLESS("returned the same string", p2 && !strcmp(p2, "test2"));315 316 p = owl_obarray_find(&oa, "nothere");317 FAIL_UNLESS("Didn't find a string that isn't there", p == NULL);318 319 printf("# END testing owl_obarray (%d failures)\n", numfailed);320 321 return numfailed;322 }323 324 302 int owl_editwin_regtest(void) { 325 303 int numfailed = 0; -
variable.c
r4d9e4254 rd544237 110 110 111 111 OWLVAR_ENUM( "loggingdirection" /* %OwlVarStub */, OWL_LOGGING_DIRECTION_BOTH, 112 "specifi ces which kind of messages should be logged",112 "specifies which kind of messages should be logged", 113 113 "Can be one of 'both', 'in', or 'out'. If 'in' is\n" 114 114 "selected, only incoming messages are logged, if 'out'\n" … … 138 138 "location of users in your .anyone file. If a user is present\n" 139 139 "but sent no login message, or a user is not present that sent no\n" 140 "logout message, a pseudo login or logout message wil be created\n",140 "logout message, a pseudo login or logout message will be created\n", 141 141 NULL, owl_variable_pseudologins_set, NULL), 142 142 … … 151 151 152 152 "If non empty, any messages matching the given filter will be logged.\n" 153 "This is a completely separate mechanis im from the other logging\n"153 "This is a completely separate mechanism from the other logging\n" 154 154 "variables like logging, classlogging, loglogins, loggingdirection,\n" 155 155 "etc. If you want this variable to control all logging, make sure\n" … … 198 198 OWLVAR_PATH( "newmsgproc" /* %OwlVarStub:newmsgproc */, NULL, 199 199 "name of a program to run when new messages are present", 200 "The named program will be run when owl rece vies new.\n"200 "The named program will be run when owl receives new\n" 201 201 "messages. It will not be run again until the first\n" 202 202 "instance exits"), … … 213 213 "Called every time you start a zephyrgram without an\n" 214 214 "explicit zsig. The default setting implements the policy\n" 215 "descri pted in the documentation for the 'zsig' variable.\n"),215 "described in the documentation for the 'zsig' variable.\n"), 216 216 217 217 OWLVAR_STRING( "zsig" /* %OwlVarStub */, "", … … 297 297 "number of seconds after AIM login to ignore login messages", 298 298 "This specifies the number of seconds to wait after an\n" 299 "AIM login before allowing the rec ipt of AIM login notifications.\n"299 "AIM login before allowing the receipt of AIM login notifications.\n" 300 300 "By default this is set to 15. If you would like to view login\n" 301 301 "notifications of buddies as soon as you login, set it to 0 instead."), … … 428 428 int owl_variable_pseudologins_set(owl_variable *v, const void *newval) 429 429 { 430 static owl_timer *timer = NULL; 430 431 if (newval) { 431 432 if (*(const int*)newval == 1) { 432 433 owl_function_zephyr_buddy_check(0); 434 if (timer == NULL) { 435 timer = owl_select_add_timer(180, 180, owl_zephyr_buddycheck_timer, NULL, NULL); 436 } 437 } else { 438 if (timer != NULL) { 439 owl_select_remove_timer(timer); 440 timer = NULL; 441 } 433 442 } 434 443 } -
zephyr.c
rf25812b r3687413 1364 1364 #endif 1365 1365 1366 void owl_zephyr_buddycheck_timer(owl_timer *t, void *data) 1367 { 1368 if (owl_global_is_pseudologins(&g)) { 1369 owl_function_debugmsg("Doing zephyr buddy check"); 1370 owl_function_zephyr_buddy_check(1); 1371 } else { 1372 owl_function_debugmsg("Warning: owl_zephyr_buddycheck_timer call pointless; timer should have been disabled"); 1373 } 1374 } 1375 1366 1376 /* 1367 1377 * Process zephyrgrams from libzephyr's queue. To prevent starvation,
Note: See TracChangeset
for help on using the changeset viewer.