Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | merge with trunk |
---|---|
Timelines: | family | ancestors | descendants | both | wtf-8-experiment |
Files: | files | file ages | folders |
SHA1: |
a0f5e59e48c2ee205e7ae689f618901d |
User & Date: | chw 2020-02-11 05:59:15.990 |
Context
2020-02-14
| ||
17:04 | merge with trunk check-in: 1ffba5b697 user: chw tags: wtf-8-experiment | |
2020-02-11
| ||
05:59 | merge with trunk check-in: a0f5e59e48 user: chw tags: wtf-8-experiment | |
05:58 | add ooxml upstream changes check-in: 5c87ffa53c user: chw tags: trunk | |
2020-02-10
| ||
14:18 | merge with trunk check-in: 6b571b71c1 user: chw tags: wtf-8-experiment | |
Changes
Changes to assets/ooxml1/README.
︙ | ︙ | |||
35 36 37 38 39 40 41 | INSTALLING Simply extract the download ooxml-<version>.zip into your Tcl library path. Since ooxml is TEA-compatible you should be able to do | | | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | INSTALLING Simply extract the download ooxml-<version>.zip into your Tcl library path. Since ooxml is TEA-compatible you should be able to do ./configure make test make install REPORTING BUGS Please head to https://tcl.sowaswie.de/repos/fossil/ooxml/ticket and |
︙ | ︙ |
Changes to assets/ooxml1/license.terms.
1 2 3 4 5 | ooxml - ECMA-376 Office Open XML File Formats BSD-3 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | ooxml - ECMA-376 Office Open XML File Formats BSD-3 Copyright (C) 2018-2020 Alexander Schoepe, Bochum, DE, <alx.tcl@sowaswie.de> Copyright (C) 2019 Rolf Ade, DE, <rolf@pointsman.de> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this |
︙ | ︙ |
Changes to assets/ooxml1/ooxml.tcl.
1 2 3 4 | # # ooxml ECMA-376 Office Open XML File Formats # https://www.ecma-international.org/publications/standards/Ecma-376.htm # | | | 1 2 3 4 5 6 7 8 9 10 11 12 | # # ooxml ECMA-376 Office Open XML File Formats # https://www.ecma-international.org/publications/standards/Ecma-376.htm # # Copyright (C) 2018-2020 Alexander Schoepe, Bochum, DE, <schoepe@users.sourceforge.net> # Copyright (C) 2019 Rolf Ade, DE # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: # # 1. Redistributions of source code must retain the above copyright notice, this |
︙ | ︙ | |||
2708 2709 2710 2711 2712 2713 2714 | Tag_ScaleCrop { Text false } Tag_HeadingPairs { Tag_vt:vector size 2 baseType variant { Tag_vt:variant { Tag_vt:lpstr { Text [msgcat::mc Worksheets] } } Tag_vt:variant { | | | 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 | Tag_ScaleCrop { Text false } Tag_HeadingPairs { Tag_vt:vector size 2 baseType variant { Tag_vt:variant { Tag_vt:lpstr { Text [msgcat::mc Worksheets] } } Tag_vt:variant { Tag_vt:i4 { Text $obj(sheets) } } } } Tag_TitlesOfParts { Tag_vt:vector size $obj(sheets) baseType lpstr { for {set ws 1} {$ws <= $obj(sheets)} {incr ws} { Tag_vt:lpstr { |
︙ | ︙ |