Skip to content

Commit cdfb6d1

Browse files
author
George Nachman
committedJun 10, 2019
Update jekyll to latest version. Fix unbalanced tags in generate_downloads.py's output
1 parent d8a298f commit cdfb6d1

5 files changed

+9
-10
lines changed
 

‎_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
permalink: /:title
2-
pygments: true
2+
highlighter: pygments
33
markdown: rdiscount
44
source: source
55
exclude:

‎generate_downloads.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def ChangeLog(zip):
9090
if len(content):
9191
id = abs(hash(zip))
9292
content = \
93-
'''<p><a href="javascript:showId('%s')" id='show%s'>&#x25b8; Show Changelog</a>
93+
'''<p><a href="javascript:showId('%s')" id='show%s'>&#x25b8; Show Changelog</a></p>
9494
<a href="javascript:hideId('%s')" id='hide%s' style="display: none">&#x25be; Hide Changelog</a>
9595
<pre id="changelist%s" style="display: none">%s</pre></p>''' % (id, id, id, id, id, content)
9696
return content
@@ -137,7 +137,7 @@ def ChangeLog(zip):
137137
haveArchive = True
138138
key = "older_%d" % j
139139
j += 1
140-
print '''<p><a href="javascript:showId('%s')" id='show%s'>&#x25b8; Show Older Versions</a>
140+
print '''<p><a href="javascript:showId('%s')" id='show%s'>&#x25b8; Show Older Versions</a></p>
141141
<a href="javascript:hideId('%s')" id='hide%s' style="display: none">&#x25be; Hide Older Versions</a>
142142
<div id="changelist%s" style="margin-left: 15pt; display: none"><h3>Older %s</h3>''' % (key, key, key, key, key, sectionName)
143143
i += 1

‎process_site.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
tar cvfz ~/backup`date +%s`.tgz ~/iterm2.com
33
cp -v -n downloads/beta/* ~/iterm2.com/downloads/beta/
4-
export GEM_HOME=$HOME/.newgems
4+
export GEM_HOME=$HOME/.gems2
55
rm -rf ~/iterm2.com_stage
66
./generate_downloads.py > source/downloads.md
7-
bundle exec jekyll build -d ~/iterm2.com_stage
7+
$GEM_HOME/bin/bundle exec jekyll build -d ~/iterm2.com_stage
88
cd ~/iterm2.com_stage && tar cvfz all.tgz *
99
cd ~/iterm2.com && tar xvfz ~/iterm2.com_stage/all.tgz
1010
cp ~/iterm2-website/downloads/stable/.htaccess ~/iterm2.com/downloads/stable/.htaccess

‎process_site_nobackup.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
2-
export GEM_HOME=$HOME/.newgems
2+
export GEM_HOME=$HOME/.gems2
33
rm -rf ~/iterm2.com_stage
44
./generate_downloads.py > source/downloads.md
5-
bundle exec jekyll build -d ~/iterm2.com_stage
5+
$GEM_HOME/bin/bundle exec jekyll build -d ~/iterm2.com_stage
66
cd ~/iterm2.com_stage && tar cvfz all.tgz *
77
cd ~/iterm2.com && tar xvfz ~/iterm2.com_stage/all.tgz
88
cp ~/iterm2-website/downloads/stable/.htaccess ~/iterm2.com/downloads/stable/.htaccess

‎test.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/bin/bash
2-
test `hostname` = bryan && (cp _gemfiles/* .)
32
cp source/appcasts/* ~/iterm2.com/misc
43
cp -v -n downloads/beta/* ~/iterm2.com/downloads/beta/
54
cp -i -v -n downloads/stable/* ~/iterm2.com/downloads/stable/
6-
export GEM_HOME=$HOME/.newgems
5+
export GEM_HOME=$HOME/.gems2
76
./generate_downloads.py > source/downloads.md
8-
bundle exec jekyll serve --trace
7+
$GEM_HOME/bin/bundle exec jekyll build

0 commit comments

Comments
 (0)
Please sign in to comment.