summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2008-11-27 13:41:14 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2008-11-27 13:41:14 +0200
commitcfe445a92d11e206c63a4e73588cced065df104f (patch)
tree990d914bab3e5ef64b3d88f09c68ac1af1f05d9e
parent6508bd65f006d7ca1cdaa0d177341ddfe72334a9 (diff)
downloadwikitrans-cfe445a92d11e206c63a4e73588cced065df104f.tar.gz
wikitrans-cfe445a92d11e206c63a4e73588cced065df104f.tar.bz2
Minor changes.
* wiki2text.py: The constructor keyword argument markup allows to inhibit any markup * wikicvt.py: New command line option -o (--option). Admit - as input file name.
-rw-r--r--wiki2text.py18
-rw-r--r--wikicvt.py25
2 files changed, 34 insertions, 9 deletions
diff --git a/wiki2text.py b/wiki2text.py
index 66563a6..51a7853 100644
--- a/wiki2text.py
+++ b/wiki2text.py
@@ -26,5 +26,11 @@ class TextWikiMarkup (WikiMarkup):
+ # Output width
width = 80
- num = 0
+ # Do not show references.
references = False
+ # Provide a minimum markup
+ markup = True
+
+ # Number of current element in the environment
+ num = 0
@@ -36,2 +42,4 @@ class TextWikiMarkup (WikiMarkup):
self.references = keywords['refs']
+ if 'markup' in keywords:
+ self.markup = keywords['markup']
@@ -88,6 +96,10 @@ class TextWikiMarkup (WikiMarkup):
def str_it(self, tok, env):
- return "_" + self.fmtok(tok[1], env) + "_"
+ if self.markup:
+ return "_" + self.fmtok(tok[1], env) + "_"
+ return self.fmtok(tok[1], env);
def str_bold(self, tok, env):
- return self.fmtok(tok[1], env).upper()
+ if self.markup:
+ return self.fmtok(tok[1], env).upper()
+ return self.fmtok(tok[1], env);
diff --git a/wikicvt.py b/wikicvt.py
index 418ec26..d45a61f 100644
--- a/wikicvt.py
+++ b/wikicvt.py
@@ -23,3 +23,6 @@ from wiki2text import *
def usage(code=0):
- print "usage: " + sys.argv[0] + "[-hvt] [-l lang] [--lang=lang] [--text] [--help] [--verbose] file\n"
+ print """
+usage: %s [-hvt] [-l lang] [-o kw=val] [--lang=lang] [--option kw=val]
+ [--text] [--help] [--verbose] file
+""" % (sys.argv[0])
sys.exit(code)
@@ -30,5 +33,7 @@ def main():
lang = "pl"
+ kwdict = {}
try:
- opts, args = getopt.getopt(sys.argv[1:], "hl:tv",
- ["help", "lang=", "text", "verbose" ])
+ opts, args = getopt.getopt(sys.argv[1:], "hl:o:tv",
+ ["help", "lang=", "option=",
+ "text", "verbose" ])
except getopt.GetoptError:
@@ -45,5 +50,12 @@ def main():
lang = a
+ if o in ("-o", "--option"):
+ (kw,sep,val) = a.partition('=')
+ if val != '':
+ kwdict[kw] = eval(val)
if len(args) == 1:
- inputfilename = args[0]
+ if args[0] == '-':
+ kwdict['file'] = sys.stdin
+ else:
+ kwdict['filename'] = args[0]
else:
@@ -51,6 +63,7 @@ def main():
+ kwdict['lang']=lang
if html:
- markup = HtmlWiktionaryMarkup(filename=inputfilename, lang=lang)
+ markup = HtmlWiktionaryMarkup(**kwdict)
else:
- markup = TextWiktionaryMarkup(filename=inputfilename, lang=lang)
+ markup = TextWiktionaryMarkup(**kwdict)

Return to:

Send suggestions and report system problems to the System administrator.