소스 검색

Bugfix scopes

tags/v0.4.5
Adrian Short 6 년 전
부모
커밋
b9adc22816
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +4
    -4
      lib/uk_planning_scraper/authority.rb

+ 4
- 4
lib/uk_planning_scraper/authority.rb 파일 보기

@@ -39,10 +39,10 @@ module UKPlanningScraper
end
# Select which scraper to use based on the URL
if authority.url.match(/search\.do\?action=advanced/i)
apps = self.scrape_idox(authority.url, params, options)
elsif authority.url.match(/generalsearch\.aspx/i)
apps = self.scrape_northgate(authority.url, params, options)
if @url.match(/search\.do\?action=advanced/i)
apps = UKPlanningScraper.scrape_idox(@url, params, options)
elsif @url.match(/generalsearch\.aspx/i)
apps = UKPlanningScraper.scrape_northgate(@url, params, options)
else
# Not supported
raise SystemNotSupportedError.new("Planning system not supported for #{@name} at URL: #{@url}")


불러오는 중...
취소
저장