forked from p12tic/cppreference-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fix_devhelp-links.py
executable file
·51 lines (39 loc) · 1.48 KB
/
fix_devhelp-links.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
'''
Copyright (C) 2012-2013 Povilas Kanapickas <[email protected]>
This file is part of cppreference-doc
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
'''
import lxml.etree as e
from link_map import LinkMap
import sys
if len(sys.argv) != 3:
print('''Please provide the following 2 argument:
* the file name of the source file
* the file name of the destination file
''')
in_fn = sys.argv[1]
out_fn = sys.argv[2]
mapping = LinkMap()
mapping.read('output/link-map.xml')
root = e.parse(in_fn)
el_mod = root.xpath('//*[@link]')
for el in el_mod:
link = el.get('link')
target = mapping.get_dest(link)
if target == None:
print('Could not find ' + link + ' in mapping')
target = '404'
el.set('link', target)
out_f = open(out_fn, 'w', encoding='utf-8')
out_f.write(e.tostring(root, encoding='unicode', pretty_print=True))
out_f.close()