Skip to content

Commit c5c9c47

Browse files
committed
Merge remote-tracking branch 'upstream/master'
Upstream changed the way preprocessing works, there is no more XSLT processing but it's all done in Python. With this change the parallel processing became obsolete and I didn't port it.
2 parents 407ca94 + 4962e43 commit c5c9c47

File tree

7 files changed

+748
-564
lines changed

7 files changed

+748
-564
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ DISTFILES= \
5858
index-functions-cpp.xml \
5959
link_map.py \
6060
preprocess.py \
61-
preprocess.xsl \
6261
preprocess-css.css \
6362
Makefile \
6463
README.md \
@@ -191,19 +190,21 @@ output/cppreference-doxygen-local.tag.xml: \
191190
output/link-map.xml
192191
./index2doxygen-tag.py "output/link-map.xml" \
193192
"index-functions-cpp.xml" \
193+
"index-chapters-cpp.xml" \
194194
"output/cppreference-doxygen-local.tag.xml"
195195

196196
output/cppreference-doxygen-web.tag.xml: \
197197
output/reference \
198198
output/link-map.xml
199199
./index2doxygen-tag.py web \
200200
"index-functions-cpp.xml" \
201+
"index-chapters-cpp.xml" \
201202
"output/cppreference-doxygen-web.tag.xml"
202203

203204
#create preprocessed archive
204205
output/reference:
205206
mkdir -p output
206-
./preprocess.py
207+
./preprocess.py --src reference --dst output/reference
207208

208209
# create indexes for the wiki
209210
indexes:

0 commit comments

Comments
 (0)