Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file gives (suggestions for) the links from the landing page in
# the format <anchor text>;<doc type>;<file name>.
# 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.
# <doc type> 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
Example: Unicode;example;unicode-example.vot
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
77 changes: 77 additions & 0 deletions unicode-example.vot
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version='1.0' encoding='UTF-8'?>

<!-- This is a test table including diverse char and unicodeChar
! FIELDS and PARAMs. It is intended for help in testing
! VOTable 1.6-compliant processing of such content - if your
! VOTable I/O can round-trip this table and retrieve the original
! content, it's a good sign that it's doing the right things.
!-->

<VOTABLE version="1.6" xmlns="http://www.ivoa.net/xml/VOTable/v1.3">
<RESOURCE>
<TABLE>
<INFO name="misc" value="Ωμεγα &#xA66E; &#x1F600;"/>
<PARAM datatype="char" arraysize="6" name="soup1" value="oxtail" width="6"/>
<PARAM datatype="char" arraysize="8" name="soup2" value="Борщ" width="4"/>
<PARAM datatype="char" arraysize="16x*" name="philosophers"
value="孔子 ΣωκρατηςWittgenstein "/>
<FIELD datatype="char" name="chr1"/>
<FIELD datatype="char" arraysize="*" name="txt"/>
<FIELD datatype="char" arraysize="10" name="word10"/>
<FIELD datatype="char" arraysize="10x2" name="words"/>
<FIELD datatype="unicodeChar" name="uchr1"/>
<FIELD datatype="unicodeChar" arraysize="*" name="utxt"/>
<FIELD datatype="unicodeChar" arraysize="5" name="uword10"/>
<FIELD datatype="unicodeChar" arraysize="5x2" name="uwords"/>
<FIELD datatype="int" name="ialph"/>
<DATA>
<TABLEDATA>
<TR>
<TD>A</TD>
<TD>Alpha</TD>
<TD>Alpha.....</TD>
<TD>A123456789a123456789</TD>
<TD>A</TD>
<TD>Alpha</TD>
<TD>Alpha</TD>
<TD>A1234a1234</TD>
<TD>1</TD>
</TR>
<TR>
<TD>B</TD>
<TD>Βητα</TD>
<TD>Βητα..</TD>
<TD>Βητα..beta......</TD>
<TD>B</TD>
<TD>Βητα</TD>
<TD>Βητα.</TD>
<TD>Βητα.beta.</TD>
<TD>2</TD>
</TR>
<TR>
<TD>G</TD>
<TD>Γ</TD>
<TD>&#x393;&#xA66E;.&#x1F600;</TD>
<TD>&#x393;&#xA66E;&#x1F600; ABCDEFGHIJ</TD>
<TD>Γ</TD>
<TD>Γαμμα</TD>
<TD>&#x393;&#xA66E;...</TD>
<TD>&#x393;&#xA66E;...ABCDE</TD>
<TD>3</TD>
</TR>
<TR>
<TD/>
<TD/>
<TD/>
<TD/>
<TD/>
<TD/>
<TD/>
<TD/>
<TD/>
</TR>
</TABLEDATA>
</DATA>
</TABLE>
</RESOURCE>
</VOTABLE>
Loading