[sword-devel] [PATCH 5/7] Shorten the labels so they are not overflowing the screen.

Matěj Cepl mcepl at cepl.eu
Sat Mar 31 11:49:02 MST 2018


---
 versification/av11n.py | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/versification/av11n.py b/versification/av11n.py
index c464fd9..9ade84e 100755
--- a/versification/av11n.py
+++ b/versification/av11n.py
@@ -1,4 +1,5 @@
 #!/usr/bin/env python
+# coding: utf-8
 #
 # This does a very roughshod attempt to compare the osisIDs found in an
 # XML file with each of the versifications that SWORD knows about to help
@@ -43,7 +44,7 @@ if len(sys.argv) < 2 or sys.argv[1] == '--help':
 logging.debug('Opening %s' % (sys.argv[1],))
 d = pq(filename=sys.argv[1])
 # Get the list of versifications
-logging.debug('Fetching a list of versifications')
+logging.debug('Fetching a list of v11ns')
 vmgr = Sword.VersificationMgr.getSystemVersificationMgr()
 av11ns = vmgr.getVersificationSystems()
 
@@ -82,6 +83,7 @@ for v11n in av11ns:
     inNT = False
     # Now iterate the ones we have in this file
     for e in ids:
+        logging.debug('e = %s', e)
         osisid = e.attrib.get('osisID')
         #print 'Checking key %s' % (osisid,)
         if osisid in otkeyList:
@@ -100,21 +102,21 @@ for v11n in av11ns:
     keyList = list(otkeyList.union(ntkeyList))
     keyList.sort()
     if len(keyList) > 0:
-        logging.info('\tThe following IDs do not appear in your file:\n%s',
+        logging.info('\tThe following IDs don’t appear in your file:\n%s',
                      str("\n".join(keyList)))
         print ('\tThere are %d OT IDs and %d NT IDs ' +
-               'in the versification which are not in your file.') \
+               'in v11n which arn’t in your file.') \
             % (len(otkeyList), len(ntkeyList))
     else:
-        print '\tYour file has all the references in this versification'
+        print '\tYour file has all the references in this v11n'
 
     # Now let's see if you had extra
     if len(otextraKeys + ntextraKeys) > 0:
         logging.info(
-            '\tThe following IDs do not appear in the versification:\n%s',
+            '\tThe following IDs don’t appear in v11n:\n%s',
             str("\n".join(keyList)))
         print ('\tThere are %d OT IDs and %d NT IDs ' +
-               'in your file which do not appear in the versification.') \
+               'in your file which don’t appear in v11n.') \
             % (len(otextraKeys), len(ntextraKeys))
     else:
         print '\tYour file has no extra references'
-- 
2.16.2




More information about the sword-devel mailing list