first commit

This commit is contained in:
root
2026-03-14 09:49:00 +00:00
commit 708ff116e1
1958 changed files with 1718027 additions and 0 deletions

33
www/bower_components/c3/config.rb vendored Normal file
View File

@@ -0,0 +1,33 @@
helpers do
def js_as_plain(id)
f = open("docs/js/samples/" + id + ".js")
js = f.read
f.close
js
end
def data_as_plain(name)
f = open("docs/data/" + name)
data = f.read
f.close
data
end
def css_as_plain(name)
f = open("docs/css/samples/" + name)
css = f.read
f.close
css
end
def get_css_name(path)
path.gsub('.html', '')
end
end
set :source, 'docs'
set :haml, { :ugly => true, :format => :html5 }
set :css_dir, 'css'
set :js_dir, 'js'
set :images_dir, 'img'
configure :build do
activate :asset_hash, :ignore => %r{^js/ace/.*}
end