KiCost specs encoding fixes
- Now we decode HTML encoded sequences - Updated KiCost submodule to the one that fixes KitSpace encoding - Updated the references (now properly encoded)
This commit is contained in:
parent
6a1372c574
commit
6242a772c2
|
|
@ -13,6 +13,7 @@ import pprint
|
|||
import os.path as op
|
||||
import sys
|
||||
import logging
|
||||
import html
|
||||
from textwrap import wrap
|
||||
from base64 import b64decode
|
||||
from .columnlist import ColumnList
|
||||
|
|
@ -314,6 +315,8 @@ def create_meta(workbook, name, columns, parts, fmt_head, fmt_cols, max_w, renam
|
|||
if not text_l:
|
||||
continue
|
||||
fmt_kind = 0 if col_l in SPECS_GENERATED else 2
|
||||
text = html.unescape(text)
|
||||
logger.debugl(3, 'Spec ({},{}): `{}`'.format(r, c, text))
|
||||
worksheet.write_string(r+1, c, text, fmt_cols[fmt_kind][r % 2])
|
||||
if text_l > col_w[c]:
|
||||
if text_l > max_w:
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit f62c71482f799e77c99d74dc5fa86e8b2150ac2b
|
||||
Subproject commit 44e2c0d96b723dbf0f9cc8387e46d32844544630
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
References,case_package,case_package_si,packaging,pin_count,power_rating,reach_svhc_compliance,resistance,resistance_tolerance,rohs_status,size_length,size_thickness,size_width,temperature_coefficient,voltage_rating_dc
|
||||
R1 R2,0603,1608,"Cut Tape (CT), Tape & Reel (TR)",2,100 mW,No SVHC,1.00 kΩ,±5%,Compliant,1.60 mm,457 µm,787 µm,-200 ppm/°C to 200 ppm/°C,50.0 V
|
||||
R1 R2,0603,1608,"Cut Tape (CT), Tape & Reel (TR)",2,100 mW,No SVHC,1.00 kΩ,±5%,Compliant,1.60 mm,457 µm,787 µm,-200 ppm/°C to 200 ppm/°C,50.0 V
|
||||
|
|
|
|||
|
|
|
@ -1,2 +1,2 @@
|
|||
References,capacitance,capacitance_tolerance,case_package,dielectric_characteristic,lead_free_status,mounting_style,operating_temperature,rohs_status,voltage_rating_dc
|
||||
C1 C2,1.00 nF,±10%,0603,X7R,Lead Free,Surface Mount,-55.0 °C (min),Compliant,100 V
|
||||
C1 C2,1.00 nF,±10%,0603,X7R,Lead Free,Surface Mount,-55.0 °C (min),Compliant,100 V
|
||||
|
|
|
|||
|
Loading…
Reference in New Issue