It looks like you're using an Ad Blocker.
Please white-list or disable AboveTopSecret.com in your ad-blocking tool.
Thank you.
Some features of ATS will be disabled while you continue to use an ad-blocker.
originally posted by: javarome
a reply to: EvillerBob
...unless you want to allow storing multiple analysis of the same case, and even some "factual" data can differ/be challenged in different analysis. But, once again, this is just my two cents.
originally posted by: javarome
a reply to: EvillerBob
...some another allows to interpret the whole bitset differently (i.e. as volume+issue) instead of page number...
originally posted by: javarome
a reply to: ArMaP
I just added XML export. Not sure it is well formed, though.
The files are here.
$textdata will hold the string taken from the record file, after replacing specific characters:
$textdata = preg_replace('/[x00-x09x0Bx0Cx0E-x1F]/', ' ', $dbrecord->[$key]['data']);
Now wrap up everything else in a UTF8-happy format, as the XML is UTF8 encoded:
$textdata = utf8_encode($textdata);
$textdata now hold that string that is written out to XML.
u.xml:6: parser error : PCDATA invalid Char value 25
ntinent>SIEGE/ALEXANDER the GREATFLYING SHIELD BEAMS
^
u.xml:75: parser error : PCDATA invalid Char value 25
andWestern EuropeVERTICAL CLOUD-CGR GOES
^
u.xml:130: parser error : PCDATA invalid Char value 24
inent>Western EuropeMANY OBSFBL BOUNCES
^
u.xml:130: parser error : PCDATA invalid Char value 25
ent>Western EuropeMANY OBSFBL BOUNCES +
I think you'll need to strip out 0x8 (CAN) and 0x9 (EM) at least.
originally posted by: javarome
First, my apologies as the file you tested did not contain my fixes (was 3 days old).
I think you'll need to strip out 0x8 (CAN) and 0x9 (EM) at least.
Apparently x09 (tabulation) is not forbidden in XML. I updated the forbidden characters according to the XML Spec (but limited to the MS-DOS 0-FF range) and validated the first records of the new generated file (validating all records is too big) in an online validator.
Thanks for your feedback.
originally posted by: javarome
Hi there,
Is the latest XMl file any better?
By the way, I just added a simple record find capability.
originally posted by: javarome
Hi there,
Is the latest XMl file any better?