123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- BEGIN {
- interactive = 0;
- }
- /<tr>/ {
- record = 1; row = ""; save = 0;
- }
- {
- if (record==1) row = row $0;
- }
- /playlist.pls/ {
- save = 1;
- }
- /<\/tr>/ {
- if (save==1)
- {
- hit = 1;
- nh = split(hints, hint);
- i = 1;
- while (i<=nh)
- {
- gsub ("_", " ", hint[i]);
- if (hint[i]=="not" && i < nh)
- {
- gsub("_", " ", hint[i+1]);
- if (match(tolower(row), tolower(hint[i+1])))
- {
- hit = 0;
- break;
- }
- else
- i += 2;
- }
- else
- {
- if (mix==0 && !match(tolower(row), tolower(hint[i])))
- {
- hit = 0;
- break;
- }
- else
- i++;
- }
- }
- if (hit==1)
- {
- if (interactive==1)
- {
- if (match(row, \
- /<a id=\"listlinks\" target=\"_scurl\" href=\"[^\"]*\">.*?<\/a>/) > 0)
- {
- desc = substr(row, RSTART, RLENGTH);
- sub(/<a id=\"listlinks\" target=\"_scurl\" href=\"[^\"]*\">/, "", desc);
- gsub("</a>", "", desc);
- gsub("<[^>]*>", "", desc);
- if (match(row, /shoutcast-playlist.pls\?rn=[0-9]+&file=filename.pls/) > 0)
- {
- a = substr(row, RSTART, RLENGTH);
- printf("# %s\n", desc);
- printf "http://www.shoutcast.com/sbin/%s\n", a;
- }
- }
- }
- else
- {
- if (match(row, /shoutcast-playlist.pls\?rn=[0-9]+&file=filename.pls/) > 0)
- {
- a = substr(row, RSTART, RLENGTH);
- printf "http://www.shoutcast.com/sbin/%s\n", a;
- }
- }
- }
- }
- save = 0;
- record = 0;
- }
|