summaryrefslogtreecommitdiff
path: root/Tools/i18n/msgfmt.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-03-02 16:53:54 +0000
committerBarry Warsaw <barry@python.org>2001-03-02 16:53:54 +0000
commit82336717166c13d26fb5b00e6763f61b5a8ae9eb (patch)
treed83af6d14094513ef946b7b34febd57ec1212953 /Tools/i18n/msgfmt.py
parente5b75769eb6fe2068c404fc894c15b32c50f10fa (diff)
downloadcpython-82336717166c13d26fb5b00e6763f61b5a8ae9eb.tar.gz
Added -o/--output-file option as per GNU msgfmt to specify the output
file instead of using inputfilename.mo
Diffstat (limited to 'Tools/i18n/msgfmt.py')
-rwxr-xr-xTools/i18n/msgfmt.py27
1 files changed, 18 insertions, 9 deletions
diff --git a/Tools/i18n/msgfmt.py b/Tools/i18n/msgfmt.py
index aa72a075ec..411e3aeff5 100755
--- a/Tools/i18n/msgfmt.py
+++ b/Tools/i18n/msgfmt.py
@@ -11,6 +11,11 @@ GNU msgfmt program, however, it is a simpler implementation.
Usage: msgfmt.py [OPTIONS] filename.po
Options:
+ -o file
+ --output-file=file
+ Specify the output file to write to. If omitted, output will go to a
+ file named filename.mo (based off the input file name).
+
-h
--help
Print this message and exit.
@@ -18,15 +23,15 @@ Options:
-V
--version
Display version information and exit.
-
"""
import sys
+import os
import getopt
import struct
import array
-__version__ = "1.0"
+__version__ = "1.1"
MESSAGES = {}
@@ -91,17 +96,18 @@ def generate():
-def make(filename):
+def make(filename, outfile):
ID = 1
STR = 2
- # Compute .mo name from .po name
+ # Compute .mo name from .po name and arguments
if filename.endswith('.po'):
infile = filename
- outfile = filename[:-2] + 'mo'
else:
infile = filename + '.po'
- outfile = filename + '.mo'
+ if outfile is None:
+ outfile = os.path.splitext(infile)[0] + '.mo'
+
try:
lines = open(infile).readlines()
except IOError, msg:
@@ -159,7 +165,6 @@ def make(filename):
# Compute output
output = generate()
- # Save output
try:
open(outfile,"wb").write(output)
except IOError,msg:
@@ -169,10 +174,12 @@ def make(filename):
def main():
try:
- opts, args = getopt.getopt(sys.argv[1:], 'hV', ['help','version'])
+ opts, args = getopt.getopt(sys.argv[1:], 'hVo:',
+ ['help', 'version', 'output-file='])
except getopt.error, msg:
usage(1, msg)
+ outfile = None
# parse options
for opt, arg in opts:
if opt in ('-h', '--help'):
@@ -180,6 +187,8 @@ def main():
elif opt in ('-V', '--version'):
print >> sys.stderr, "msgfmt.py", __version__
sys.exit(0)
+ elif opt in ('-o', '--output-file'):
+ outfile = arg
# do it
if not args:
print >> sys.stderr, 'No input file given'
@@ -187,7 +196,7 @@ def main():
return
for filename in args:
- make(filename)
+ make(filename, outfile)
if __name__ == '__main__':