(first of all, neo4j start for the original regesta neo4j)
Install gulp
as global and install locally the dependencies packages for this project
npm install -g gulp
npm install
get the COLLECTION regestae xml files from the server
Please check your settings.collections
for the url list and
settings.paths.collections
for the output
gulp harvest-collections
download the regestae xml files from the server
gulp harvest-regestae
parse the regesta files
gulp distill-regestae
cd histograph
node scripts/manage.js --task=import.fromJSON --src=/path/to/regestae-json/**/*.json
MATCH (n:person) WHERE n.name_search =~ '.*stadt.*//.*' REMOVE n:person SET n:location
MATCH (n:person) WHERE n.name_search =~ '.*stadt.*$' REMOVE n:person SET n:location;
MATCH (n:resource) WHERE not(has(n.full_search)) WITH n SET n.full_search = LOWER(n.name + ' ' + n.caption_de), n.title_search = LOWER(n.name);
MATCH (n:resource) SET n.full_search = n.full_search;