-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2201 from jessevanherk/godot_4.2
Update Godot docs to include v4.2 and fix older version scraping
- Loading branch information
Showing
6 changed files
with
126 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module Docs | ||
class Godot | ||
class CleanHtmlV3Filter < Filter | ||
def call | ||
if root_page? | ||
at_css('h1').content = 'Godot Engine' | ||
at_css('.admonition.caution').remove | ||
end | ||
|
||
css('ul[id].simple li:first-child:last-child').each do |node| | ||
heading = Nokogiri::XML::Node.new 'h3', doc.document | ||
heading['id'] = node.parent['id'] | ||
heading.children = node.children | ||
node.parent.before(heading).remove | ||
end | ||
|
||
css('h3 strong').each do |node| | ||
node.before(node.children).remove | ||
end | ||
|
||
css('a.reference').remove_attr('class') | ||
|
||
doc | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module Docs | ||
class Godot | ||
class EntriesV3Filter < Docs::EntriesFilter | ||
def get_name | ||
name = at_css('h1').content | ||
name.remove! "\u{00B6}" # Remove the pilcrow | ||
name | ||
end | ||
|
||
def get_type | ||
if slug.start_with?('getting_started') | ||
# Getting started sections are different even between different minor | ||
# versions from v3 so we're programmatically generating them instead. | ||
"Getting started: " + slug.split('/')[1].tr_s('_', ' ').capitalize | ||
else | ||
name | ||
end | ||
end | ||
|
||
def additional_entries | ||
return [] unless slug.start_with?('classes') | ||
|
||
css('.simple[id]').each_with_object [] do |node, entries| | ||
name = node.at_css('strong').content | ||
next if name == self.name | ||
name.prepend "#{self.name}." | ||
name << '()' | ||
entries << [name, node['id']] unless entries.any? { |entry| entry[0] == name } | ||
end | ||
end | ||
|
||
def include_default_entry? | ||
return false if subpath.start_with?('getting_started') && subpath.end_with?('index.html') | ||
return false if subpath == 'classes/index.html' | ||
true | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters