Skip to content

Commit

Permalink
syrnt with etcbc transcriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkroorda committed Oct 18, 2018
1 parent e233a6a commit 5fed90b
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 19 deletions.
Binary file not shown.
8 changes: 4 additions & 4 deletions docs/Code/Stats.md
@@ -1,13 +1,13 @@
cloc|github.com/AlDanial/cloc v 1.74 T=2.77 s (27.4 files/s, 8327.9 lines/s)
cloc|github.com/AlDanial/cloc v 1.74 T=2.21 s (34.4 files/s, 10454.7 lines/s)
--- | ---

Language|files|blank|comment|code
:-------|-------:|-------:|-------:|-------:
Python|37|1351|1598|9563
Markdown|30|2669|0|7161
Python|37|1351|1599|9563
Markdown|30|2671|0|7165
CSS|5|17|4|407
JavaScript|2|11|1|213
YAML|1|4|0|60
Bourne Shell|1|0|0|1
--------|--------|--------|--------|--------
SUM:|76|4052|1603|17405
SUM:|76|4054|1604|17409
2 changes: 1 addition & 1 deletion docs/Code/StatsApps.md
@@ -1,4 +1,4 @@
cloc|github.com/AlDanial/cloc v 1.74 T=0.21 s (61.8 files/s, 17097.9 lines/s)
cloc|github.com/AlDanial/cloc v 1.74 T=0.19 s (69.6 files/s, 19255.8 lines/s)
--- | ---

Language|files|blank|comment|code
Expand Down
6 changes: 3 additions & 3 deletions docs/Code/StatsBase.md
@@ -1,8 +1,8 @@
cloc|github.com/AlDanial/cloc v 1.74 T=0.14 s (101.2 files/s, 30120.1 lines/s)
cloc|github.com/AlDanial/cloc v 1.74 T=0.13 s (108.9 files/s, 32430.5 lines/s)
--- | ---

Language|files|blank|comment|code
:-------|-------:|-------:|-------:|-------:
Python|14|459|308|3400
Python|14|459|309|3400
--------|--------|--------|--------|--------
SUM:|14|459|308|3400
SUM:|14|459|309|3400
2 changes: 1 addition & 1 deletion docs/Code/StatsSearch.md
@@ -1,4 +1,4 @@
cloc|github.com/AlDanial/cloc v 1.74 T=0.10 s (92.7 files/s, 33201.6 lines/s)
cloc|github.com/AlDanial/cloc v 1.74 T=0.09 s (103.0 files/s, 36884.5 lines/s)
--- | ---

Language|files|blank|comment|code
Expand Down
2 changes: 1 addition & 1 deletion docs/Code/StatsServer.md
@@ -1,4 +1,4 @@
cloc|github.com/AlDanial/cloc v 1.74 T=0.10 s (78.3 files/s, 17998.4 lines/s)
cloc|github.com/AlDanial/cloc v 1.74 T=0.10 s (82.9 files/s, 19046.8 lines/s)
--- | ---

Language|files|blank|comment|code
Expand Down
8 changes: 7 additions & 1 deletion docs/News.md
Expand Up @@ -12,7 +12,13 @@

## Queued for next release

The older, rectangular logo makes place for the more crisp, circular one
## 6.2.2

2018-10-18

* Added ETCBC/WIT transcriptions to the SyrNT data source. Now both Peshitta
and Syriac New Testament have ETCBC transcriptions.
* The older, rectangular logo makes place for the more crisp, circular one

## 6.2.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -22,7 +22,7 @@
'text-fabric = tf.server.start:main',
]
},
version='6.2.1',
version='6.2.2',
description='''Processor and browser for Text Fabric Data''',
author='Dirk Roorda',
author_email='dirk.roorda@dans.knaw.nl',
Expand Down
2 changes: 1 addition & 1 deletion text_fabric.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: text-fabric
Version: 6.2.1
Version: 6.2.2
Summary: Processor and browser for Text Fabric Data
Home-page: https://github.com/Dans-labs/text-fabric
Author: Dirk Roorda
Expand Down
5 changes: 3 additions & 2 deletions tf/apphelpers.py
Expand Up @@ -101,8 +101,9 @@ def getDataCustom(source, release, dataUrl, dest, version, withPaths=False):
cwd = os.getcwd()
try:
z = ZipFile(zf)
if not os.path.exists(versionDest):
os.makedirs(versionDest, exist_ok=True)
if os.path.exists(versionDest):
rmtree(versionDest)
os.makedirs(versionDest, exist_ok=True)
os.chdir(versionDest)
if withPaths:
z.extractall()
Expand Down
2 changes: 1 addition & 1 deletion tf/extra/syrnt-app/config.py
Expand Up @@ -6,7 +6,7 @@
REPO = 'syrnt'
CORPUS = 'SyrNT'
VERSION = '0.1'
RELEASE = '0.1'
RELEASE = '0.2'
RELEASE_FIRST = '0.1'
DOI = '10.5281/zenodo.1464787'
DOI_URL = 'https://doi.org/10.5281/zenodo.1464787'
Expand Down
4 changes: 2 additions & 2 deletions tf/extra/syrnt.py
Expand Up @@ -503,7 +503,7 @@ def _pretty(
self,
n,
suppress,
('word_ascii', 'lexeme_ascii', 'sp', 'vs', 'vt'),
('word_etcbc', 'lexeme_etcbc', 'sp', 'vs', 'vt'),
)
elif nType == 'lex':
occs = L.d(n, otype='word')
Expand All @@ -515,7 +515,7 @@ def _pretty(
self,
n,
suppress,
('lexeme_ascii',),
('lexeme_etcbc',),
)
html.append(heading)
html.append(featurePart)
Expand Down
2 changes: 1 addition & 1 deletion tf/fabric.py
Expand Up @@ -22,7 +22,7 @@
from .mql import MQL, tfFromMql

NAME = 'Text-Fabric'
VERSION = '6.2.1'
VERSION = '6.2.2'
DOI = '10.5281/zenodo.592193'
DOI_URL = 'https://doi.org/10.5281/zenodo.592193'
APIREF = 'https://dans-labs.github.io/text-fabric/Api/General/'
Expand Down

0 comments on commit 5fed90b

Please sign in to comment.