Introduced text type to VC and improve test suite
Change-Id: Ic51f3de112af5ec8d35bbae3bd97e988dbdb1a47
diff --git a/dev/js/src/vc/array.js b/dev/js/src/vc/array.js
index 9c7bf4d..8a47a3d 100644
--- a/dev/js/src/vc/array.js
+++ b/dev/js/src/vc/array.js
@@ -2,19 +2,19 @@
return [
// layerInfo // stored
// tokenSource // stored
- ['author', 'string'], // text
+ ['author', 'text'], // text
// ['biblEditionStatement', 'string'], // stored
- ['corpusAuthor', 'string'], // text
+ ['corpusAuthor', 'text'], // text
// ['corpusEditor', 'string'], // stored
['corpusSigle', 'string'], // string
- ['corpusSubTitle', 'string'], // text
- ['corpusTitle', 'string'], // text
+ ['corpusSubTitle', 'text'] , // text
+ ['corpusTitle', 'text'], // text
['creationDate', 'date'], // int
- ['docAuthor', 'string'], // text
+ ['docAuthor', 'text'], // text
// ['docEditor', 'string'], // stored
['docSigle', 'string'], // string
- ['docSubTitle', 'string'], // text
- ['docTitle', 'string'], // text
+ ['docSubTitle', 'text'], // text
+ ['docTitle', 'text'], // text
// ['editor', 'string'], // stored
// ['fileEditionStatement', 'string'], // stored
['foundries', 'string'], // keywords
@@ -26,7 +26,7 @@
// ['publisher', 'string'], // stored
['pubPlace', 'string'], // string
// ['reference', 'string'], // stored
- ['subTitle', 'string'], // text
+ ['subTitle', 'text'], // text
['textClass', 'string'], // keyword
['textColumn', 'string'], // string
['textDomain', 'string'], // string
@@ -34,6 +34,6 @@
['textType', 'string'], // string
['textTypeArt', 'string'], // string
['textTypeRef', 'string'], // string
- ['title', 'string'] // text
+ ['title', 'text'] // text
]
});