notebooks status badge

This commit is contained in:
Jukka Aho
2015-07-05 23:54:26 +03:00
parent b68efc228c
commit 7aa09372c5
3 changed files with 5 additions and 2 deletions
+2
View File
@@ -17,6 +17,8 @@ The JuliaFEM project develops open-source software for reliable, scalable, distr
.. image:: https://coveralls.io/repos/JuliaFEM/JuliaFEM.jl/badge.svg?branch=master
:target: https://coveralls.io/r/JuliaFEM/JuliaFEM.jl?branch=master
.. image:: http://juliafem.kapsi.fi/_static/notebooks-status.svg
:target: http://juliafem.kapsi.fi/tutorials/index.html
Documentation: http://www.juliaFEM.org
+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="131" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><mask id="a"><rect width="131" height="20" rx="3" fill="#fff"/></mask><g mask="url(#a)"><path fill="#555" d="M0 0h70v20H0z"/><path fill="#9f9f9f" d="M70 0h61v20H70z"/><path fill="url(#b)" d="M0 0h131v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="11"><text x="35" y="15" fill="#010101" fill-opacity=".3">Notebooks</text><text x="35" y="14">Notebooks</text><text x="99.5" y="15" fill="#010101" fill-opacity=".3">unknown</text><text x="99.5" y="14">unknown</text></g></svg>

After

Width:  |  Height:  |  Size: 746 B

+2 -2
View File
@@ -174,13 +174,13 @@ function write_rst_table(rows)
end
function main(;filename="tutorials/notebooks.rst")
function main()
results = run_notebooks()
rows = makerows(results)
table = write_rst_table(rows)
println(table)
cd(dirname(@__FILE__)) do
open(filename, "w") do fid
open("tutorials/notebooks.rst", "w") do fid
write(fid, table)
end
end