Revision of Clés d'identification from Fri, 2013-03-01 16:40


@CHARSET "UTF-8";

body {
color: #333;
font-family: Verdana, helvetica, arial, sans-serif;
font-size: 78%;
background: #fff;
}

table.statisticsTable {
font-family: Verdana, helvetica, arial, sans-serif;
font-size: 78%;
}

#treecontrol a {
color: #333;
font-size: 85%;
}

#treecontrol a:hover {
color: #777;
}

.character {
color: #333;
}

.state {
color: #fe8a22;
}

.taxa {
color: #67bb1b;
font-style: italic;
}

.statesAndTaxa {
margin-left: 100px;
}

.stateImageURL {
visibility: hidden;
}

a.stateImageLink {
color: #333;
cursor: pointer;
}

a {
color: #67bb1b;
font-style: italic;
}

img.stateImageInLine {
width: 400px;
cursor: pointer;
}

#screenshot {
position: absolute;
border: 1px solid #ccc;
background: #333;
padding: 5px;
display: none;
color: #fff;
}

.paire {
background: #e5e5e5;
}

/*------------------------------------*\
IPHONE
\*------------------------------------*/
@media screen and (max-device-width: 480px) {
/*--- iPhone only CSS here ---*/
body {
-webkit-text-size-adjust: none;
font-family: Helvetica, Arial, Verdana, sans-serif;
margin: 0 0 0 10px;
padding: 0;
-webkit-user-select: none;
-webkit-text-size-adjust: none;
-webkit-text-size-adjust: none;
}
.statesAndTaxa {
margin-left: 0px;
}
img.stateImageInLine {
width: 200px;
}
div {
clear: both !important;
display: block !important;
width: 100% !important;
float: none !important;
margin: 0 !important;
padding: 0 !important;
}
.nextNodeButton {
float: right;
}
}

