aboutsummaryrefslogtreecommitdiffstats
path: root/library/font_awesome/src/_plugins/site.rb
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2018-02-26 18:19:08 -0500
committerAndrew Manning <tamanning@zoho.com>2018-02-26 19:48:15 -0500
commit1035c453ea6468de13db8eb04fbb55d38347ff2a (patch)
tree6334368706467665fa7a5f5d75efd1dce886620e /library/font_awesome/src/_plugins/site.rb
parent45e0fc6802b360710becf7ddaf6aed6a9de1d876 (diff)
parentfe7fba4789fac2024c4e8e711e2f8a2492c683bd (diff)
downloadvolse-hubzilla-1035c453ea6468de13db8eb04fbb55d38347ff2a.tar.gz
volse-hubzilla-1035c453ea6468de13db8eb04fbb55d38347ff2a.tar.bz2
volse-hubzilla-1035c453ea6468de13db8eb04fbb55d38347ff2a.zip
Merge branch 'dev' into oauth2
Diffstat (limited to 'library/font_awesome/src/_plugins/site.rb')
-rw-r--r--library/font_awesome/src/_plugins/site.rb142
1 files changed, 0 insertions, 142 deletions
diff --git a/library/font_awesome/src/_plugins/site.rb b/library/font_awesome/src/_plugins/site.rb
deleted file mode 100644
index a6a74b7bb..000000000
--- a/library/font_awesome/src/_plugins/site.rb
+++ /dev/null
@@ -1,142 +0,0 @@
-##
-# Provide an icons attribute on the site object
-
-require 'yaml'
-require 'forwardable'
-
-module Jekyll
-
- class Icon
-
- attr_reader :name, :id, :unicode, :created, :categories
-
- def initialize(icon_object)
- @icon_object = icon_object
-
- # Class name used in CSS and HTML
- @icon_object['class'] = icon_object['id']
- # Normalize the aliases
- @icon_object['aliases'] ||= []
-
- @name = icon_object['name']
- @id = icon_object['id']
- @class = icon_object['class']
- @aliases = icon_object['aliases']
- @unicode = icon_object['unicode']
- @created = icon_object['created']
- @categories = icon_object['categories']
- end
-
- def to_liquid
- return @icon_object
- end
-
- end
-
- class IconList
- ##
- # A list of icons
- #
- include Enumerable
- extend Forwardable
-
- def_delegators :@icon_array, :each, :<<
-
- def initialize(icon_array)
- @original_icon_array = icon_array
- @icon_array = []
-
- icon_array.each { |icon_object|
- @icon_array << Icon.new(icon_object)
- }
- end
-
- def [](k)
- @icon_array[k]
- end
-
- def to_liquid
- @original_icon_array
- end
-
- end
-
- module IconFilters
- def expand_aliases(icons)
- expanded = []
-
- icons.each { |icon|
- # Remove the aliases since we are expanding them
- expanded << icon.reject{ |k| k == 'aliases'}
-
- icon['aliases'].each { |alias_id|
- alias_icon = expanded[-1].dup
- alias_icon['class'] = alias_id
- alias_icon['alias_of'] = icon
-
- expanded << alias_icon
- }
- }
-
- return expanded
- end
-
- def category(icons, cat)
- icons.select { |icon| icon['categories'].include?(cat) }
- end
-
- def version(icons, version)
- icons.select { |icon| icon['created'] == version }
- end
-
- def sort_by(icons, sort_key)
- icons.sort_by! { |icon| icon[sort_key] }
- end
- end
-
- Liquid::Template.register_filter(IconFilters)
-
- class Site
-
- attr_reader :icons
-
- def process
- self.reset_icons
- self.reset
- self.read
- self.generate
- self.render
- self.cleanup
- self.write
-
- self.build
- end
-
- ##
- # Reads the YAML file that stores all data about icons
- def reset_icons
- @icons = IconList.new(YAML.load_file(self.config['icon_meta'])['icons'])
- end
-
- ##
- # After generation, runs a build of Font-Awesome
- def build
- system("make build", :chdir => self.config['destination'], :out => :err)
- end
-
- def site_payload
- {
- "site" => self.config.merge({
- "time" => self.time,
- "posts" => self.posts.sort { |a, b| b <=> a },
- "pages" => self.pages,
- "html_pages" => self.pages.reject { |page| !page.html? },
- "categories" => post_attr_hash('categories'),
- "tags" => post_attr_hash('tags')}),
- "icons" => @icons,
- }
- end
-
- end
-
-end