@@ 166,10 166,13 @@ func run_filter(filter string, url *URL, config *Config, handler Handler) (bool,
func interpolate(str []string, ctx map[byte]string) ([]string, error) {
added_url := false
+ log(LOG_DEBUG, "Starting variable interpolation in the cmdline\n")
+ log(LOG_DEBUG, "str: %s; ctx: %v\n", str, ctx)
for idx, _ := range str {
var new_str string
// FIXME, this is some ugly parsing and stuff, but it works™
+ // It does in fact, not work
outer:
for i := 0; i < len(str[idx]); i++ {
c := str[idx][i]