1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
This commit is contained in:
Shlomi Fish 2018-03-19 20:00:25 +02:00
parent 055718d2e9
commit 620b2676f4
3 changed files with 14 additions and 15 deletions

View file

@ -15,10 +15,10 @@ pysollib_dir = '../'
builtins._ = lambda x: x
builtins.n_ = lambda x: x
import pysollib.games
import pysollib.games.mahjongg
import pysollib.games.ultra
import pysollib.games.special
import pysollib.games # noqa: F402
import pysollib.games.mahjongg # noqa: F402
import pysollib.games.ultra # noqa: F402
import pysollib.games.special # noqa: F401,F402
try:
os.mkdir('html')
@ -206,13 +206,13 @@ def gen_rules_html():
rules_list.append((rules_dir, rules_fn, title, s))
files_list.append(rules_fn)
# rules_list.append((rules_fn, gi.name))
print('<li><a href="rules/%s">%s</a>' \
% (rules_fn, gi.name), file=out_rules)
print('<li><a href="rules/%s">%s</a>'
% (rules_fn, gi.name), file=out_rules)
for n in gi.altnames:
altnames.append((n, rules_fn))
print('</ul>\n' + main_footer % \
'<a href="index.html">Back to the index</a>', file=out_rules)
print('</ul>\n' + main_footer %
'<a href="index.html">Back to the index</a>', file=out_rules)
out_rules.close()
@ -224,15 +224,16 @@ def gen_rules_html():
print(file.read(), file=out_rules_alt)
altnames.sort()
for name, fn in altnames:
print('<li> <a href="rules/%s">%s</a>' \
print('<li> <a href="rules/%s">%s</a>'
% (fn, name), file=out_rules_alt)
print('</ul>\n' + main_footer % \
'<a href="index.html">Back to the index</a>', file=out_rules_alt)
print('</ul>\n' + main_footer %
'<a href="index.html">Back to the index</a>', file=out_rules_alt)
out_rules_alt.close()
# create rules
for dir, filename, title, footer in rules_list:
outfile = open(os.path.join('html', 'rules', filename), 'w', encoding='utf-8')
outfile = open(
os.path.join('html', 'rules', filename), 'w', encoding='utf-8')
if dir == 'rules':
print(rules_header % title, file=outfile)
else: # d == 'wikipedia'

View file

@ -6,7 +6,7 @@ from distutils.core import setup
from pysollib.settings import VERSION
from pysollib.settings import PACKAGE_URL
if os.name == 'nt':
import py2exe
import py2exe # noqa: F401
if os.name == 'posix':
data_dir = 'share/PySolFC'

View file

@ -21,12 +21,10 @@ else
my %skip = (
map { $_ => 1 }
qw(
html-src/gen-html.py
pysollib/games/__init__.py
pysollib/games/mahjongg/__init__.py
pysollib/games/special/__init__.py
pysollib/games/ultra/__init__.py
./setup.py
)
);