Commit 7b1c548d3757bc106af9887758f2436dbd327561
1 parent
a478e892
Exists in
master
and in
72 other branches
Add TT/catalog formats specifications (#6912)
Showing
1 changed file
with
11 additions
and
0 deletions
Show diff stats
js/app/views/DownloadUI.js
... | ... | @@ -826,6 +826,17 @@ Ext.define('amdaUI.DownloadUI', { |
826 | 826 | fieldLabel: 'Compression ', |
827 | 827 | name: 'compressionTT', |
828 | 828 | store: amdaModel.DownloadConfig.filecompressTTData |
829 | + }, | |
830 | + { | |
831 | + xtype: 'panel', | |
832 | + html: ['<div>', | |
833 | + '<p><b>=> Formats spécifications:</b></p>', | |
834 | + '<ul>', | |
835 | + '<li><b>Plain text:</b> ASCII tabular file. A comment line start with "#"</li>', | |
836 | + '<li><b>VOTable:</b> <a target="_blank" href="https://www.ivoa.net/documents/VOTable/20130315/PR-VOTable-1.3-20130315.html">Version 1.3</a></li>', | |
837 | + '<li><b>HPEvent:</b> <a target="_blank" href="https://spase-group.org/docs/conventions/HDMC-Event-List-Specification-v1.0.3.pdf">Version 1.0</a></li>', | |
838 | + '</ul>', | |
839 | + '</div>'].join("\n") | |
829 | 840 | } |
830 | 841 | ]} |
831 | 842 | ] | ... | ... |