diff --git a/.gitignore b/.gitignore
index 1bd4ec563..82aeba1c3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,3 +25,4 @@ tmp
src/website/settingslocal.py
stunnel.log
+output/
\ No newline at end of file
diff --git a/extractor/empty.svg b/extractor/empty.svg
index 2624112cf..850c0aaa5 100644
--- a/extractor/empty.svg
+++ b/extractor/empty.svg
@@ -9,8 +9,8 @@
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="900"
- height="900"
+ width="32"
+ height="32"
id="svg6044"
version="1.1"
inkscape:version="0.48.2 r9819"
@@ -55,12 +55,13 @@
-
+ inkscape:groupmode="layer">
+
+
+
diff --git a/extractor/extract.rb b/extractor/extract.rb
index 231e1003e..fe5bd66c4 100644
--- a/extractor/extract.rb
+++ b/extractor/extract.rb
@@ -33,12 +33,26 @@ while index < svg_lines.length
index += 1
end
-# icons.each_pair do |icon_name, icon_code|
-# puts "#{icon_name}: #{glyphs[icon_code]}"
-# end
+write_svg = lambda { |requested_icon|
+ requested_glyph = glyphs[icons[requested_icon]]
+ if(requested_glyph == nil)
+ puts "Unknown glyph: #{requested_icon}"
+ else
+ blank_svg_content = File.open('empty.svg').read
+ output_svg = blank_svg_content.sub '###INSERTGLYPH###', requested_glyph
+ File.open("output/#{requested_icon}.svg", 'w') {|out_svg| out_svg.write(output_svg) }
+ end
+}
-requested_icon = ARGV[0]
-requested_glyph = glyphs[icons[requested_icon]]
-blank_svg_content = File.open('empty.svg').read
-output_svg = blank_svg_content.sub '###INSERTGLYPH###', requested_glyph
-File.open("#{requested_icon}.svg", 'w') {|out_svg| out_svg.write(output_svg) }
\ No newline at end of file
+if ARGV.length > 0
+ write_svg.call ARGV[0]
+else
+ viewer = File.open('output/index.html', 'w')
+ viewer.write '
'
+ icons.each_pair do |icon_name, icon_code|
+ write_svg.call icon_name
+ viewer.write "#{icon_name}
"
+ end
+ viewer.write ''
+ viewer.close
+end
\ No newline at end of file