Changeset 4f15e8e
- Timestamp:
- Dec 12, 2008, 1:27:39 AM (16 years ago)
- Branches:
- master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 3048f1f
- Parents:
- 8e5935d
- git-author:
- Anders Kaseorg <andersk@mit.edu> (12/07/08 00:46:16)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (12/12/08 01:27:39)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/owlconf.erik
r5d9c664 r4f15e8e 147 147 owl::command("set -q rxping on"); 148 148 owl::command("set -q typewinsize 5"); 149 if ($ENV{"DISPLAY"} eq ":0.0") {150 owl::command("set -q webbrowser galeon");151 }152 149 owl::command("filter me recipient %me% or ( sender %me% and class message and instance personal ) or class mail or type aim"); 153 150 owl::command("filter owl instance ^owl.*"); -
examples/owlconf.simple
r2b14303 r4f15e8e 93 93 # owl::command('set -q view_home all'); 94 94 95 96 ## Which webbrowser to use to launch URLs with the 'w' key.97 # owl::command('set -q webbrowser netscape');98 # owl::command('set -q webbrowser galeon');99 # owl::command('set -q webbrowser none');100 95 101 96 ## Default message to send when zaway is on (toggle with 'A') -
variable.c
r451db9e r4f15e8e 351 351 " the cursor will be near the center.\n", 352 352 "normal,top,neartop,center,paged,pagedcenter" ), 353 354 OWLVAR_ENUM( "webbrowser" /* %OwlVarStub */, OWL_WEBBROWSER_NETSCAPE,355 "web browser to use to launch URLs",356 "When the 'w' key is pressed, this browser is used\n"357 "to display the requested URL.\n",358 "none,netscape,galeon,opera" ),359 353 360 354 … … 1056 1050 FAIL_UNLESS("get int 7", 9==owl_variable_get_int(&vd,"typewinsize")); 1057 1051 1058 FAIL_UNLESS("get enum", OWL_WEBBROWSER_NETSCAPE==owl_variable_get_int(&vd,"webbrowser"));1059 FAIL_UNLESS("get enum as string 1", 0==owl_variable_get_tostring(&vd,"webbrowser", buf, 1024));1060 FAIL_UNLESS("get enum as string 2", 0==strcmp(buf,"netscape"));1061 FAIL_UNLESS("set enum 1", 0==owl_variable_set_int(&vd,"webbrowser",OWL_WEBBROWSER_GALEON));1062 FAIL_UNLESS("get enum 2", OWL_WEBBROWSER_GALEON==owl_variable_get_int(&vd,"webbrowser"));1063 FAIL_UNLESS("set enum 1b", -1==owl_variable_set_int(&vd,"webbrowser",-3));1064 FAIL_UNLESS("set enum 1b", -1==owl_variable_set_int(&vd,"webbrowser",209));1065 FAIL_UNLESS("get enum 2b", OWL_WEBBROWSER_GALEON==owl_variable_get_int(&vd,"webbrowser"));1066 FAIL_UNLESS("set enum 3", 0==owl_variable_set_fromstring(&vd,"webbrowser","none",0,0));1067 FAIL_UNLESS("get enum 4", OWL_WEBBROWSER_NONE==owl_variable_get_int(&vd,"webbrowser"));1068 FAIL_UNLESS("set enum 5", 0==owl_variable_set_fromstring(&vd,"webbrowser","netscape",0,0));1069 FAIL_UNLESS("get enum 6", OWL_WEBBROWSER_NETSCAPE==owl_variable_get_int(&vd,"webbrowser"));1070 FAIL_UNLESS("set enum 7", -1==owl_variable_set_fromstring(&vd,"webbrowser","xxx",0,0));1071 FAIL_UNLESS("set enum 8", -1==owl_variable_set_fromstring(&vd,"webbrowser","",0,0));1072 FAIL_UNLESS("set enum 9", -1==owl_variable_set_fromstring(&vd,"webbrowser","netscapey",0,0));1073 FAIL_UNLESS("get enum 10", OWL_WEBBROWSER_NETSCAPE==owl_variable_get_int(&vd,"webbrowser"));1074 1075 1052 owl_variable_dict_newvar_string(&vd, "stringvar", "", "", "testval"); 1076 1053 FAIL_UNLESS("get new string var", NULL != (v = owl_variable_get(&vd, "stringvar", OWL_VARIABLE_STRING)));
Note: See TracChangeset
for help on using the changeset viewer.