Tag: OOXML

  • Microsoft Visio

    https://en.wikipedia.org/wiki/Microsoft_Visio VSDX = “OPC/XML drawing” – looks like my new preferred diagramming exchange format. It is at least OOXML-flavoured: http://Jochen.Hayek.name/wp/blog-en/2017/01/18/your-docx-or-your-xlsx-file-and-its-modified-timestamp/ Draw.io is able to import and export diagrams as VSDX.

  • draw.io: features, …

    https://about.draw.io/features/ https://about.draw.io/features/examples/: mind maps, network diagrams, … https://en.wikipedia.org/wiki/Category:Diagramming_software Draw.io is able to import and export diagrams as VSDX (Microsoft Visio’s OOXML-flavoured exchange format for drawings): http://jochen.hayek.name/wp/blog-en/2017/01/18/your-docx-or-your-xlsx-file-and-its-modified-timestamp/ On YouTube: https://www.youtube.com/watch?v=Z0D96ZikMkc https://www.youtube.com/watch?v=AZXPBf5UOrQ … Draw.io Online User Manual: https://support.draw.io/display/DO/Draw.io+Online+User+Manual https://support.draw.io/display/DO/Part+2%3A+Working+with+Diagrams: has a couple of short tutorials … Update 2018-04-17: I like the diagrams I created using draw.io. The intention…

  • your ODF file (“.odt”, “.ods”, …) and its “modified” timestamp

    https://en.wikibooks.org/wiki/XML_-_Managing_Data_Exchange/OpenOffice.org_%26_OpenDocument_Format https://github.com/JochenHayek/misc/blob/master/using_timestamps_in_filenames/create_snapshot_from_ODF.sh https://en.wikipedia.org/wiki/XMLStarlet Your “.odt” (or “.ods”) file is a ZIP file with a meta.xml inside: $ unzip -l YOUR.ods … … meta.xml … This is a convenient way to extract meta.xml to STDOUT: $ unzip -p YOUR.ods meta.xml … This is how to get the XML reformatted using xmlstartlet: $ unzip -p YOUR.ods meta.xml…

  • your OOXML file (“.docx”, “.xlsx”, “.vsdx”, …) and its “modified” timestamp

    https://en.wikipedia.org/wiki/Office_Open_XML_file_formats https://github.com/JochenHayek/misc/blob/master/using_timestamps_in_filenames/create_snapshot_from_OOXML.sh https://en.wikipedia.org/wiki/XMLStarlet VSDX does not get listed as an OOXML conform file format, but for this purpose (here) we can treat it like one. Your “.docx” (or “.xlsx”) file is a ZIP file with a docProps/core.xml inside: $ unzip -l YOUR.docx … … docProps/core.xml … This is a convenient way to extract docProps/core.xml to…