home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8" ?>
- <root>
- <bot name="National Geographic Slideshow">
- <![CDATA[
-
- var exist=false;
- var re = new RegExp("<a href=\"/pod/pictures/sm_wallpaper/([^\"]+)\">","g");
-
- var text=slideshow.DownloadText("http://lava.nationalgeographic.com/pod/index.html");
- var lines=text.split("\n");
- for(var i=0;i<lines.length;++i)
- {
- var line=lines[i];
- var arr = re.exec(line);
- if (arr!=null)
- {
- slideshow.AddImage("http://lava.nationalgeographic.com/pod/pictures/sm_wallpaper/"+arr[1],"http://lava.nationalgeographic.com/pod/index.html","");
- exist=true;
- }
- }
-
- if (!exist) {
- slideshow.log("Cannot find links in National Geographic Slideshow");
- }
-
- ]]>
- </bot>
- </root>