Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
verbless mothers
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkroorda committed Nov 10, 2015
1 parent 5f857d0 commit d7257c8
Show file tree
Hide file tree
Showing 76 changed files with 49 additions and 41 deletions.
Binary file modified dist/laf-fabric-4.5.4.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion emdros2laf/etcbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def run_mql(self, query_file, result_file):
source = self.settings.env['source_data'],
query = query_file,
result = result_file,
))
), dyld=True)

def make_mql(self, name, query):
query_file = '{}/{}'.format(self.settings.env['query_dst_dir'], name)
Expand Down
24 changes: 20 additions & 4 deletions emdros2laf/mylib.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import sys
import sys,os
import datetime
import time
import subprocess
Expand All @@ -12,9 +12,25 @@ def camel(text):
return ''.join(words[x].capitalize() if x > 0 else words[x] for x in range(len(words)))
def fillup(size, val, lst): return tuple(lst[x] if x < len(lst) else val for x in range(size))
def today(): return datetime.date.today()
def run(cmd): subprocess.check_call(cmd + ' 2>&1', shell = True)
def runx(cmd):
return subprocess.call(cmd + ' 2>&1', shell = True)
def run(cmd, dyld=False):
if dyld:
result = subprocess.check_call(
'export DYLD_LIBRARY_PATH=$DYLDLIBRARYPATH; '+cmd+' 2>&1', shell=True, env=dict(os.environ, DYLDLIBRARYPATH=os.environ.get('DYLD_LIBRARY_PATH', '')),
)
else:
result = subprocess.check_call(cmd+' 2>&1', shell=True)
return result
# subprocess.check_call(cmd + ' 2>&1', shell = True)

def runx(cmd, dyld=False):
if dyld:
result = subprocess.call(
'export DYLD_LIBRARY_PATH=$DYLDLIBRARYPATH; '+cmd+' 2>&1', shell=True, env=dict(os.environ, DYLDLIBRARYPATH=os.environ.get('DYLD_LIBRARY_PATH', '')),
)
else:
result = subprocess.call(cmd+' 2>&1', shell=True)
return result
# subprocess.call(cmd + ' 2>&1', shell = True)

class Timestamp():
timestamp = None
Expand Down
Binary file modified example-data/etcbc4/bin/A/px/C0b(dirk,part,sectioning)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/C0b(laf,,y)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/C0f(dirk,part,sectioning)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/C0f(laf,,y)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/Fe0(dirk,part,sectioning)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/Fn0(dirk,db,otype)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/Fn0(dirk,dbs,otype)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/Fn0(etcbc4,px,instruction)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/Fn0(etcbc4,px,number_in_ch)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/A/px/Fn0(etcbc4,px,pargr)
Binary file not shown.
4 changes: 2 additions & 2 deletions example-data/etcbc4/bin/A/px/__log__compile__.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-16
OPENED AT:2015-10-02T18-02-32

CLOSED AT:2014-07-15T11-31-16
CLOSED AT:2015-10-02T18-02-32
Binary file modified example-data/etcbc4/bin/C0b(etcbc4,ft,functional_parent)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/C0b(etcbc4,ft,mother)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/C0b(laf,,x)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/C0f(etcbc4,ft,functional_parent)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/C0f(etcbc4,ft,mother)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/C0f(laf,,x)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fe0(etcbc4,ft,functional_parent)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fe0(etcbc4,ft,mother)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,db,maxmonad)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,db,minmonad)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,db,monads)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,db,oid)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,db,otype)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,code)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,det)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,function)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,g_word_utf8)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,number)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,rela)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,trailer_utf8)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,txt)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,ft,typ)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,sft,book)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,sft,chapter)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,sft,half_verse)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,sft,label)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Fn0(etcbc4,sft,verse)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/G00(edges_from)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/G00(edges_to)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/G00(node_anchor_max)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/G00(node_anchor_min)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/G00(node_sort)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/G00(node_sort_inv)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(node_anchor)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(node_anchor_items)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(node_events)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(node_events_items)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(node_events_k)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(node_events_n)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/P00(primary_data)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Xeb()
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Xef()
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Xnb()
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Xnf()
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Z/etcbc/G00(node_sort)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Z/etcbc/G00(node_sort_inv)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Z/etcbc/L00(node_down)
Binary file not shown.
Binary file modified example-data/etcbc4/bin/Z/etcbc/L00(node_up)
Binary file not shown.
4 changes: 2 additions & 2 deletions example-data/etcbc4/bin/__log__compile__.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-08
OPENED AT:2015-10-02T18-02-23

