From 3005e0005e6a41468bb14d7d348b2eb5736ca8f2 Mon Sep 17 00:00:00 2001 From: Markus Demleitner Date: Wed, 13 May 2026 10:38:16 +0200 Subject: [PATCH 1/3] Adding experimental support for the new docrepo. --- MANIFEST.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..b8c5c6c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,12 @@ +# This file gives (suggestions for) the links from the landing page in +# the format ;;. +# sumission.py will fill in the keys html-doc and pdf-doc, and you +# should have a very good reason to change that. You can add additional +# entries, for instance for schema files and the like. +# at this point can be document and schema. +# For now, no values may include semicolons; if you think you have to +# include curly braces, escape them from python str.format. +html;document;{html-doc} +pdf;document;{pdf-doc} +schema;schema;VOTable.xsd +Example: TIMESYS;example;timesys_example.vot From e4b974dcf01226d3f20ae2be10bff8f82fabef3d Mon Sep 17 00:00:00 2001 From: Mark Taylor Date: Tue, 3 Feb 2026 11:24:27 +0000 Subject: [PATCH 2/3] Provide an example VOTable with non-ASCII content This is not used as part of the document build, but it may be useful for implementors testing VOTable 1.6 I/O implementations. --- Makefile | 3 ++ unicode-example.vot | 77 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 unicode-example.vot diff --git a/Makefile b/Makefile index 9085ff8..53580d9 100644 --- a/Makefile +++ b/Makefile @@ -79,3 +79,6 @@ test: @$(STILTS) xsdvalidate \ schemaloc="http://www.ivoa.net/xml/VOTable/v1.3=VOTable.xsd" \ stc_example2.vot + @$(STILTS) xsdvalidate \ + schemaloc="http://www.ivoa.net/xml/VOTable/v1.3=VOTable.xsd" \ + unicode-example.vot diff --git a/unicode-example.vot b/unicode-example.vot new file mode 100644 index 0000000..e8639e0 --- /dev/null +++ b/unicode-example.vot @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AAlphaAlpha.....A123456789a123456789AAlphaAlphaA1234a12341
BΒηταΒητα..Βητα..beta......BΒηταΒητα.Βητα.beta.2
GΓΓꙮ.😀Γꙮ😀 ABCDEFGHIJΓΓαμμαΓꙮ...Γꙮ...ABCDE3
+ + + + + + + + +
+
+
From 5e0a93fda960f2003f854a5935a9b3e6c560e62c Mon Sep 17 00:00:00 2001 From: Mark Taylor Date: Wed, 13 May 2026 12:23:45 +0100 Subject: [PATCH 3/3] Add unicode-test.vot to manifest --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index b8c5c6c..12b982a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -10,3 +10,4 @@ html;document;{html-doc} pdf;document;{pdf-doc} schema;schema;VOTable.xsd Example: TIMESYS;example;timesys_example.vot +Example: Unicode;example;unicode-example.vot