projects
/
rust-101.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
cfc6a49
)
fix the patching monkeys
author
Ralf Jung
<post@ralfj.de>
Sat, 22 Aug 2015 19:42:40 +0000
(21:42 +0200)
committer
Ralf Jung
<post@ralfj.de>
Sat, 22 Aug 2015 19:42:40 +0000
(21:42 +0200)
pycco-rs
patch
|
blob
|
history
diff --git
a/pycco-rs
b/pycco-rs
index 072dd2e338b654dc7db17efa17579848f3b4395d..2dd50e772a5d51b6811859b446cf93196f9d78b8 100755
(executable)
--- a/
pycco-rs
+++ b/
pycco-rs
@@
-22,11
+22,11
@@
html_src = pycco_resources.html
css_marker = '<link rel="stylesheet" href="{{ stylesheet }}">'
custom_css = '<link rel="stylesheet" href="pycco_custom.css">'
css_marker = '<link rel="stylesheet" href="{{ stylesheet }}">'
custom_css = '<link rel="stylesheet" href="pycco_custom.css">'
-
patched_html
= html_src.replace(css_marker, css_marker+custom_css, 1)
+
html_src
= html_src.replace(css_marker, css_marker+custom_css, 1)
title_marker = '<title>'
title_marker = '<title>'
-
patched_html
= html_src.replace(title_marker, title_marker + 'Rust-101: ', 1)
+
html_src
= html_src.replace(title_marker, title_marker + 'Rust-101: ', 1)
-pycco.main.pycco_template = pycco.main.template(
patched_html
)
+pycco.main.pycco_template = pycco.main.template(
html_src
)
pycco.main.main()
pycco.main.main()