search for: url_root

Displaying 3 results from an estimated 3 matches for "url_root".

Did you mean: _rb_root
2011 Aug 29
1
reading tables from multiple HTML pages
...ses out and I get the error message below: Error in htmlParse(url) : error in creating parser for http://www.szrd.gov.cn/viewcommondbfc.do?id=728 How might be best to go about keeping the loop running so I can parse the rest? **************************************************** library(XML) url_root<-"http://www.szrd.gov.cn/viewcommondbfc.do?id=" for(i in 700:750){ url = paste(url_root, i, sep="") doc = htmlParse(url) tableNodes = getNodeSet(doc, "//table") tbl = readHTMLTable(tableNodes[[3]]) } **************************************************** Steve...
2005 Dec 14
3
Multiple rails apps to appear as one app
Hello everyone, I have a problem concerning two rails apps, which I can''t seem to solve. I already tried the Ruby On Rails IRC channel. I also started a thread at the Site5 forums: http://forums.site5.com/showthread.php?t=6682 As is described in http://wiki.rubyonrails.com/rails/pages/HowtoDeployMoreThanOneRailsAppOnOneMachine , I would like two separate Rails applications to
2015 Oct 09
5
lpxelinux.0 does not set the port number in the http Host: header
...tice that the Host: header does not contain the port that was used to make the request. Here's my scenario. I have a python Flask app that dynamically generates the PXE menu for kickstarts. When I request a URL the server responds with a file containing more URLs based on Flask's request.url_root. My web server is running on a non-standard port, 5550. When my generated menu file came back I noticed that all of the included URLs were lacking the port. So instead of seeing the following: LABEL rhelresc-manual MENU LABEL Red Hat Enterprise Linux 6 Rescue (HTTP - Manual) KERNEL ht...