wipo-gbd-transformation 1.1.58__py3-none-any.whl → 1.1.60__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/autm/filters.py +8 -3
- gbdtransformation/brands/gdtm/__init__.py +5 -0
- gbdtransformation/brands/gdtm/filters.py +61 -0
- gbdtransformation/brands/gdtm/schema +87 -0
- gbdtransformation/brands/gdtm/template.yml +1 -0
- gbdtransformation/brands/gdtm/tests/__init__.py +0 -0
- gbdtransformation/brands/istm/filters.py +4 -4
- gbdtransformation/brands/rutm/__init__.py +4 -1
- gbdtransformation/brands/rutm/filters.py +10 -5
- gbdtransformation/brands/ustm/filters.py +4 -2
- gbdtransformation/brands/wotm/filters.py +4 -2
- {wipo_gbd_transformation-1.1.58.dist-info → wipo_gbd_transformation-1.1.60.dist-info}/METADATA +1 -1
- {wipo_gbd_transformation-1.1.58.dist-info → wipo_gbd_transformation-1.1.60.dist-info}/RECORD +17 -18
- {wipo_gbd_transformation-1.1.58.dist-info → wipo_gbd_transformation-1.1.60.dist-info}/WHEEL +1 -1
- gbdtransformation/.DS_Store +0 -0
- gbdtransformation/designs/bgid/__init__.py +0 -5
- gbdtransformation/designs/bgid/filters.py +0 -91
- gbdtransformation/designs/bgid/schema +0 -106
- gbdtransformation/designs/bgid/template.yml +0 -169
- wipo_gbd_transformation-1.1.58.dist-info/SOURCES_Stefans-Mac-Studio.local_Sep-18-063455-2024_Conflict.txt +0 -690
- {wipo_gbd_transformation-1.1.58.dist-info → wipo_gbd_transformation-1.1.60.dist-info}/LICENSE.md +0 -0
- {wipo_gbd_transformation-1.1.58.dist-info → wipo_gbd_transformation-1.1.60.dist-info}/entry_points.txt +0 -0
- {wipo_gbd_transformation-1.1.58.dist-info → wipo_gbd_transformation-1.1.60.dist-info}/top_level.txt +0 -0
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
{% from 'navigation.tmpl' import match %}
|
|
2
|
-
|
|
3
|
-
{% call(header) match('DesignTransactionBody.TransactionContentDetails', Transaction) %}
|
|
4
|
-
|
|
5
|
-
{% call(design) match('TransactionData.DesignDetails.Design', header) %}
|
|
6
|
-
{% set design_count = design | get_designs_count(header) %}
|
|
7
|
-
{% set design_pos = design | get_designs_pos(header) %}
|
|
8
|
-
{% set kind = design | translate_kind(header) %}
|
|
9
|
-
type: 'DESIGN'
|
|
10
|
-
subtype: 'OPEN'
|
|
11
|
-
designGrouping: 'MULTIPLE'
|
|
12
|
-
designsCount: {{ design_count }}
|
|
13
|
-
|
|
14
|
-
kind:
|
|
15
|
-
- {{kind}}
|
|
16
|
-
{{ design }}
|
|
17
|
-
registrationOfficeCode: {{ design.RegistrationOfficeCode}}
|
|
18
|
-
designatedCountries:
|
|
19
|
-
- BG
|
|
20
|
-
reference:
|
|
21
|
-
{% if header | is_international %}
|
|
22
|
-
registration:
|
|
23
|
-
- number: {{ design.ApplicationNumber | get_ir_refnum }}
|
|
24
|
-
office: WO
|
|
25
|
-
{% endif %}
|
|
26
|
-
{% if not kind == 'Industrial Design' %}
|
|
27
|
-
registration:
|
|
28
|
-
- number: {{ design.RegistrationNumber }}
|
|
29
|
-
{% endif %}
|
|
30
|
-
|
|
31
|
-
{% set idstatus = design | translate_status %}
|
|
32
|
-
{% set appdate = design.ApplicationDate | get_appdate(design.ApplicationNumber) %}
|
|
33
|
-
|
|
34
|
-
st13: {{ design.ApplicationNumber | parseForSt13(design) | st13(design.RegistrationOfficeCode, design_pos, appdate=appdate) }}
|
|
35
|
-
|
|
36
|
-
applicationNumber: {{ design.ApplicationNumber }}
|
|
37
|
-
applicationDate: {{ design.ApplicationDate }}
|
|
38
|
-
registrationNumber: {{ design.RegistrationNumber }}
|
|
39
|
-
registrationDate: {{ design.RegistrationDate }}
|
|
40
|
-
publicationDate: {{ design.PublicationDate }}
|
|
41
|
-
expiryDate: {{ design.ExpiryDate }}
|
|
42
|
-
|
|
43
|
-
applicationLanguageCode: BG
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
applicants:
|
|
47
|
-
{% call(applicant) match('ApplicantDetails.Applicant', design) %}
|
|
48
|
-
- identifier: {{ applicant.ApplicantIdentifier }}
|
|
49
|
-
{% call(details) match('ApplicantAddressBook.FormattedNameAddress.Name.FormattedName', applicant) %}
|
|
50
|
-
{% if details.OrganizationName %}
|
|
51
|
-
kind: 'organization'
|
|
52
|
-
fullName:
|
|
53
|
-
- languageCode: BG
|
|
54
|
-
text: {{ details.OrganizationName }}
|
|
55
|
-
{% else %}
|
|
56
|
-
kind: 'person'
|
|
57
|
-
fullName:
|
|
58
|
-
- languageCode: BG
|
|
59
|
-
text: {{ details | format_name }}
|
|
60
|
-
firstName:
|
|
61
|
-
- languageCode: BG
|
|
62
|
-
text: {{ details.FirstName}}
|
|
63
|
-
lastName:
|
|
64
|
-
- languageCode: BG
|
|
65
|
-
text: {{ details.LastName}}
|
|
66
|
-
middleName:
|
|
67
|
-
- languageCode: BG
|
|
68
|
-
text: {{ details.MiddleName}}
|
|
69
|
-
{% endif %}
|
|
70
|
-
{% endcall %}
|
|
71
|
-
{% call(address) match('ApplicantAddressBook.FormattedNameAddress.Address', applicant) %}
|
|
72
|
-
fullAddress:
|
|
73
|
-
- languageCode: BG
|
|
74
|
-
text: {{ address.FormattedAddress | format_address }}
|
|
75
|
-
addressLines: {{ address.FormattedAddress.AddressStreet }}
|
|
76
|
-
cityName: {{ address.FormattedAddress.AddressCity }}
|
|
77
|
-
geographicRegionName: {{ address.FormattedAddress.AddressCounty }}
|
|
78
|
-
postalCode: {{ address.FormattedAddress.AddressPostcode }}
|
|
79
|
-
countryCode: {{ address.AddressCountryCode }}
|
|
80
|
-
{% endcall %}
|
|
81
|
-
{% endcall %}
|
|
82
|
-
|
|
83
|
-
representatives:
|
|
84
|
-
{% call(rep) match('RepresentativeDetails.Representative', design) %}
|
|
85
|
-
- identifier: {{ rep.RepresentativeIdentifier }}
|
|
86
|
-
{% call(details) match('RepresentativeAddressBook.FormattedNameAddress.Name.FormattedName', rep) %}
|
|
87
|
-
kind: {{ rep.RepresentativeLegalEntity}}
|
|
88
|
-
{% if details.OrganizationName %}
|
|
89
|
-
fullName:
|
|
90
|
-
- languageCode: BG
|
|
91
|
-
text: {{ details.OrganizationName }}
|
|
92
|
-
{% else %}
|
|
93
|
-
fullName:
|
|
94
|
-
- languageCode: BG
|
|
95
|
-
text: {{ details | format_name }}
|
|
96
|
-
firstName:
|
|
97
|
-
- languageCode: BG
|
|
98
|
-
text: {{ details.FirstName}}
|
|
99
|
-
lastName:
|
|
100
|
-
- languageCode: BG
|
|
101
|
-
text: {{ details.LastName}}
|
|
102
|
-
middleName:
|
|
103
|
-
- languageCode: BG
|
|
104
|
-
text: {{ details.MiddleName}}
|
|
105
|
-
{% endif %}
|
|
106
|
-
{% endcall %}
|
|
107
|
-
{% call(address) match('RepresentativeAddressBook.FormattedNameAddress.Address', rep) %}
|
|
108
|
-
fullAddress:
|
|
109
|
-
- languageCode: BG
|
|
110
|
-
text: {{ address.FormattedAddress | format_address }}
|
|
111
|
-
addressLines: {{ address.FormattedAddress.AddressStreet }}
|
|
112
|
-
cityName: {{ address.FormattedAddress.AddressCity }}
|
|
113
|
-
geographicRegionName: {{ address.FormattedAddress.AddressCounty }}
|
|
114
|
-
postalCode: {{ address.FormattedAddress.AddressPostcode }}
|
|
115
|
-
countryCode: {{ address.AddressCountryCode }}
|
|
116
|
-
{% endcall %}
|
|
117
|
-
{% endcall %}
|
|
118
|
-
|
|
119
|
-
designs:
|
|
120
|
-
- designPos: {{ design_pos }}
|
|
121
|
-
officeStatus: {{ design.DesignCurrentStatusCode | parseStatus }}
|
|
122
|
-
gbdStatus: {{ idstatus }}
|
|
123
|
-
statusDate: {{ design.DesignCurrentStatusDate }}
|
|
124
|
-
productIndication:
|
|
125
|
-
{% call(indic) match('IndicationProduct', design.IndicationProductDetails) %}
|
|
126
|
-
- languageCode: {{ indic | guess_language(indic._languageCode, BG) }}
|
|
127
|
-
text: {{ indic }}
|
|
128
|
-
{% endcall %}
|
|
129
|
-
|
|
130
|
-
designImageDetails:
|
|
131
|
-
{% call(sheet) match('DesignRepresentationSheet', design.DesignRepresentationSheetDetails) %}
|
|
132
|
-
{% call(img) match('ViewDetails.View',sheet) %}
|
|
133
|
-
- name: {{ img.ViewURI }}
|
|
134
|
-
{% endcall %}
|
|
135
|
-
{% endcall %}
|
|
136
|
-
|
|
137
|
-
designer:
|
|
138
|
-
{% call(designer) match('DesignerDetails.Designer', design) %}
|
|
139
|
-
{% call(details) match('DesignerAddressBook.FormattedNameAddress.Name.FreeFormatName', designer) %}
|
|
140
|
-
- identifier: {{ designer.DesignerIdentifier }}
|
|
141
|
-
fullName:
|
|
142
|
-
{% call(nameline) match('FreeFormatNameDetails.FreeFormatNameLine', details) %}
|
|
143
|
-
- text: {{ nameline }}
|
|
144
|
-
languageCode: BG
|
|
145
|
-
{% endcall %}
|
|
146
|
-
{% endcall %}
|
|
147
|
-
{% endcall %}
|
|
148
|
-
|
|
149
|
-
productIndicationClasses:
|
|
150
|
-
{% call(indicationProducts) match('ClassDescriptionDetails', design) %}
|
|
151
|
-
- kind: "Locarno"
|
|
152
|
-
classes:
|
|
153
|
-
{% call(code) match('ClassDescription', indicationProducts) %}
|
|
154
|
-
- code: {{ code.ClassNumber }}
|
|
155
|
-
{% endcall %}
|
|
156
|
-
{% endcall %}
|
|
157
|
-
|
|
158
|
-
priorities:
|
|
159
|
-
{% call(priority) match('PriorityDetails.Priority', design) %}
|
|
160
|
-
- countryCode: {{ priority.PriorityCountryCode }}
|
|
161
|
-
number: {{ priority.PriorityNumber }}
|
|
162
|
-
date: {{ priority.PriorityDate }}
|
|
163
|
-
{% endcall %}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
{% endcall %}
|
|
169
|
-
{% endcall %}
|