- )
-
- if split_on:
- documents = []
- headers = [('PoczÄ…tek', 0, 0)]
- present = True
- n = 0
- while present:
- present = False
- n += 1
- newdoc = deepcopy(document)
- newdoc.tree.getroot().document = newdoc
-
- master = newdoc.tree.getroot()[-1]
- i = 0
- for item in list(master):
- #chunkno, sourceline = 0, self.sourceline
- #if builder.splits:
- # chunkno, sourceline = len(builder.splits), sourceline - builder.splits[-1]
-
- if 'forcesplit' in item.attrib or (item.tag in split_on and 'nosplit' not in item.attrib):
- # TODO: clear
- i += 1
- if n > 1 and i == n:
- headers.append((
- raw_printable_text(item),
- 0,
- item.sourceline,
- ))
- if i != n and not (n == 1 and not i):
- master.remove(item)
- else:
- present = True
- if present:
- documents.append(newdoc)
- else:
- documents = [document]
- headers = [(
- document.meta.title, 0 ,0
- )]
-
- length_ok = len(headers) == len(mp3)
- table = zip_longest(headers, mp3)
-
+ )
+ split_other = (
+ 'naglowek_czesc',
+ 'naglowek_akt',
+ 'naglowek_podrozdzial',
+ 'srodtytul',
+ )
+
+ headers = []
+ headers_other = []
+ master = document.tree.getroot()[-1]
+ for item in master:
+ if item.tag in split_on:
+ headers.append([
+ item.tag,
+ raw_printable_text(item),
+ 0,
+ item.sourceline,
+ ])
+ if item.tag in split_other:
+ headers_other.append([
+ item.tag,
+ raw_printable_text(item),
+ 0,
+ item.sourceline,
+ ])
+
+ hints = []
+ m = document.tree.find('.//meta[@id="synchro"]')
+ if m is not None:
+ try:
+ hints = json.loads(m.text)
+ except:
+ raise
+ pass