If no arguments are given, all svgs will generate along with an html file

This commit is contained in:
Jake Pearson 2012-05-04 12:52:15 -06:00
parent 5f44b9dce9
commit 5acdf6a528
3 changed files with 33 additions and 17 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@ tmp
src/website/settingslocal.py
stunnel.log
output/

View File

@ -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 @@
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(0.0625,0.0625)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.03897692px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="###INSERTGLYPH###"
id="path6054"
inkscape:connector-curvature="0" />
inkscape:groupmode="layer">
<g transform="scale(.035, -.035) translate(25, -800)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.03897692px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="###INSERTGLYPH###"
id="path6054"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -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) }
if ARGV.length > 0
write_svg.call ARGV[0]
else
viewer = File.open('output/index.html', 'w')
viewer.write '<html><body>'
icons.each_pair do |icon_name, icon_code|
write_svg.call icon_name
viewer.write "<p>#{icon_name}<br /><img src='#{icon_name}.svg'</p>"
end
viewer.write '</html></body>'
viewer.close
end