Bug #11924 ยป 0001-Fix-11924.patch
lib/rdoc/generator/template/darkfish/css/fonts.css | ||
---|---|---|
font-weight: 400;
|
||
src: local("Source Code Pro"),
|
||
local("SourceCodePro-Regular"),
|
||
url("fonts/SourceCodePro-Regular.ttf") format("truetype");
|
||
url("../fonts/SourceCodePro-Regular.ttf") format("truetype");
|
||
}
|
||
@font-face {
|
||
... | ... | |
font-weight: 700;
|
||
src: local("Source Code Pro Bold"),
|
||
local("SourceCodePro-Bold"),
|
||
url("fonts/SourceCodePro-Bold.ttf") format("truetype");
|
||
url("../fonts/SourceCodePro-Bold.ttf") format("truetype");
|
||
}
|
||
/*
|
||
... | ... | |
font-weight: 300;
|
||
src: local("Lato Light"),
|
||
local("Lato-Light"),
|
||
url("fonts/Lato-Light.ttf") format("truetype");
|
||
url("../fonts/Lato-Light.ttf") format("truetype");
|
||
}
|
||
@font-face {
|
||
... | ... | |
font-weight: 300;
|
||
src: local("Lato Light Italic"),
|
||
local("Lato-LightItalic"),
|
||
url("fonts/Lato-LightItalic.ttf") format("truetype");
|
||
url("../fonts/Lato-LightItalic.ttf") format("truetype");
|
||
}
|
||
@font-face {
|
||
... | ... | |
font-weight: 700;
|
||
src: local("Lato Regular"),
|
||
local("Lato-Regular"),
|
||
url("fonts/Lato-Regular.ttf") format("truetype");
|
||
url("../fonts/Lato-Regular.ttf") format("truetype");
|
||
}
|
||
@font-face {
|
||
... | ... | |
font-weight: 700;
|
||
src: local("Lato Italic"),
|
||
local("Lato-Italic"),
|
||
url("fonts/Lato-RegularItalic.ttf") format("truetype");
|
||
url("../fonts/Lato-RegularItalic.ttf") format("truetype");
|
||
}
|
||
/*
|
lib/rdoc/servlet.rb | ||
---|---|---|
case req.path
|
||
when '/' then
|
||
root req, res
|
||
when '/rdoc.css', '/js/darkfish.js', '/js/jquery.js', '/js/search.js',
|
||
%r%^/images/% then
|
||
when '/css/fonts.css', '/css/rdoc.css',
|
||
'/js/darkfish.js', '/js/jquery.js', '/js/search.js',
|
||
%r%^/fonts/%, %r%^/images/% then
|
||
asset :darkfish, req, res
|
||
when '/js/navigation.js', '/js/searcher.js' then
|
||
asset :json_index, req, res
|