kodexa 6.1.3__py3-none-any.whl → 6.1.14615988279__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kodexa/model/model.py +9 -4
- {kodexa-6.1.3.dist-info → kodexa-6.1.14615988279.dist-info}/METADATA +12 -2
- {kodexa-6.1.3.dist-info → kodexa-6.1.14615988279.dist-info}/RECORD +5 -5
- {kodexa-6.1.3.dist-info → kodexa-6.1.14615988279.dist-info}/LICENSE +0 -0
- {kodexa-6.1.3.dist-info → kodexa-6.1.14615988279.dist-info}/WHEEL +0 -0
kodexa/model/model.py
CHANGED
@@ -1535,10 +1535,15 @@ class ContentNode(object):
|
|
1535
1535
|
|
1536
1536
|
if not node:
|
1537
1537
|
if (traverse == traverse.ALL or traverse == traverse.PARENT) and self.get_parent().get_parent():
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1538
|
+
try:
|
1539
|
+
potential_next_node = self.get_parent().get_parent().get_children()[self.get_parent().index + 1].get_children()[0]
|
1540
|
+
if potential_next_node:
|
1541
|
+
return potential_next_node
|
1542
|
+
except:
|
1543
|
+
# traverse additional layer
|
1544
|
+
potential_next_node = self.get_parent().get_parent().get_parent().get_children()[self.get_parent().get_parent().index + 1].get_children()[0].get_children()[0]
|
1545
|
+
if potential_next_node:
|
1546
|
+
return potential_next_node
|
1542
1547
|
return node
|
1543
1548
|
|
1544
1549
|
if compiled_node_type_re.match(node.node_type) and (not skip_virtual or not node.virtual):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: kodexa
|
3
|
-
Version: 6.1.
|
3
|
+
Version: 6.1.14615988279
|
4
4
|
Summary: Python SDK for the Kodexa Platform
|
5
5
|
Author: Austin Redenbaugh
|
6
6
|
Author-email: austin@kodexa.com
|
@@ -70,7 +70,16 @@ Documentation is available at the [Kodexa Documentation Portal](https://docs.kod
|
|
70
70
|
|
71
71
|
## Current Development
|
72
72
|
|
73
|
-
|
73
|
+
[//]: # (Replace it with the diagrams and descriptions for build releases)
|
74
|
+
**BUILD VERSION FLOW**
|
75
|
+

|
76
|
+
|
77
|
+
Build version will differ based on the branches that are published to pypi.
|
78
|
+
|
79
|
+
**GITHUB PROCESS**
|
80
|
+

|
81
|
+
Changes that contain bugs, features, and fixes should first be pushed to the test branch.
|
82
|
+
Once these changes are thoroughly tested, they can be submitted as a pull request to the main branch. The pull request should be reviewed and approved by an appropriate person before the changes can be merged.
|
74
83
|
|
75
84
|
## Set-up
|
76
85
|
|
@@ -90,3 +99,4 @@ We welcome contributions to the Kodexa platform. Please see our [contributing gu
|
|
90
99
|
|
91
100
|
Apache 2.0
|
92
101
|
|
102
|
+
|
@@ -5,7 +5,7 @@ kodexa/connectors/__init__.py,sha256=WCUEzFGjHcgPAMFIKLaRTXAkGHx3vUCD8APMhOrNNgM
|
|
5
5
|
kodexa/connectors/connectors.py,sha256=25-TffyGDjxHyp9ITug0qgr1nhqMAekmV5NVvbPGs7o,7722
|
6
6
|
kodexa/model/__init__.py,sha256=DyCgkJU7rOfd4SMvPRLaPdklCNlkqCRRWiVPwjYn2GE,720
|
7
7
|
kodexa/model/base.py,sha256=6IraEK3RomjPgFpPYkxjuLUriF958AusgJO21Dcopeg,753
|
8
|
-
kodexa/model/model.py,sha256=
|
8
|
+
kodexa/model/model.py,sha256=Bo3RligJ45tndvqo2_s_5s-f9qaWHrvdQCJqAyKsgLQ,88889
|
9
9
|
kodexa/model/objects.py,sha256=afckMl6Mjc-C-Jvl1sly8sckrujWvV4bOpi3e9ruUlc,116415
|
10
10
|
kodexa/model/persistence.py,sha256=_d-FEAclxllSTMLqdlQ2-DbGoYaLkAMpB6fPj9xuYZQ,37847
|
11
11
|
kodexa/pipeline/__init__.py,sha256=sA7f5D6qkdMrpp2xTIeefnrUBI6xxEEWostvxfX_1Cs,236
|
@@ -34,7 +34,7 @@ kodexa/testing/test_components.py,sha256=i_9M6-bfUBdR1uYAzZZzWiW0M1DGKzE5mkNuHq4
|
|
34
34
|
kodexa/testing/test_utils.py,sha256=HXM3S5FDzarzS6R7jkOHps6d6Ox2UtNqymoK6VCw8Zg,13596
|
35
35
|
kodexa/training/__init__.py,sha256=xs2L62YpRkIRfslQwtQZ5Yxjhm7sLzX2TrVX6EuBnZQ,52
|
36
36
|
kodexa/training/train_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
kodexa-6.1.
|
38
|
-
kodexa-6.1.
|
39
|
-
kodexa-6.1.
|
40
|
-
kodexa-6.1.
|
37
|
+
kodexa-6.1.14615988279.dist-info/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
38
|
+
kodexa-6.1.14615988279.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
39
|
+
kodexa-6.1.14615988279.dist-info/METADATA,sha256=uBJCVy68K73saO0ZH3DQUZBnjalDtJaeD3-yFQtYfu8,4159
|
40
|
+
kodexa-6.1.14615988279.dist-info/RECORD,,
|
File without changes
|
File without changes
|