Minor tweaks to #2275

* Cleaner handling of “updated” attribute
* Fixed handling of note attributes, which now get imported as custom
fields
* Clearer handling of ISO dates
This commit is contained in:
Jermolene 2016-02-16 16:35:28 +00:00
parent 7ea3ef7062
commit 9abe85f60b
1 changed files with 12 additions and 8 deletions

View File

@ -39,19 +39,19 @@ exports["application/enex+xml"] = function(text,fields) {
type: "text/html",
tags: [],
text: getTextContent(noteNode,"content"),
modified: getTextContent(noteNode,"created").replace("T","").replace("Z",""),
created: getTextContent(noteNode,"created").replace("T","").replace("Z","")
modified: convertDate(getTextContent(noteNode,"created")),
created: convertDate(getTextContent(noteNode,"created"))
};
$tw.utils.each(noteNode.querySelectorAll("tag"),function(tagNode) {
result.tags.push(tagNode.textContent);
});
// If there's an update date, set modifiy date accordingly
$tw.utils.each(noteNode.querySelectorAll("updated"),function(modifiedNode) {
result["modified"] = modifiedNode.textContent.replace("T","").replace("Z","") + "000" ;
});
$tw.utils.each(noteNode.querySelectorAll("note-attributes"),function(attrNode) {
// If there's an update date, set modifiy date accordingly
var update = getTextContent(noteNode,"updated");
if(update) {
result.modified = convertDate(update);
}
$tw.utils.each(noteNode.querySelectorAll("note-attributes>*"),function(attrNode) {
result[attrNode.tagName] = attrNode.textContent;
});
results.push(result);
@ -73,4 +73,8 @@ function getTextContent(node,selector) {
return (node.querySelector(selector) || {}).textContent;
}
function convertDate(isoDate) {
return (isoDate || "").replace("T","").replace("Z","") + "000"
}
})();