comparison config.feeds.example @ 662:bb6aea76cdb4

feeds: Fix binds to actually work.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 20 Feb 2021 17:35:07 +0200
parents 1d39db72e190
children 8bde8f798188
comparison
equal deleted inserted replaced
661:721c8cef5039 662:bb6aea76cdb4
31 31
32 32
33 # Initialization proc called only by feeds.tcl 33 # Initialization proc called only by feeds.tcl
34 proc feeds_init { } { 34 proc feeds_init { } {
35 # Bind commands 35 # Bind commands
36 bind pubm - !feed* feeds_cmd_pubm 36 bind pub - !feed feeds_cmd_pub
37 bind pub - !feeds feeds_cmd_pub
37 bind pub - !last feeds_cmd_pub_last 38 bind pub - !last feeds_cmd_pub_last
38 bind pubm - !lates* feeds_cmd_pubm_last 39 bind pub - !latest feeds_cmd_pub_last
39 40
40 bind msgm - !feed* feeds_cmd_msgm 41 bind msg - !feed feeds_cmd_msg
42 bind msg - !feeds feeds_cmd_msg
41 bind msg - !last feeds_cmd_msg_last 43 bind msg - !last feeds_cmd_msg_last
42 bind msgm - !lates* feeds_cmd_msgm_last 44 bind msg - !latest feeds_cmd_msg_last
43 } 45 }
44 46
45 47
46 # Proc for fetching the feeds data, called by fetch_feeds.tcl 48 # Proc for fetching the feeds data, called by fetch_feeds.tcl
47 proc feeds_fetch { } { 49 proc feeds_fetch { } {