CLOSED AT:2014-07-15T11-31-15
CLOSED AT:2015-10-02T18-02-31
4 changes: 2 additions & 2 deletions example-output/etcbc4/before/__log__before.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-19
OPENED AT:2015-10-02T18-02-34

CLOSED AT:2014-07-15T11-31-19
CLOSED AT:2015-10-02T18-02-34
4 changes: 2 additions & 2 deletions example-output/etcbc4/compile/__log__compile.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-16
OPENED AT:2015-10-02T18-02-32

CLOSED AT:2014-07-15T11-31-16
CLOSED AT:2015-10-02T18-02-32
4 changes: 2 additions & 2 deletions example-output/etcbc4/connectivity/__log__connectivity.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-18
OPENED AT:2015-10-02T18-02-34

CLOSED AT:2014-07-15T11-31-18
CLOSED AT:2015-10-02T18-02-34
4 changes: 2 additions & 2 deletions example-output/etcbc4/edges/__log__edges.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-18
OPENED AT:2015-10-02T18-02-34

CLOSED AT:2014-07-15T11-31-18
CLOSED AT:2015-10-02T18-02-34
4 changes: 2 additions & 2 deletions example-output/etcbc4/lingo/__log__lingo.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-17
OPENED AT:2015-10-02T18-02-33

CLOSED AT:2014-07-15T11-31-18
CLOSED AT:2015-10-02T18-02-34
4 changes: 2 additions & 2 deletions example-output/etcbc4/load/__log__load.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-16
OPENED AT:2015-10-02T18-02-32

CLOSED AT:2014-07-15T11-31-16
CLOSED AT:2015-10-02T18-02-32
4 changes: 2 additions & 2 deletions example-output/etcbc4/load2/__log__load2.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-17
OPENED AT:2015-10-02T18-02-32

CLOSED AT:2014-07-15T11-31-17
CLOSED AT:2015-10-02T18-02-32
4 changes: 2 additions & 2 deletions example-output/etcbc4/monads/__log__monads.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-17
OPENED AT:2015-10-02T18-02-32

CLOSED AT:2014-07-15T11-31-17
CLOSED AT:2015-10-02T18-02-32
4 changes: 2 additions & 2 deletions example-output/etcbc4/n_prep/__log__n_prep.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-18
OPENED AT:2015-10-02T18-02-34

CLOSED AT:2014-07-15T11-31-18
CLOSED AT:2015-10-02T18-02-34
12 changes: 2 additions & 10 deletions example-output/etcbc4/plain/__log__plain.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
OPENED AT:2015-06-05T08-46-41
0.01s LOGFILE=/Users/dirk/SURFdrive/current/demos/github/laf-fabric/example-output/etcbc4/plain/__log__plain.txt
0.02s INFO: DATA LOADED FROM SOURCE etcbc4 AND ANNOX -- FOR TASK plain AT 2015-06-05T08-46-41
0.00s Get the words ...
0.00s Results directory:
/Users/dirk/SURFdrive/current/demos/github/laf-fabric/example-output/etcbc4/plain
OPENED AT:2015-10-02T18-02-34

__log__plain.txt 268 Fri Jun 5 10:46:41 2015
unicode_utf8.txt 366 Fri Jun 5 10:46:41 2015

CLOSED AT:2015-06-05T08-46-41
CLOSED AT:2015-10-02T18-02-34
2 changes: 1 addition & 1 deletion example-output/etcbc4/resolve/__log__resolve.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
OPENED AT:2014-07-15T11-31-17
OPENED AT:2015-10-02T18-02-32
4 changes: 2 additions & 2 deletions example-output/etcbc4/u_edges/__log__u_edges.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
OPENED AT:2014-07-15T11-31-18
OPENED AT:2015-10-02T18-02-34

CLOSED AT:2014-07-15T11-31-18
CLOSED AT:2015-10-02T18-02-34
2 changes: 1 addition & 1 deletion laf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
NAME = 'LAF-Fabric'
VERSION = '4.5.4'
APIREF = 'http://laf-fabric.readthedocs.org/en/latest/texts/API-reference.html'
FEATDOC = 'http://shebanq-doc.readthedocs.org/en/latest/texts/welcome.html'
FEATDOC = 'https://shebanq.ancient-data.org/static/docs/featuredoc/texts/welcome.html'
MAIN_CFG = 'laf-fabric.cfg'
DEFAULT_DATA_DIR = 'laf-fabric-data'

Expand Down

0 comments on commit d7257c8

Please sign in to comment.