This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Javascript Phylogeny Viewer</title> | |
<style type="text/css" title="text/css"> | |
@import url("/style.css?20120730"); | |
</style> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<script type="text/javascript" src="http://blog.accursedware.com/jquery-svgpan/jquery-svgpan.js"></script> |
This file contains hidden or 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
[ | |
{ | |
"tnuuuid": "2236C72B-206D-405B-AFAC-EBA246EC8AE5", | |
"OriginalReferenceUUID": "BC94AF66-4059-4CCA-81D7-FEC49B067B77", | |
"protonymuuid": "288E04E0-BA61-471D-BA62-47C10CDDC15C", | |
"label": "Belonoperca Fowler & Bean 1930", | |
"value": "Belonoperca Fowler & Bean 1930", | |
"lsid": "urn:lsid:zoobank.org:act:288E04E0-BA61-471D-BA62-47C10CDDC15C", | |
"parentname": "", | |
"namestring": "Belonoperca", |
This file contains hidden or 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
digraph { | |
1758 -> 1930 -> 1998 -> 2004; | |
/* publications */ | |
"BC94AF66-4059-4CCA-81D7-FEC49B067B77" [shape="box",label="The fishes of the families Amiidae, Chandidae, Duleidae, and Serranidae\nBC94AF66-4059-4CCA-81D7-FEC49B067B77\nhttp://biostor.org/reference/105997"]; | |
"F8ECE6CE-E77F-4768-A563-62E416592874" [shape="box",label="Belonoperca pylei, a new species of seabass...\nF8ECE6CE-E77F-4768-A563-62E416592874\nDOI:10.1007/BF02725185"]; | |
/* 1930 */ |
This file contains hidden or 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
curl http://admin:password@localhost:5984/_replicate -H 'Content-Type: application/json' -d '{ "source": "afd", "target": "https://admin:[email protected]/afd" , "proxy":"http://wwwcache.gla.ac.uk:8080"}' |
This file contains hidden or 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
curl http://admin:password@localhost:5984/_replicate -H 'Content-Type: application/json' -d '{ "source": "afd", "target": "https://admin:[email protected]/afd" , "proxy":"http://wwwcache.gla.ac.uk:8080"}' | |
replace "admin" and "password" by username and password |
This file contains hidden or 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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Compiled Object files |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
{ | |
"_id": "_design/lookup", | |
"_rev": "2-2763d098bce604230bfc247ca06cba05", | |
"language": "javascript", | |
"indexes": { | |
"all": { | |
"index": "function(doc) {\n if (doc.title)\n {\n index(\"title\", doc.title, {\"store\": \"yes\"});\n }\n }" | |
} | |
} | |
} |
This file contains hidden or 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
To ensure local CouchDB database is externally accessible first go to the configuration page | |
http://localhost:5984/_utils/config.html | |
and change bind_address (httpd section) from 127.0.0.1 to 0.0.0.0 then restart | |
CouchDB. | |
To confirm, use command | |
lsof -i -n -P | grep LISTEN |
This file contains hidden or 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
$html = mb_convert_encoding($html, 'UTF-8', 'HTML-ENTITIES'); |