| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- module Docs
- class Kotlin < UrlScraper
- self.type = 'kotlin'
- self.base_url = 'https://kotlinlang.org/'
- self.root_path = 'api/latest/jvm/stdlib/index.html'
- self.links = {
- home: 'https://kotlinlang.org/',
- code: 'https://github.com/JetBrains/kotlin'
- }
- html_filters.push 'kotlin/entries', 'kotlin/clean_html'
- options[:container] = 'article'
- options[:only_patterns] = [/\Adocs\//, /\Aapi\/latest\/jvm\/stdlib\//]
- options[:skip_patterns] = [/stdlib\/org\./]
- options[:skip] = %w(
- api/latest/jvm/stdlib/alltypes/index.html
- docs/
- docs/videos.html
- docs/events.html
- docs/resources.html
- docs/reference/grammar.html)
- options[:fix_urls] = ->(url) do
- url.sub! %r{/docs/reference/}, '/docs/'
- url
- end
- options[:attribution] = <<-HTML
- © 2010–2023 JetBrains s.r.o. and Kotlin Programming Language contributors<br>
- Licensed under the Apache License, Version 2.0.
- HTML
- version '1.9' do
- self.release = '1.9.0'
- self.headers = { 'User-Agent' => 'devdocs.io' , 'Cookie' => 'x-ab-test-spring-boot-learning-path=0; userToken=r33dgpe8x3q5vswekg16a' }
- end
- version '1.8' do
- self.release = '1.8.0'
- self.headers = { 'User-Agent' => 'devdocs.io' , 'Cookie' => 'x-ab-test-spring-boot-learning-path=0; userToken=r33dgpe8x3q5vswekg16a' }
- end
- version '1.7' do
- self.release = '1.7.20'
- end
- version '1.6' do
- self.release = '1.6.20'
- end
- version '1.4' do
- self.release = '1.4.10'
- end
- def get_latest_version(opts)
- get_latest_github_release('JetBrains', 'kotlin', opts)
- end
- private
- def process_response?(response)
- return false unless super
- response.body !~ /http-equiv="refresh"/i
- end
- def parse(response)
- response.body.gsub! %r{<div\ class="code-block" data-lang="([^"]+)"[^>]*>([\W\w]+?)</div>}, '<pre class="code" data-language="\1">\2</pre>'
- super
- end
- end
- end
|