浏览代码

Update MariaDB documentation (10.6.4)

Enoc 4 年之前
父节点
当前提交
ceb73a1776
共有 1 个文件被更改,包括 5 次插入4 次删除
  1. 5 4
      lib/docs/scrapers/mariadb.rb

+ 5 - 4
lib/docs/scrapers/mariadb.rb

@@ -2,9 +2,9 @@ module Docs
   class Mariadb < UrlScraper
   class Mariadb < UrlScraper
     self.name = 'MariaDB'
     self.name = 'MariaDB'
     self.type = 'mariadb'
     self.type = 'mariadb'
-    self.release = '10.4.8'
+    self.release = '10.6.4'
     self.base_url = 'https://mariadb.com/kb/en/'
     self.base_url = 'https://mariadb.com/kb/en/'
-    self.root_path = 'library/documentation/'
+    self.root_path = 'documentation/'
     self.links = {
     self.links = {
       home: 'https://mariadb.com/',
       home: 'https://mariadb.com/',
       code: 'https://github.com/MariaDB/server'
       code: 'https://github.com/MariaDB/server'
@@ -24,13 +24,14 @@ module Docs
     ]
     ]
 
 
     options[:attribution] = <<-HTML
     options[:attribution] = <<-HTML
-      &copy; 2019 MariaDB<br>
+      &copy; 2021 MariaDB<br>
       Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
       Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
     HTML
     HTML
 
 
     def get_latest_version(opts)
     def get_latest_version(opts)
       doc = fetch_doc('https://mariadb.com/downloads/', opts)
       doc = fetch_doc('https://mariadb.com/downloads/', opts)
-      doc.at_css('[data-version-id="mariadb_server-versions"] option').content.split('-')[0]
+      doc.at_css('#version-select-community_server > option').content.split('-')[0]
     end
     end
+
   end
   end
 end
 end