Changeset 4b53c65
- Timestamp:
- 2011-12-19T13:39:10Z (13 years ago)
- Branches:
- master
- Children:
- f9789d4
- Parents:
- 36533bf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r36533bf r4b53c65 27 27 subdirobjs = $(foreach dir,$(subdirs),$(dir)/$(dir).o) 28 28 29 all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) systemd 29 all: $(OUTFILE) $(OTR_PI) $(SKYPE_PI) doc systemd 30 ifdef SKYPE_PI 31 $(MAKE) -C protocols/skype doc 32 endif 33 34 doc: 30 35 $(MAKE) -C doc 31 ifdef SKYPE_PI32 $(MAKE) -C protocols/skype doc33 endif34 36 35 37 uninstall: uninstall-bin uninstall-doc … … 43 45 .PHONY: install install-bin install-etc install-doc install-plugins install-systemd \ 44 46 uninstall uninstall-bin uninstall-etc uninstall-doc \ 45 all clean distclean tar $(subdirs) 47 all clean distclean tar $(subdirs) doc 46 48 47 49 Makefile.settings: … … 189 191 @echo Hello World 190 192 193 # Check if we can load the helpfile. (This fails if some article is >1KB.) 194 # If print returns a NULL pointer, the file is unusable. 195 testhelp: doc 196 gdb --eval-command='b main' --eval-command='r' \ 197 --eval-command='print help_init(&global->helpfile, "doc/user-guide/help.txt")' \ 198 $(OUTFILE) < /dev/null 199 191 200 -include .depend/*.d 192 201 # DO NOT DELETE -
doc/user-guide/commands.xml
r36533bf r4b53c65 1126 1126 <description> 1127 1127 <para> 1128 This enables OAuth authentication for a ccounts that support it; right now Twitter and Google Talk (if you have 2-factor authentication enabled on your account)support it.1129 </para> 1130 1131 <para> 1132 With OAuth enabled, you shouldn't tell BitlBee your Twitterpassword. Just add your account with a bogus password and type <emphasis>account on</emphasis>. BitlBee will then give you a URL to authenticate with the service. If this succeeds, you will get a PIN code which you can give back to BitlBee to finish the process.1128 This enables OAuth authentication for an IM account; right now the Twitter (working for Twitter only) and Jabber (for Google Talk, Facebook and MSN Messenger) module support it. 1129 </para> 1130 1131 <para> 1132 With OAuth enabled, you shouldn't tell BitlBee your account password. Just add your account with a bogus password and type <emphasis>account on</emphasis>. BitlBee will then give you a URL to authenticate with the service. If this succeeds, you will get a PIN code which you can give back to BitlBee to finish the process. 1133 1133 </para> 1134 1134
Note: See TracChangeset
for help on using the changeset viewer.