Class: Jekyll::Site

Inherits:
Object
  • Object
show all
Defined in:
lib/jekyll/polyglot/patches/jekyll/site.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#active_langObject

Returns the value of attribute active_lang.



5
6
7
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 5

def active_lang
  @active_lang
end

#default_langObject (readonly)

Returns the value of attribute default_lang.



4
5
6
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 4

def default_lang
  @default_lang
end

#exclude_from_localizationObject (readonly)

Returns the value of attribute exclude_from_localization.



4
5
6
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 4

def exclude_from_localization
  @exclude_from_localization
end

#file_langsObject

Returns the value of attribute file_langs.



5
6
7
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 5

def file_langs
  @file_langs
end

#lang_varsObject (readonly)

Returns the value of attribute lang_vars.



4
5
6
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 4

def lang_vars
  @lang_vars
end

#languagesObject (readonly)

Returns the value of attribute languages.



4
5
6
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 4

def languages
  @languages
end

Instance Method Details

#absolute_url_regex(url) ⇒ Object



145
146
147
148
149
150
151
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 145

def absolute_url_regex(url)
  regex = ''
  (@exclude + @languages).each do |x|
    regex += "(?!#{x}\/)"
  end
  %r{href=\"?#{url}#{@baseurl}\/((?:#{regex}[^,'\"\s\/?\.#]+\.?)*(?:\/[^\]\[\)\(\"\'\s]*)?)\"}
end

#coordinate_documents(docs) ⇒ Object

assigns natural permalinks to documents and prioritizes documents with active_lang languages over others



93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 93

def coordinate_documents(docs)
  regex = document_url_regex
  approved = {}
  docs.each do |doc|
    lang = doc.data['lang'] || @default_lang
    url = doc.url.gsub(regex, '/')
    doc.data['permalink'] = url
    next if @file_langs[url] == @active_lang
    next if @file_langs[url] == @default_lang && lang != @active_lang
    approved[url] = doc
    @file_langs[url] = lang
  end
  approved.values
end

#document_url_regexObject

a regex that matches urls or permalinks with i18n prefixes or suffixes matches /en/foo , .en/foo , foo.en/ and other simmilar default urls made by jekyll when parsing documents without explicitly set permalinks



125
126
127
128
129
130
131
132
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 125

def document_url_regex
  regex = ''
  @languages.each do |lang|
    regex += "([\/\.]#{lang}[\/\.])|"
  end
  regex.chomp! '|'
  %r{#{regex}}
end

#fetch_languagesObject



14
15
16
17
18
19
20
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 14

def fetch_languages
  @default_lang = config.fetch('default_lang', 'en')
  @languages = config.fetch('languages', ['en'])
  @keep_files += (@languages - [@default_lang])
  @active_lang = @default_lang
  @lang_vars = config.fetch('lang_vars', [])
end

#prepareObject



7
8
9
10
11
12
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 7

def prepare
  @file_langs = {}
  fetch_languages
  @parallel_localization = config.fetch('parallel_localization', true)
  @exclude_from_localization = config.fetch('exclude_from_localization', [])
end

#processObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 23

def process
  prepare
  all_langs = (@languages + [@default_lang]).uniq
  if @parallel_localization
    pids = {}
    all_langs.each do |lang|
      pids[lang] = fork do
        process_language lang
      end
    end
    Signal.trap('INT') do
      all_langs.each do |lang|
        puts "Killing #{pids[lang]} : #{lang}"
        kill('INT', pids[lang])
      end
    end
    all_langs.each do |lang|
      waitpid pids[lang]
      detach pids[lang]
    end
  else
    all_langs.each do |lang|
      process_language lang
    end
  end
end

#process_active_languageObject



80
81
82
83
84
85
86
87
88
89
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 80

def process_active_language
  old_dest = @dest
  old_exclude = @exclude
  @file_langs = {}
  @dest = @dest + '/' + @active_lang
  @exclude += @exclude_from_localization
  process_orig
  @dest = old_dest
  @exclude = old_exclude
end

#process_default_languageObject



74
75
76
77
78
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 74

def process_default_language
  old_include = @include
  process_orig
  @include = old_include
end

#process_documents(docs) ⇒ Object

performs any necesarry operations on the documents before rendering them



109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 109

def process_documents(docs)
  return if @active_lang == @default_lang
  url = config.fetch('url', false)
  rel_regex = relative_url_regex
  abs_regex = absolute_url_regex(url)
  docs.each do |doc|
    relativize_urls(doc, rel_regex)
    if url
    then relativize_absolute_urls(doc, abs_regex, url)
    end
  end
end

#process_language(lang) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 62

def process_language(lang)
  @active_lang = lang
  config['active_lang'] = @active_lang
  lang_vars.each do |v|
    config[v] = @active_lang
  end
  if @active_lang == @default_lang
  then process_default_language
  else process_active_language
  end
end

#process_origObject



22
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 22

alias_method :process_orig, :process

#relative_url_regexObject

a regex that matches relative urls in a html document matches href=“baseurl/foo/bar-baz” and others like it avoids matching excluded files



137
138
139
140
141
142
143
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 137

def relative_url_regex
  regex = ''
  (@exclude + @languages).each do |x|
    regex += "(?!#{x}\/)"
  end
  %r{href=\"?#{@baseurl}\/((?:#{regex}[^,'\"\s\/?\.#]+\.?)*(?:\/[^\]\[\)\(\"\'\s]*)?)\"}
end

#relativize_absolute_urls(doc, regex, url) ⇒ Object



157
158
159
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 157

def relativize_absolute_urls(doc, regex, url)
  doc.output.gsub!(regex, "href=\"#{url}#{@baseurl}/#{@active_lang}/" + '\1"')
end

#relativize_urls(doc, regex) ⇒ Object



153
154
155
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 153

def relativize_urls(doc, regex)
  doc.output.gsub!(regex, "href=\"#{@baseurl}/#{@active_lang}/" + '\1"')
end

#site_payloadObject



51
52
53
54
55
56
57
58
59
60
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 51

def site_payload
  payload = site_payload_orig
  payload['site']['default_lang'] = default_lang
  payload['site']['languages'] = languages
  payload['site']['active_lang'] = active_lang
  lang_vars.each do |v|
    payload['site'][v] = active_lang
  end
  payload
end

#site_payload_origObject



50
# File 'lib/jekyll/polyglot/patches/jekyll/site.rb', line 50

alias_method :site_payload_orig, :site_payload