This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"settings": { | |
"analysis": { | |
"analyzer": { | |
"issn_analyser": { | |
"tokenizer": "whitespace", | |
"filter": [ | |
"lowercase", | |
"trim" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo ./shell.sh mapserver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .htaccess | |
Allow from hostname.dyndns.com | |
# This is not working |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function(doc) { | |
if(doc.namen.length > 0) { | |
for(var idx in doc.namen) { | |
if(doc.namen[idx].ereignisse.length > 0) { | |
for(var ide in doc.namen[idx].ereignisse){ | |
if(doc.namen[idx].ereignisse[ide].beobachtungen.length > 0){ | |
for(var idb in doc.namen[idx].ereignisse[ide].beobachtungen){ | |
if(doc.namen[idx].ereignisse[ide].beobachtungen[idb].beobachtungsklasse && doc.namen[idx].ereignisse[ide].beobachtungen[idb].ort) { | |
emit([doc.namen[idx].ereignisse[ide].beobachtungen[idb].beobachtungsklasse,doc.namen[idx].ereignisse[ide].beobachtungen[idb].ort],null); | |
} |