Created
August 10, 2011 05:37
-
-
Save alloy-d/1136205 to your computer and use it in GitHub Desktop.
Simple script to inline JS and CSS in an HTML file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
infile = File.new("index.html", "r") | |
outfile = File.new("big.html", "w") | |
mapfile = File.new("misc/urls", "r") | |
map = {} | |
while line = mapfile.gets do | |
parts = line.split(" ") | |
map[parts[0]] = parts[1] | |
end | |
line = infile.gets | |
outfile.puts line | |
while line = infile.gets do | |
/<link rel="stylesheet" href="([^"]+)"/.match(line) do |m| | |
STDERR.puts "stylesheet #{m[1]}" | |
outfile.puts "<style><!-- file: #{m[1]} -->" | |
File.open(m[1], "r") do |f| | |
while tline = f.gets do | |
/url\('([^']+)'\)/.match(tline) do |m| | |
if map.include? m[1] then | |
tline.gsub!(m[1], map[m[1]]) | |
end | |
end | |
outfile.puts tline | |
end | |
end | |
outfile.puts "</style><!-- end file: #{m[1]} -->" | |
line = "" | |
end | |
/<script src="([^"]+)"/.match(line) do |m| | |
STDERR.print "script #{m[1]}" | |
if map.include? m[1] then | |
STDERR.puts " --> mapped!" | |
line.gsub!(m[1], map[m[1]]) | |
else | |
STDERR.puts " --> inlined" | |
outfile.puts "<script><!-- file: #{m[1]} -->" | |
File.open(m[1], "r") do |f| | |
while tline = f.gets do | |
outfile.puts tline | |
end | |
end | |
outfile.puts "</script><!-- end file: #{m[1]} -->" | |
line = "" | |
end | |
end | |
/<audio .*src="([^"]+)"/.match(line) do |m| | |
STDERR.print "audio #{m[1]}" | |
if map.include? m[1] then | |
STDERR.puts " --> mapped!" | |
line.gsub!(m[1], map[m[1]]) | |
else | |
STDERR.puts " --> missing! :-(" | |
end | |
outfile.puts | |
end | |
outfile.puts line | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mootools.js https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment