wipo-gbd-transformation 1.1.56__py3-none-any.whl → 1.1.58__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.
Potentially problematic release.
This version of wipo-gbd-transformation might be problematic. Click here for more details.
- gbdtransformation/brands/chtm/filters.py +1 -1
- gbdtransformation/brands/chtm/template.yml +4 -4
- gbdtransformation/brands/notm/filters.py +21 -6
- gbdtransformation/brands/notm/template.yml +1 -14
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/METADATA +1 -1
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/RECORD +11 -11
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/SOURCES_Stefans-Mac-Studio.local_Sep-18-063455-2024_Conflict.txt +0 -0
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/WHEEL +0 -0
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/entry_points.txt +0 -0
- {wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/top_level.txt +0 -0
|
@@ -34,7 +34,6 @@ wordMarkSpecification:
|
|
|
34
34
|
markVerbalElement:
|
|
35
35
|
{% set verbalElement = trademark.MarkRepresentation.MarkReproduction.WordMarkSpecification.MarkSignificantVerbalElementText | clean_verbal_element %}
|
|
36
36
|
- text: {{ verbalElement }}
|
|
37
|
-
languageCode:
|
|
38
37
|
|
|
39
38
|
markImageDetails:
|
|
40
39
|
{% call(img) match('MarkImage', trademark.MarkRepresentation.MarkImageBag) %}
|
|
@@ -66,9 +65,10 @@ goodsServicesClassification:
|
|
|
66
65
|
version: {{ ASK_THE_OFFICE }}
|
|
67
66
|
class:
|
|
68
67
|
{% call(ClassDescription) match('ClassDescription', trademark.GoodsServicesBag.GoodsServices.ClassDescriptionBag) %}
|
|
69
|
-
- code: {{ ClassDescription.ClassNumber }}
|
|
70
|
-
terms:
|
|
71
|
-
|
|
68
|
+
- code: {{ ClassDescription.ClassNumber| int }}
|
|
69
|
+
terms:
|
|
70
|
+
{{ ClassDescription.GoodsServicesDescriptionText | local_guess_language() }}:
|
|
71
|
+
- {{ ClassDescription.GoodsServicesDescriptionText }}
|
|
72
72
|
{% endcall %}
|
|
73
73
|
|
|
74
74
|
priorities:
|
|
@@ -23,24 +23,39 @@ def translate_status(status):
|
|
|
23
23
|
'Finally shelved',
|
|
24
24
|
'Ceased',
|
|
25
25
|
'Ceased/cancelled',
|
|
26
|
-
'Withdrawn'
|
|
26
|
+
'Withdrawn',
|
|
27
|
+
'Rejected']:
|
|
27
28
|
return 'Ended'
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
raise Exception('Status "%s" unmapped' % status)
|
|
30
|
+
return 'Unknown'
|
|
31
|
+
#raise Exception('Status "%s" unmapped' % status)
|
|
31
32
|
|
|
32
33
|
def translate_feature(feature):
|
|
33
34
|
"""translation of mark feature"""
|
|
34
35
|
if not feature: return 'Undefined'
|
|
35
36
|
feature = feature.upper()
|
|
36
37
|
if feature == 'COMBINED/FIGURATIVE MARK': return 'Combined'
|
|
38
|
+
if feature == 'FIGURATIVE MARK': return 'Figurative'
|
|
37
39
|
if feature == 'WORD MARK': return 'Word'
|
|
38
40
|
if feature == '3D-MARK': return "Three dimensional"
|
|
41
|
+
if feature == '3D MARK': return "Three dimensional"
|
|
42
|
+
if feature == 'SOUND MARK': return 'Sound'
|
|
43
|
+
if feature == 'COLOR MARK': return 'Colour'
|
|
44
|
+
if feature == 'MOTION MARK': return 'Motion'
|
|
45
|
+
if feature == 'MULTIMEDIA MARK': return 'Multimedia'
|
|
46
|
+
if feature == 'POSITION MARK': return 'Position'
|
|
47
|
+
if feature == 'PATTERN MARK': return 'Pattern'
|
|
48
|
+
if feature == 'HOLOGRAM MARK': return 'Hologram'
|
|
49
|
+
if feature == 'TRACER MARK': return 'Tracer'
|
|
50
|
+
if feature == 'OLFACTORY MARK': return 'Olfactory'
|
|
51
|
+
if feature == 'OLFACTIVE MARK': return 'Olfactory'
|
|
52
|
+
if feature == 'STYLIZED CHARACTERS': return 'Stylized characters'
|
|
53
|
+
if feature == 'STYLIZED CHARACTERS MARK': return 'Stylized characters'
|
|
39
54
|
|
|
40
|
-
|
|
55
|
+
return 'Unknown'
|
|
41
56
|
|
|
42
57
|
# raise Exception to recognize unmapped values
|
|
43
|
-
raise Exception('Feature "%s" unmapped' % feature)
|
|
58
|
+
#raise Exception('Feature "%s" unmapped' % feature)
|
|
44
59
|
|
|
45
60
|
def get_local_text(node):
|
|
46
61
|
if "$" in node:
|
|
@@ -95,4 +110,4 @@ def local_guess_language(content):
|
|
|
95
110
|
lang = "no"
|
|
96
111
|
return lang
|
|
97
112
|
else:
|
|
98
|
-
return
|
|
113
|
+
return "en"
|
|
@@ -13,8 +13,6 @@ registrationNumber: {{ trademark.trademarkTypeChoice1.registrationNumber }}
|
|
|
13
13
|
registrationDate: {{ trademark.registrationDate }}
|
|
14
14
|
|
|
15
15
|
expiryDate: {{ trademark.expiryDate }}
|
|
16
|
-
# rarely passed
|
|
17
|
-
terminationDate:
|
|
18
16
|
|
|
19
17
|
{% set status = trademark.markCurrentStatusCode | translate_status %}
|
|
20
18
|
gbdStatus: {{ status }}
|
|
@@ -37,12 +35,6 @@ kind:
|
|
|
37
35
|
- Individual
|
|
38
36
|
# (Individual|Collective|Certificate|Defensive|Other|Membership)
|
|
39
37
|
|
|
40
|
-
publicationDate: #
|
|
41
|
-
|
|
42
|
-
applicationLanguageCode:
|
|
43
|
-
# rarely passed
|
|
44
|
-
secondLanguageCode:
|
|
45
|
-
|
|
46
38
|
markDisclaimerDetails:
|
|
47
39
|
{% call(markDisclaimerText) match('markDisclaimerText', trademark.markDisclaimerBag) %}
|
|
48
40
|
- languageCode:
|
|
@@ -67,7 +59,7 @@ wordMarkSpecification:
|
|
|
67
59
|
|
|
68
60
|
markImageDetails:
|
|
69
61
|
{% call(markImage) match('markImage', trademark.markRepresentation.markReproduction.markImageBag) %}
|
|
70
|
-
- name:
|
|
62
|
+
- name: {{ markImage.fileName }}
|
|
71
63
|
colourIndicator: {{ markImage.colourModeCategory }}
|
|
72
64
|
colourClaimed:
|
|
73
65
|
- languageCode:
|
|
@@ -77,11 +69,6 @@ markImageDetails:
|
|
|
77
69
|
- languageCode:
|
|
78
70
|
text: {{ markDescriptionText | get_local_text() }}
|
|
79
71
|
{% endcall %}
|
|
80
|
-
classification:
|
|
81
|
-
kind:
|
|
82
|
-
version:
|
|
83
|
-
code:
|
|
84
|
-
-
|
|
85
72
|
{% endcall %}
|
|
86
73
|
|
|
87
74
|
markSoundDetails:
|
{wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/RECORD
RENAMED
|
@@ -70,9 +70,9 @@ gbdtransformation/brands/catm/filters.py,sha256=iZOJFFpmXySl08VWkLDF3cMqFxW3ZGcl
|
|
|
70
70
|
gbdtransformation/brands/catm/schema,sha256=Xace88lwiEefhHkk6Zg12dzVF237nMy06HMISEXaTwk,34762
|
|
71
71
|
gbdtransformation/brands/catm/template.yml,sha256=AwAv3VPRY2VmoyTyPZCwKdRJSmYdVUTRpJj4Zv3uqrM,9861
|
|
72
72
|
gbdtransformation/brands/chtm/__init__.py,sha256=HPYmDCQ41vkuoXSA94CRtqN_pEKDaUhbpXLOBqlaumQ,130
|
|
73
|
-
gbdtransformation/brands/chtm/filters.py,sha256=
|
|
73
|
+
gbdtransformation/brands/chtm/filters.py,sha256=kSMlYumpaLg53MdPAF5L7bM3ZiNsRfd0BgkPLgDDzQQ,5317
|
|
74
74
|
gbdtransformation/brands/chtm/schema,sha256=f3lVto7Y6O9W7dmhR-4lShQMTVL3tl6bGbw1DZLXuxU,2071
|
|
75
|
-
gbdtransformation/brands/chtm/template.yml,sha256=
|
|
75
|
+
gbdtransformation/brands/chtm/template.yml,sha256=qQadx7c5XXmhAVOi9ao_zcKggTwWNr-LMUVtHGSzqN8,4380
|
|
76
76
|
gbdtransformation/brands/cltm/__init__.py,sha256=yqzC7OagUR0RLui3pHPWo5WxLyksznHcpI-NEEgnlYE,36
|
|
77
77
|
gbdtransformation/brands/cltm/filters.py,sha256=tmcDE85IAHVuV7GX-EddvNqDktDxYkCCeZIC-RPlbck,2417
|
|
78
78
|
gbdtransformation/brands/cltm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRFeqaJt6Q,3242
|
|
@@ -288,8 +288,8 @@ gbdtransformation/brands/natm/schema,sha256=TFrF4FR76cytcbtQkDWxtF74I0tCPRDIvWRF
|
|
|
288
288
|
gbdtransformation/brands/natm/template.yml,sha256=PO7s1HDQM9ushIJuIX3z_dfWO-f62YDzBG_sYKDlnG8,34
|
|
289
289
|
gbdtransformation/brands/natm/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
290
|
gbdtransformation/brands/notm/__init__.py,sha256=YRZPymjJv7V5vqjphBN1UOHZ3RL1oeYYqaOI6AKInl0,88
|
|
291
|
-
gbdtransformation/brands/notm/filters.py,sha256=
|
|
292
|
-
gbdtransformation/brands/notm/template.yml,sha256=
|
|
291
|
+
gbdtransformation/brands/notm/filters.py,sha256=1f1vF9kKTlMQ9K_Qh7Hk6OQ964WGWQ8BadNOu-61sIo,3738
|
|
292
|
+
gbdtransformation/brands/notm/template.yml,sha256=UmJ35fKzAHQSYrECsJtXRXTE2egXM69oXcu0Ya5fqWA,5090
|
|
293
293
|
gbdtransformation/brands/nztm/__init__.py,sha256=UHmbQDIPDdApISBKfO9tKOX6LgUQ_Ib-IVMR5kCVMTY,86
|
|
294
294
|
gbdtransformation/brands/nztm/filters.py,sha256=dAjrg03Yq37H10oAM8rnAMNa71lZHuG1uMwHi25kIvA,4211
|
|
295
295
|
gbdtransformation/brands/nztm/schema,sha256=tpcyNMtmiBQQ0FsxKKTASRSo4nbrw0j0_b1nhELyAzE,6355
|
|
@@ -579,10 +579,10 @@ gbdtransformation/utilities/st66.xsd,sha256=co8aFN3a5TpudllRttWmfLeiZu8ulNipfeXm
|
|
|
579
579
|
schemas/ShazamConfig.py,sha256=D67os5B11C41h_WZ7kk54Ss0Kk7tHh8W0d_1c_aX-lY,1191
|
|
580
580
|
schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
581
581
|
schemas/schema_extractor.py,sha256=3-ImtnI777f6b3VA0A_w-NoXdlGz5VZMzK6MnPdQQAY,10294
|
|
582
|
-
wipo_gbd_transformation-1.1.
|
|
583
|
-
wipo_gbd_transformation-1.1.
|
|
584
|
-
wipo_gbd_transformation-1.1.
|
|
585
|
-
wipo_gbd_transformation-1.1.
|
|
586
|
-
wipo_gbd_transformation-1.1.
|
|
587
|
-
wipo_gbd_transformation-1.1.
|
|
588
|
-
wipo_gbd_transformation-1.1.
|
|
582
|
+
wipo_gbd_transformation-1.1.58.dist-info/LICENSE.md,sha256=6r2dL13EwZqSt2ellLbJRFTA-6ECIDOer4YthCfkac0,35654
|
|
583
|
+
wipo_gbd_transformation-1.1.58.dist-info/METADATA,sha256=H7dTnIGdWSeM0Np1FMc7zRSg6E_6uDpwxWxQ_62x7E8,577
|
|
584
|
+
wipo_gbd_transformation-1.1.58.dist-info/SOURCES_Stefans-Mac-Studio.local_Sep-18-063455-2024_Conflict.txt,sha256=NeGxpq7lHSg1kaKoQE1hRDhEL5c39TAp008ptbN08NU,29740
|
|
585
|
+
wipo_gbd_transformation-1.1.58.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
586
|
+
wipo_gbd_transformation-1.1.58.dist-info/entry_points.txt,sha256=NFLtlP3mPHUi-hEoUcz4CXa7vcpP8bbwd18HS4arbEk,223
|
|
587
|
+
wipo_gbd_transformation-1.1.58.dist-info/top_level.txt,sha256=oU1j-JNLga18Fd-EV6Xl9wM8zxYoNVEzb7P8MDhTPJg,26
|
|
588
|
+
wipo_gbd_transformation-1.1.58.dist-info/RECORD,,
|
{wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wipo_gbd_transformation-1.1.56.dist-info → wipo_gbd_transformation-1.1.58.dist-info}/top_level.txt
RENAMED
|
File without changes
|