File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,17 @@ class EntriesFilter < Docs::EntriesFilter
4
4
5
5
PKG_INDEX_ENTRIES = Hash . new [ ]
6
6
7
- def initialize ( *)
8
- super
9
-
7
+ def call
10
8
if slug_parts [ -1 ] == '00Index'
9
+ dir = File . dirname ( result [ :subpath ] )
11
10
css ( 'tr a' ) . each do |link |
12
11
PKG_INDEX_ENTRIES [ link [ 'href' ] ] += [ link . text ]
12
+ next if link [ 'href' ] == link . text
13
+ context [ :replace_paths ] [ File . join ( dir , "#{ link . text } .html" ) ] = File . join ( dir , "#{ link [ 'href' ] } .html" )
13
14
end
14
15
end
16
+
17
+ super
15
18
end
16
19
17
20
def slug_parts
Original file line number Diff line number Diff line change @@ -29,14 +29,12 @@ class R < FileScraper
29
29
/\. pdf$/
30
30
]
31
31
32
- ## We want to fix links like so − but only if the targets don’t exist,
33
- ## as these target packages or keywords that do not have their own file,
34
- ## but exist on another page, and we properly record it.
35
- #
36
- #options[:fix_urls] = ->(url) do
37
- # url.sub!(%r'/library/([^/]+)/doc/index.html$') { |m| "/r-#{$1.parameterize.downcase}/" }
38
- # url.sub!(%r'/library/([^/]+)/html/([^/]+).html$') { |m| "/library/#{$1.parameterize.downcase}/html/#{$2.parameterize.downcase}" }
39
- #end
32
+ options [ :replace_paths ] = {
33
+ ## We want to fix links like so − but only if the targets don’t exist:
34
+ # 'library/MASS/html/cov.mve.html' => 'library/MASS/html/cov.rob.html'
35
+ ## Paths for target packages or keywords that do not have their own file
36
+ ## are generated in the entries filter from 00Index.html files
37
+ }
40
38
41
39
options [ :skip ] = %w(
42
40
doc/html/packages-head-utf8.html
You can’t perform that action at this time.
0 commit comments