this.screenshotPreview = function() {
xOffset = -10;
yOffset = -50;
$("a.screenshot").hover(
function(e) {
this.t = this.title;
this.title = "";
var c = (this.t != "") ? "
" + this.t : "";
$("body").append(
"

url preview"
+ c + "

");
$("#screenshot").css("top", (e.pageY - xOffset) + "px").css("left",
(e.pageX + yOffset) + "px").fadeIn("fast");
}, function() {
this.title = this.t;
$("#screenshot").remove();
});
$("a.screenshot").mousemove(function(e) {
$("#screenshot").css("top", (e.pageY - xOffset) + "px").css("left", (e.pageX + yOffset) + "px");
});
};
$(document).ready(function() {
screenshotPreview();
});
function newStateImagesWindow(viewNodeID) {
var viewNode = $('#viewNode' + viewNodeID);
var character = viewNode.find('span.character').html();
var newPage = 'body{ color:#111; font-family: Verdana, helvetica, arial, sans-serif; font-size: 78%; background: #fff;}table { border-collapse:collapse; width:90%;}th, td { border:1px solid #ddd; width:20%;}td { text-align:center;}caption { font-weight:bold}

'
+ character + '

';
newPage += '

';
for ( var i = 0; i < viewNode.find('span.state').size(); i++) {
var state = viewNode.find('span.state');
var stateID = state.id.split('_')[1];
var stateContent = state.innerHTML;
var splitArray = stateContent.split(';');
var stateImageURL = $('#stateImageURL_' + stateID);
var stateImageURLContent = stateImageURL.html();
stateContent = splitArray[splitArray.length - 1];
newPage += '

';
var imgTag = 'No image';
if (stateImageURLContent.length > 0 && stateImageURLContent.indexOf('http://') == 0) {
imgTag = '';
}
newPage += '

';
newPage += '

';
}
newPage += '

state image
' + stateContent + ' ' + imgTag + '

';
newPage += '';
var j = window.open('', 'State Illustrations', 'toolbar=0, width=800px, height=600px');
j.document.write(newPage);
j.document.close();
}

function newStateImagesWindowTree(characterName,characterStates,statesURLs){
var newPage = 'body{ color:#111; font-family: Verdana, helvetica, arial, sans-serif; font-size: 78%; background: #fff;}table { border-collapse:collapse; width:90%;}th, td { border:1px solid #ddd; width:20%;}td { text-align:center;}caption { font-weight:bold}

'
+ characterName + '

';
newPage += '

';

for(var i = 0 ; i < characterStates.length ; i++ ){
var state = characterStates;
var stateImageURL = statesURLs;
newPage += '

';
var imgTag = 'No image';
if(stateImageURL.length > 0 && stateImageURL.indexOf('http://') == 0){
imgTag = '';
}
newPage += '

';
newPage += '

';
}
newPage += '

state image
' + state + ' ' + imgTag + '

';
newPage += '';
var j = window.open('', 'State Illustrations', 'toolbar=0, width=800px, height=600px');
j.document.write(newPage);
j.document.close();
}

function newSingleStateImageWindow(imageURL) {
var newPage = '';
var j = window.open('', 'State Illustration', 'toolbar=0');
j.document.write(newPage);
j.document.close();
}

function goToViewNode(viewNodeID) {
viewNodeHistory.push(viewNodeID);
toggleViewNode(viewNodeID);
displayViewNodeStateImages(viewNodeID);
}

function goToPreviousViewNode() {
if (viewNodeHistory.length <= 1) {
toggleViewNode(1);
} else {
viewNodeHistory.pop();
var previousViewNodeID = viewNodeHistory.pop();
goToViewNode(previousViewNodeID);
}
}

function goToFirstViewNode() {
viewNodeHistory = [];
goToViewNode(1);
displayViewNodeStateImages(1);
}

function toggleViewNode(viewNodeID) {
$('.viewNode').hide();
$('#viewNode' + viewNodeID).show();
return false;
}

function displayViewNodeStateImages(viewNodeID) {
for ( var i = 0; i < $('#viewNode' + viewNodeID).children(".stateImageURLandContainer").size(); i++) {
var siuc = $($('#viewNode' + viewNodeID).children(".stateImageURLandContainer"));
var imageContainer = siuc.find(".stateImageContainer");
var imageURL = jQuery.trim(siuc.find('.stateImageURL').text());

if (imageURL != null && imageURL.length > 0 && siuc.find(".stateImageInLine").size() == 0) {
imageContainer.append('')
}
}
}

function initViewNodes() {
$('#keyWait').remove();
$('#keyBody').css('visibility', 'visible');
goToFirstViewNode();

}

function initTree() {
$('#tree').treeview({
collapsed : true, unique : false, control : "#treecontrol", persist : 'location'
});
}

var viewNodeHistory = [];


Reconnaissance des Dombeya des Mascareignes, Created using www.identificationKey.fr

Options:
sddURL=http://www.identificationkey.fr/sddUpload/2ef2aec0aadd07812d353596dfd255...
format=html
representation=tree
fewStatesCharacterFirst=false
mergeCharacterStatesIfSameDiscimination=false
pruning=false
verbosity=h
scoreMethod=xper
weightContext=
weightType=global

parseDuration= 0.918s
keyCreationDuration= 0.205s

  • 1) Type d'Inflorescence
  •  1.1) Cyme bipare (items=8)
    • 2) Port
    •  2.1) Arbre (items=4)
      • 3) Distribution dans les Mascareignes
      •  3.1) La Réunion (items=2)
        • 4) Genre
        •  4.1) Ruizia -> Ruiza cordata
        •  4.2) Dombeya -> Dombeya populnea
      •  3.2) Maurice -> Dombeya mauritiana
      •  3.3) Rodrigues -> Dombeya rodriguesiana
    •  2.2) Arbuste (items=2)
      • 3) Genre
      •  3.1) Dombeya -> Dombeya sevathianii
      •  3.2) Astiria -> Astiria rosea
    •  2.3) Arbruisseau (items=2)
      • 3) Formation végétale (type de forêt)
      •  3.1) Forêt humide de moyenne altitude -> Dombeya ferruginea subsp. ferruginea
      •  3.2) Forêt semi-sèche de moyenne altitude -> Dombeya ferruginea subsp. borbonica
  •  1.2) Cyme ombelliforme (items=10)
    • 2) Taille Adulte
    •  2.1) [0-8m] (items=6)
      • 3) Pilosité des stipules
      •  3.1) Glabre (items=3)
        • 4) Extrémité de l'épicalice acuminée
        •  4.1) Oui -> Dombeya delislei
        •  4.2) Non (items=2)
          • 5) Orientation des fleurs
          •  5.1) Fleurs dressées -> Dombeya elegans var. virescens
          •  5.2) Fleurs tombantes -> Dombeya elegans var. elegans
      •  3.2) Pubescent (items=3)
        • 4) Angle de l'extrémité des bractées de l'épicalice (ou calicule)
        •  4.1) Aigu (items=3)
          • 5) Extrémité de la feuille présentant 2, 3 ou 5 pointes
          •  5.1) Oui -> Dombeya blattiolens
          •  5.2) Non (items=3)
            • 6) Angle de l'extrémité de la feuille
            •  6.1) Obtus -> Dombeya ficulnea
            •  6.2) Aigu (items=3)
              • 7) Extrémité de l'épicalice acuminée
              •  7.1) Oui (items=2)
                • 8) Stipule acuminé
                •  8.1) Oui -> Dombeya blattiolens
                •  8.2) Non -> Dombeya punctata
              •  7.2) Non -> Dombeya ficulnea
        •  4.2) Obtus -> Dombeya ficulnea
    •  2.2) [8-12m] (items=3)
      • 3) Extrémité de la feuille présentant 2, 3 ou 5 pointes
      •  3.1) Oui (items=2)
        • 4) Stipule acuminé
        •  4.1) Oui -> Dombeya ciliata
        •  4.2) Non -> Dombeya reclinata
      •  3.2) Non (items=3)
        • 4) Angle de l'extrémité de la feuille
        •  4.1) Obtus (items=2)
          • 5) Diamètre du fruit
          •  5.1) [4-6mm] -> Dombeya ficulnea
          •  5.2) [9-11mm] -> Dombeya reclinata
        •  4.2) Aigu (items=3)
          • 5) Stipule acuminé
          •  5.1) Oui -> Dombeya ciliata
          •  5.2) Non (items=2)
            • 6) Diamètre du fruit
            •  6.1) [4-6mm] -> Dombeya ficulnea
            •  6.2) [9-11mm] -> Dombeya reclinata
    •  2.3) [12-21m] (items=2)
      • 3) Pilosité des stipules
      •  3.1) Glabre -> Dombeya pilosa
      •  3.2) Pubescent (items=2)
        • 4) Forme générale des bractées de l'épicalice
        •  4.1) Linéaire -> Dombeya umbellata
        •  4.2) Ovale -> Dombeya pilosa
  •  1.3) Cyme bipare scorpioïde (items=2)
    • 2) Couleur des pétales
    •  2.1) Rose -> Dombeya acutangula subsp. rosea
    •  2.2) Blanc -> Dombeya acutangula subsp. acutangula
  •  1.4) Fleur solitaire (items=4)
    • 2) Couleur du feuillage
    •  2.1) Vert franc -> Trochetia granulata
    •  2.2) Vert rougeâtre -> Trochetia blackburniana
    •  2.3) vert grisâtre (items=2)
      • 3) Formation végétale (type de forêt)
      •  3.1) Forêt semi-sèche de basse altitude -> Trochetia boutoniana
      •  3.2) Forêt semi-sèche de moyenne altitude -> Trochetia uniflora
  •  1.5) Cyme triflore (items=2)
    • 2) Présence d'un style visible
    •  2.1) Oui -> Trochetia triflora
    •  2.2) Non (stigmate sessile ou absent) -> Trochetia parviflora
Scratchpads developed and conceived by (alphabetical): Ed Baker, Katherine Bouton Alice Heaton Dimitris Koureas, Laurence Livermore, Dave Roberts, Simon Rycroft, Ben Scott, Vince Smith