Hello,
could you give me please an hint about the corret coding of the "&" sign in the url function? I want to use the url function in a scraper, no problem I thougt at all... Everything works fine, but if a "&" is in the URL which I want to fetch/scrape, the "&" is somehow escaped, resulting in an error.
System I use for testing is a Win7 x64 in VMWare with XBMC Camelot 9.11 installed.
Following four variants do not work:
In the log file, the error is always:
=> XBMC (or better I ?) has a problem with the handling of "&" in the URL function. How to do it right?
Regards,
Eisbahn
could you give me please an hint about the corret coding of the "&" sign in the url function? I want to use the url function in a scraper, no problem I thougt at all... Everything works fine, but if a "&" is in the URL which I want to fetch/scrape, the "&" is somehow escaped, resulting in an error.
System I use for testing is a Win7 x64 in VMWare with XBMC Camelot 9.11 installed.
Following four variants do not work:
Code:
<RegExp input="$$1" output="<url function="GetInfos">http://www.xxxx.de/search.php?Sea=mytitle&Kat=dvd&page=results</url>" dest="5">
Code:
<RegExp input="$$1" output="<url function="GetInfos">http://www.xxxx.de/search.php?Sea=mytitle&Kat=dvd&page=results</url>" dest="5">
Code:
<RegExp input="$$1" output="<url function="GetInfos">http://www.xxxx.de/search.php?Sea=mytitle&&Kat=dvd&&page=results</url>" dest="5">
Code:
<RegExp input="$$1" output="<url function="GetInfos">http://www.xxxx.de/search.php?Sea=mytitle%26Kat=dvd%26page=results</url>" dest="5">
In the log file, the error is always:
Code:
CIMDB::InternalGetDetails: Unable to parse web site [http://www.xxxx.de/search.php?Sea=mytitle]
Regards,
Eisbahn