Rename DejureIntegrator to DejureAutolinker.

Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
Thomas Hochstein 2017-05-25 12:42:31 +02:00
parent 0d085fd829
commit cd6e7d78ad

View file

@ -36,7 +36,7 @@ require 'net/http'
require 'digest' require 'digest'
module Nanoc::Filters module Nanoc::Filters
class DejureIntegrator < Nanoc::Filter class DejureAutolinker < Nanoc::Filter
identifier :dejure identifier :dejure
type :text type :text
@ -52,7 +52,7 @@ module Nanoc::Filters
# return output if it's already cached # return output if it's already cached
if !(output = cache_read(input.strip)) if !(output = cache_read(input.strip))
# purge cache if a purge is due # purge cache if a purge is due
puts "DejureIntegrator cache purged!\n" if cache_purge puts "DejureAutolinker cache purged!\n" if cache_purge
# call out to dejure.org # call out to dejure.org
output = call_dejure(input.strip, set_params(params)) output = call_dejure(input.strip, set_params(params))
end end
@ -81,7 +81,7 @@ module Nanoc::Filters
http = Net::HTTP.new(uri.host, uri.port) http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Post.new(uri.request_uri) request = Net::HTTP::Post.new(uri.request_uri)
request['User-Agent'] = params[:Anbieterkennung] + ' (DejureIntegrator for nanoc ruby-' + params[:version] + ')' request['User-Agent'] = params[:Anbieterkennung] + ' (DejureAutolinker for nanoc ruby-' + params[:version] + ')'
request['Content-Type'] = 'application/x-www-form-urlencoded' request['Content-Type'] = 'application/x-www-form-urlencoded'
formdata = params formdata = params
@ -92,7 +92,7 @@ module Nanoc::Filters
if (response.code != '200') || response.body.nil? || (input.length > response.body.length) if (response.code != '200') || response.body.nil? || (input.length > response.body.length)
# HTTP error, empty body or response body smaller than original text # HTTP error, empty body or response body smaller than original text
printf("DejureIntegrator HTTP error: %s\n", response.code) printf("DejureAutolinker HTTP error: %s\n", response.code)
return input return input
else else
output = response.body.force_encoding('UTF-8').strip output = response.body.force_encoding('UTF-8').strip
@ -157,7 +157,7 @@ module Nanoc::Filters
return output return output
else else
# texts don't match # texts don't match
puts "DejureIntegrator integrity error!\n" puts "DejureAutolinker integrity error!\n"
return input return input
end end
end end