mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
Handle redirections in _config.yml
This commit is contained in:
parent
14e25c5a1f
commit
58ef9c6c56
28 changed files with 152 additions and 244 deletions
|
@ -2,9 +2,6 @@
|
|||
#_templates. The final file name of each page is defined in
|
||||
#the url section of each translations in _translations.
|
||||
|
||||
#If a page is defined in _redirects, this plugin will
|
||||
#generate a redirection instead of using the template.
|
||||
|
||||
require 'yaml'
|
||||
require 'cgi'
|
||||
|
||||
|
@ -21,21 +18,6 @@ module Jekyll
|
|||
self.data['lang'] = lang
|
||||
end
|
||||
end
|
||||
|
||||
class PageRedirect < Page
|
||||
def initialize(site, base, lang, srcdir, src, dstdir, dst, red)
|
||||
@site = site
|
||||
@base = base
|
||||
@dir = '/'+dstdir
|
||||
@name = dst
|
||||
self.process(dst)
|
||||
self.read_yaml(File.join(base, srcdir), src)
|
||||
self.data['lang'] = lang
|
||||
self.data['redirect'] = red
|
||||
self.data['layout'] = 'redirect'
|
||||
end
|
||||
end
|
||||
|
||||
class TranslatePageGenerator < Generator
|
||||
def generate(site)
|
||||
#load translations files
|
||||
|
@ -45,19 +27,14 @@ module Jekyll
|
|||
lang = file.split('.')[0]
|
||||
locs[lang] = YAML.load_file("_translations/"+file)[lang]
|
||||
end
|
||||
#Load redirections files
|
||||
redirects = {}
|
||||
Dir.foreach('_redirects') do |file|
|
||||
next if file == '.' or file == '..'
|
||||
id = file.split('.')[0]
|
||||
redirects[id] = YAML.load_file("_redirects/" + file)
|
||||
end
|
||||
#Generate each translated page based on templates
|
||||
if !File.directory?(site.dest)
|
||||
Dir.mkdir(site.dest)
|
||||
end
|
||||
locs.each do |lang,value|
|
||||
Dir.foreach('_templates') do |file|
|
||||
next if file == '.' or file == '..'
|
||||
id = file.split('.')[0]
|
||||
next if redirects.has_key?(id) and ( !redirects[id].has_key?('except') or !redirects[id]['except'].has_key?(lang) )
|
||||
dst = locs[lang]['url'][id]
|
||||
next if dst.nil? or dst == ''
|
||||
src = file
|
||||
|
@ -65,23 +42,6 @@ module Jekyll
|
|||
site.pages << TranslatePage.new(site, site.source, lang, '_templates', src, lang, dst)
|
||||
end
|
||||
site.pages << TranslatePage.new(site, site.source, lang, '_templates', 'index.html', lang, 'index.html')
|
||||
#Generate each redirection page based on _redirects.yml
|
||||
if !File.directory?(site.dest)
|
||||
Dir.mkdir(site.dest)
|
||||
end
|
||||
redirects.each do |id,redirect|
|
||||
next if redirect.has_key?('except') and redirect['except'].has_key?(lang)
|
||||
src = redirect['dst']
|
||||
src = src + '.html'
|
||||
dst = locs[lang]['url'][id]
|
||||
next if dst.nil? or dst == ''
|
||||
dst = dst + '.html'
|
||||
red = redirect['dst']
|
||||
red = locs[lang]['url'][red]
|
||||
next if red.nil? or red == ''
|
||||
red = '/' + lang + '/' + CGI::escape(red)
|
||||
site.pages << PageRedirect.new(site, site.source, lang, '_templates', src, lang, dst, red)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue