/usr/share/doc/python-pyopencl-doc/examples/download-examples-from-wiki.py is in python-pyopencl-doc 2014.1-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 51 52 53 54 55 56 | #! /usr/bin/env python
import xmlrpclib
destwiki = xmlrpclib.ServerProxy("http://wiki.tiker.net?action=xmlrpc2")
import os
try:
os.mkdir("wiki-examples")
except OSError:
pass
print "downloading wiki examples to wiki-examples/..."
print "fetching page list..."
all_pages = destwiki.getAllPages()
from os.path import exists
for page in all_pages:
if not page.startswith("PyOpenCL/Examples/"):
continue
print page
try:
content = destwiki.getPage(page)
import re
match = re.search(r"\{\{\{\#\!python(.*)\}\}\}", content, re.DOTALL)
code = match.group(1)
match = re.search("([^/]+)$", page)
fname = match.group(1)
outfname = os.path.join("wiki-examples", fname+".py")
if exists(outfname):
print "%s exists, refusing to overwrite." % outfname
else:
outf = open(outfname, "w")
outf.write(code)
outf.close()
for att_name in destwiki.listAttachments(page):
content = destwiki.getAttachment(page, att_name)
outfname = os.path.join("wiki-examples", att_name)
if exists(outfname):
print "%s exists, refusing to overwrite." % outfname
else:
outf = open(outfname, "w")
outf.write(str(content))
outf.close()
except Exception, e:
print "Error when processing %s: %s" % (page, e)
from traceback import print_exc
print_exc()
|