fix render richcontent

This commit is contained in:
Ezequiel-Vega 2022-02-22 16:37:45 -03:00
parent df26a52047
commit 03b70b789b
19 changed files with 373 additions and 320 deletions

View File

@ -38,7 +38,8 @@
"@wisemapping/web2d": "^0.4.0",
"jest": "^27.4.5",
"jquery": "3.6.0",
"lodash": "^4.17.21"
"lodash": "^4.17.21",
"xml-formatter": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",

View File

@ -1,3 +1,4 @@
import xmlFormatter from 'xml-formatter';
import { Mindmap } from '../..';
import INodeModel, { TopicShape } from '../model/INodeModel';
import RelationshipModel from '../model/RelationshipModel';
@ -106,8 +107,13 @@ class FreemindExporter extends Exporter {
const freeToXml = freemainMap.toXml();
const xmlToString = new XMLSerializer().serializeToString(freeToXml);
const formatXml = xmlFormatter(xmlToString, {
indentation: ' ',
collapseContent: true,
lineSeparator: '\n',
});
return Promise.resolve(xmlToString);
return Promise.resolve(formatXml);
}
private setTopicPropertiesToNode({ freemindNode, mindmapTopic, isRoot }: { freemindNode: FreeminNode; mindmapTopic: INodeModel; isRoot: boolean; }): void {
@ -175,7 +181,7 @@ class FreemindExporter extends Exporter {
const textSplit = text.split('\n');
let html = '<html><body>';
let html = '<html><head/><body>';
textSplit.forEach((line: string) => {
html += `<p>${line.trim()}</p>`;
@ -191,32 +197,29 @@ class FreemindExporter extends Exporter {
}
private addFeautreNode(freemindNode: FreeminNode, mindmapTopic: INodeModel): void {
const branches: Array<INodeModel> = mindmapTopic.getChildren();
const freemindIcon: Icon = new Icon();
const branches: Array<FeatureModel> = mindmapTopic.getFeatures();
branches
.filter((node: INodeModel) => node.getText())
.forEach((node: INodeModel) => {
node.getFeatures().forEach((feature: FeatureModel) => {
const type = feature.getType();
.forEach((feature: FeatureModel) => {
const type = feature.getType();
if (type === 'link') {
const link = feature as LinkModel;
freemindNode.setLink(link);
}
if (type === 'link') {
const link = feature as LinkModel;
freemindNode.setLink(link.getUrl());
}
if (type === 'note') {
const note = feature as NoteModel;
const richcontent: Richcontent = this.buildRichcontent(note.getText(), 'NOTE');
freemindNode.setArrowlinkOrCloudOrEdge(richcontent);
}
if (type === 'note') {
const note = feature as NoteModel;
const richcontent: Richcontent = this.buildRichcontent(note.getText(), 'NOTE');
freemindNode.setArrowlinkOrCloudOrEdge(richcontent);
}
if (type === 'icon') {
const icon = feature as IconModel;
freemindIcon.setBuiltin(icon.getIconType());
freemindNode.setArrowlinkOrCloudOrEdge(freemindIcon);
}
});
if (type === 'icon') {
const icon = feature as IconModel;
const freemindIcon: Icon = new Icon();
freemindIcon.setBuiltin(icon.getIconType());
freemindNode.setArrowlinkOrCloudOrEdge(freemindIcon);
}
});
}
@ -229,58 +232,51 @@ class FreemindExporter extends Exporter {
}
private addFontNode(freemindNode: FreeminNode, mindmapTopic: INodeModel): void {
const fontFamily: string = mindmapTopic.getFontFamily();
const fontSize: number = mindmapTopic.getFontSize();
const fontColor: string = mindmapTopic.getFontColor();
const fontWeigth: string | number | boolean = mindmapTopic.getFontWeight();
const fontStyle: string = mindmapTopic.getFontStyle();
if (fontStyle) {
if (fontFamily || fontSize || fontColor || fontWeigth || fontStyle) {
const font: Font = this.objectFactory.createFont();
const part: Array<string> = fontStyle.split(';', 6);
const countParts: number = part.length;
let fontNodeNeeded = false;
if (!fontStyle.endsWith(FreemindConstant.EMPTY_FONT_STYLE)) {
let idx = 0;
if (fontFamily) {
font.setName(fontFamily);
}
if (idx < countParts && part[idx].length !== 0) {
font.setName(part[idx]);
if (fontSize) {
const freeSize = FreemindExporter.wisweToFreeFontSize.get(fontSize);
if (freeSize) {
font.setSize(freeSize.toString());
fontNodeNeeded = true;
}
idx++;
}
if (idx < countParts && part[idx].length !== 0) {
const size: string = part[idx];
if (size) {
const wiseSize: number = parseInt(size, 10);
const freeSize: number = FreemindExporter.wisweToFreeFontSize.get(wiseSize);
if (fontColor) {
freemindNode.setColor(fontColor);
}
if (freeSize) {
font.setSize(freeSize.toString());
fontNodeNeeded = true;
}
}
}
idx++;
if (idx < countParts && part[idx].length !== 0) {
freemindNode.setColor(this.rgbToHex(part[idx]));
}
idx++;
if (idx < countParts && part[idx].length !== 0) {
if (fontWeigth) {
if (typeof fontWeigth === 'boolean') {
font.setBold(String(fontWeigth));
} else {
font.setBold(String(true));
fontNodeNeeded = true;
}
idx++;
fontNodeNeeded = true;
}
if (idx < countParts && part[idx].length !== 0) {
font.setItalic(String(true));
fontNodeNeeded = true;
}
if (fontStyle === 'italic') {
font.setItalic(String(true));
}
if (fontNodeNeeded) {
if (font.getSize() === null) {
font.setSize(FreemindExporter.wisweToFreeFontSize.get(8).toString());
}
freemindNode.setArrowlinkOrCloudOrEdge(font);
if (fontNodeNeeded) {
if (font.getSize()) {
font.setSize(FreemindExporter.wisweToFreeFontSize.get(8).toString());
}
freemindNode.setArrowlinkOrCloudOrEdge(font);
}
}
}

View File

@ -42,8 +42,11 @@ export default class Font {
toXml(document: Document): HTMLElement {
const fontElem = document.createElement('font');
fontElem.setAttribute('SIZE', this.SIZE);
if (this.SIZE) {
fontElem.setAttribute('SIZE', this.SIZE);
} else {
fontElem.setAttribute('SIZE', '12');
}
if (this.BOLD) fontElem.setAttribute('BOLD', this.BOLD);
if (this.ITALIC) fontElem.setAttribute('ITALIC', this.ITALIC);
if (this.NAME) fontElem.setAttribute('NAME', this.NAME);

View File

@ -29,7 +29,7 @@ export default {
ITALIC: 'italic',
EMPTY_FONT_STYLE: ',,,,,',
EMPTY_FONT_STYLE: ';;;;;',
EMPTY_NOTE: '',

View File

@ -39,6 +39,7 @@ export default class Map {
// Create main node
const mainNode: Node = this.node;
mainNode.setCentralTopic(true);
const mainNodeElem = mainNode.toXml(document);
mapElem.appendChild(mainNodeElem);
@ -53,6 +54,7 @@ export default class Map {
private nodeToXml(childNode: Choise, parentNode: HTMLElement, document: Document): HTMLElement {
if (childNode instanceof Node) {
childNode.setCentralTopic(false);
const childNodeXml = childNode.toXml(document);
parentNode.appendChild(childNodeXml);

View File

@ -41,6 +41,8 @@ class Node {
protected ENCRYPTED_CONTENT: string;
private centralTopic: boolean;
getArrowlinkOrCloudOrEdge(): Array<Arrowlink | Cloud | Edge | Font | Hook | Icon | Richcontent | Node> {
if (!this.arrowlinkOrCloudOrEdge) {
this.arrowlinkOrCloudOrEdge = new Array<Arrowlink | Cloud | Edge | Font | Hook | Icon | Richcontent | this>();
@ -112,6 +114,10 @@ class Node {
return this.ENCRYPTED_CONTENT;
}
getCentralTopic(): boolean {
return this.centralTopic;
}
setArrowlinkOrCloudOrEdge(value: Arrowlink | Cloud | Edge | Font | Hook | Icon | Richcontent | this): void {
this.getArrowlinkOrCloudOrEdge().push(value);
}
@ -132,7 +138,7 @@ class Node {
this.ID = value;
}
setLink(value): void {
setLink(value: string): void {
this.LINK = value;
}
@ -180,16 +186,43 @@ class Node {
this.ENCRYPTED_CONTENT = value;
}
setCentralTopic(value: boolean): void {
this.centralTopic = value;
}
toXml(document: Document): HTMLElement {
// Set node attributes
const nodeElem = document.createElement('node');
if (this.centralTopic) {
if (this.ID) nodeElem.setAttribute('ID', this.ID);
if (this.TEXT) nodeElem.setAttribute('TEXT', this.TEXT);
if (this.BACKGROUND_COLOR) nodeElem.setAttribute('BACKGROUND_COLOR', this.BACKGROUND_COLOR);
if (this.COLOR) nodeElem.setAttribute('COLOR', this.COLOR);
if (this.TEXT) {
nodeElem.setAttribute('TEXT', this.TEXT);
} else {
nodeElem.setAttribute('TEXT', '');
}
return nodeElem;
}
if (this.ID) nodeElem.setAttribute('ID', this.ID);
if (this.POSITION) nodeElem.setAttribute('POSITION', this.POSITION);
if (this.STYLE) nodeElem.setAttribute('STYLE', this.STYLE);
if (this.BACKGROUND_COLOR) nodeElem.setAttribute('BACKGROUND_COLOR', this.BACKGROUND_COLOR);
if (this.COLOR) nodeElem.setAttribute('COLOR', this.COLOR);
if (this.TEXT) nodeElem.setAttribute('TEXT', this.TEXT);
if (this.LINK) nodeElem.setAttribute('LINK', this.LINK);
if (this.FOLDED) nodeElem.setAttribute('FOLDED', this.FOLDED);
if (this.CREATED) nodeElem.setAttribute('CREATED', this.CREATED);
if (this.MODIFIED) nodeElem.setAttribute('MODIFIED', this.MODIFIED);
if (this.HGAP) nodeElem.setAttribute('HGAP', this.HGAP);
if (this.VGAP) nodeElem.setAttribute('VGAP', this.VGAP);
if (this.WCOORDS) nodeElem.setAttribute('WCOORDS', this.WCOORDS);
if (this.WORDER) nodeElem.setAttribute('WORDER', this.WORDER);
if (this.VSHIFT) nodeElem.setAttribute('VSHIFT', this.VSHIFT);
if (this.ENCRYPTED_CONTENT) nodeElem.setAttribute('ENCRYPTED_CONTENT', this.ENCRYPTED_CONTENT);
return nodeElem;
}

View File

@ -26,7 +26,7 @@ export default class Richcontent {
richcontentElem.setAttribute('TYPE', this.type);
if (this.html) {
const htmlElement: HTMLElement = document.createElement(this.html);
const htmlElement: DocumentFragment = document.createRange().createContextualFragment(this.html);
richcontentElem.appendChild(htmlElement);
}

View File

@ -1,51 +1,51 @@
<map version="1.0.1">
<node ID="ID_1" TEXT="SaberM&#225;s">
<node ID="ID_27" POSITION="right" STYLE="bubble" TEXT="Complementamos el trabajo de la escuela">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p>Todos los contenidos de los talleres est&#225;n relacionados con el curr&#237;culo de la ense&#241;anza b&#225;sica.</p>
<p>A diferencia de la pr&#225;ctica tradicional, pretendemos ahondar en el conocimiento partiendo de lo que realmente interesa al ni&#241;o o ni&#241;a,</p>
<p>ayud&#225;ndole a que encuentre respuesta a las preguntas que &#233;l o ella se plantea.</p>
<p/>
<p>Por ese motivo, SaberM&#225;s proyecta estar al lado de los ni&#241;os que necesitan una motivaci&#243;n extra para entender la escuela y fluir en ella,</p>
<p>y tambi&#233;n al lado de aquellos a quienes la curiosidad y las ganas de saber les lleva m&#225;s all&#225;.</p>
</body>
</html>
</richcontent>
<node ID="ID_28" POSITION="right" TEXT="SaberM&#225;s trabaja con, desde y para la motivaci&#243;n"/>
<node ID="ID_32" POSITION="right" STYLE="fork" TEXT="Trabajamos en equipo en nuestros proyectos "/>
<node ID="ID_30" POSITION="right" STYLE="fork" TEXT="Cada uno va a su ritmo, y cada cual pone sus l&#237;mites"/>
<node ID="ID_31" POSITION="right" STYLE="fork" TEXT="Aprendemos todos de todos"/>
<node ID="ID_33" POSITION="right" STYLE="fork" TEXT="Valoramos lo que hemos aprendido"/>
</node>
<node ID="ID_3" POSITION="right" STYLE="fork" TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas "/>
<node ID="ID_4" POSITION="right" STYLE="fork" TEXT="Trabajo basado en la experimentaci&#243;n y en la investigaci&#243;n"/>
<node ID="ID_8" POSITION="left" STYLE="fork" TEXT="Alternativa a otras actividades de ocio"/>
<node ID="ID_37" POSITION="right" STYLE="fork" TEXT="Actividades centradas en el contexto cercano"/>
<node ID="ID_6" POSITION="left" STYLE="fork" TEXT="Duraci&#243;n limitada: 5-6 semanas"/>
<node ID="ID_5" POSITION="right" STYLE="fork" TEXT="Utilizaci&#243;n de medios de expresi&#243;n art&#237;stica, digitales y anal&#243;gicos"/>
<node ID="ID_9" POSITION="left" STYLE="fork" TEXT="Precio tambi&#233;n limitado: 100-120?"/>
<node ID="ID_23" POSITION="right" STYLE="fork" TEXT="Uso de la tecnolog&#237;a durante todo el proceso de aprendizaje"/>
<node ID="ID_7" POSITION="left" STYLE="fork" TEXT="Ni&#241;os y ni&#241;as que quieren saber m&#225;s"/>
<node ID="ID_22" POSITION="right" STYLE="fork" TEXT="Flexibilidad en el uso de las lenguas de trabajo (ingl&#233;s, castellano, esukara?)"/>
<node ID="ID_10" POSITION="left" STYLE="fork" TEXT="De 8 a 12 a&#241;os, sin separaci&#243;n por edades"/>
<node ID="ID_19" POSITION="left" STYLE="fork" TEXT="M&#225;ximo 10/1 por taller"/>
<node ID="ID_2" POSITION="right" STYLE="fork" TEXT="Talleres tem&#225;ticos">
<node ID="ID_1" TEXT="SaberMás">
<node ID="ID_5" POSITION="right" STYLE="fork" TEXT="Utilización de medios de expresión artística, digitales y analógicos"/>
<node ID="ID_9" POSITION="left" STYLE="fork" TEXT="Precio también limitado: 100-120?"/>
<node ID="ID_2" POSITION="right" STYLE="fork" TEXT="Talleres temáticos">
<node ID="ID_13" POSITION="right" STYLE="fork" TEXT="Naturaleza">
<node ID="ID_17" POSITION="right" STYLE="fork" TEXT="Animales, Plantas, Piedras"/>
</node>
<node ID="ID_21" POSITION="right" STYLE="fork" TEXT="Arqueolog&#237;a"/>
<node ID="ID_21" POSITION="right" STYLE="fork" TEXT="Arqueología"/>
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Energía"/>
<node ID="ID_16" POSITION="right" STYLE="fork" TEXT="Astronomía"/>
<node ID="ID_20" POSITION="right" STYLE="fork" TEXT="Arquitectura"/>
<node ID="ID_11" POSITION="right" STYLE="fork" TEXT="Cocina"/>
<node ID="ID_24" POSITION="right" STYLE="fork" TEXT="Poesía"/>
<node ID="ID_25" POSITION="right" STYLE="fork" TEXT="Culturas Antiguas">
<node ID="ID_26" POSITION="right" STYLE="fork" TEXT="Egipto, Grecia, China..."/>
</node>
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Energ&#237;a"/>
<node ID="ID_38" POSITION="right" STYLE="fork" TEXT="Paleontolog&#237;a"/>
<node ID="ID_16" POSITION="right" STYLE="fork" TEXT="Astronom&#237;a"/>
<node ID="ID_20" POSITION="right" STYLE="fork" TEXT="Arquitectura"/>
<node ID="ID_11" POSITION="right" STYLE="fork" TEXT="Cocina"/>
<node ID="ID_24" POSITION="right" STYLE="fork" TEXT="Poes&#237;a"/>
<node ID="ID_38" POSITION="right" STYLE="fork" TEXT="Paleontología"/>
</node>
<node ID="ID_6" POSITION="left" STYLE="fork" TEXT="Duración limitada: 5-6 semanas"/>
<node ID="ID_7" POSITION="left" STYLE="fork" TEXT="Niños y niñas que quieren saber más"/>
<node ID="ID_8" POSITION="left" STYLE="fork" TEXT="Alternativa a otras actividades de ocio"/>
<node ID="ID_23" POSITION="right" STYLE="fork" TEXT="Uso de la tecnología durante todo el proceso de aprendizaje"/>
<node ID="ID_3" POSITION="right" STYLE="fork" TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas "/>
<node ID="ID_4" POSITION="right" STYLE="fork" TEXT="Trabajo basado en la experimentación y en la investigación"/>
<node ID="ID_10" POSITION="left" STYLE="fork" TEXT="De 8 a 12 años, sin separación por edades"/>
<node ID="ID_19" POSITION="left" STYLE="fork" TEXT="Máximo 10/1 por taller"/>
<node ID="ID_37" POSITION="right" STYLE="fork" TEXT="Actividades centradas en el contexto cercano"/>
<node ID="ID_22" POSITION="right" STYLE="fork" TEXT="Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)"/>
<node ID="ID_27" POSITION="right" STYLE="bubble" TEXT="Complementamos el trabajo de la escuela">
<richcontent TYPE="NOTE">
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<p>Todos los contenidos de los talleres están relacionados con el currículo de la enseñanza básica.</p>
<p>A diferencia de la práctica tradicional, pretendemos ahondar en el conocimiento partiendo de lo que realmente interesa al niño o niña,</p>
<p>ayudándole a que encuentre respuesta a las preguntas que él o ella se plantea.</p>
<p></p>
<p>Por ese motivo, SaberMás proyecta estar al lado de los niños que necesitan una motivación extra para entender la escuela y fluir en ella,</p>
<p>y también al lado de aquellos a quienes la curiosidad y las ganas de saber les lleva más allá.</p>
</body>
</html>
</richcontent>
<node ID="ID_30" POSITION="right" STYLE="fork" TEXT="Cada uno va a su ritmo, y cada cual pone sus límites"/>
<node ID="ID_31" POSITION="right" STYLE="fork" TEXT="Aprendemos todos de todos"/>
<node ID="ID_33" POSITION="right" STYLE="fork" TEXT="Valoramos lo que hemos aprendido"/>
<node ID="ID_28" POSITION="right" TEXT="SaberMás trabaja con, desde y para la motivación"/>
<node ID="ID_32" POSITION="right" STYLE="fork" TEXT="Trabajamos en equipo en nuestros proyectos "/>
</node>
</node>
</map>

View File

@ -4,8 +4,8 @@
<node ID="ID_5" POSITION="right" STYLE="bubble" TEXT="Which new measures">
<font SIZE="18"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<p>Identifying new measures or investments that should be implemented.</p>
</body>
@ -14,8 +14,8 @@
<node BACKGROUND_COLOR="#feffff" ID="ID_56" POSITION="right" STYLE="bubble" TEXT="Landscape of measures">
<node ID="ID_45" POSITION="right" STYLE="fork" TEXT="Diversity index of innovation support instruments in the region">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of different innovations policy instruments existing in the region as a share of a total number representing a full typology of instruments</p>
</body>
@ -33,8 +33,8 @@
<node ID="ID_6" POSITION="left" STYLE="bubble" TEXT="How to design &amp; implement measures">
<font SIZE="18"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Understanding how to design the details of a particular measure and how to implement them.</p>
</body>
@ -46,8 +46,8 @@
<node ID="ID_359" POSITION="left" STYLE="fork" TEXT="Return on investment to innovation">
<node ID="ID_360" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Firm's turnover from (new to firm)</p>
<p>product innovation (as a pecentage of total turnover)</p>
@ -58,8 +58,8 @@
</node>
<node ID="ID_361" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Increase in the probability to innovate linked to ICT use</p>
<p>(in product innovation, process innovation, organisational innovaton, marketing innovation)</p>
@ -69,8 +69,8 @@
</node>
<node ID="ID_362" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Scientific articles by type of collaboration (per capita)</p>
<p>(international co-authoriship, domestic co-authoriship, single author)</p>
@ -81,8 +81,8 @@
</node>
<node ID="ID_363" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Increase in a share of expenditures on technological</p>
<p>innovations in the total amount of regional firms&#8217; expenditures, %</p>
@ -99,8 +99,8 @@
</node>
<node ID="ID_366" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Increase in th number of firms with</p>
<p>international/national collaboration on innovation</p>
@ -111,8 +111,8 @@
</node>
<node ID="ID_367" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Highly cited scientific articles (as a percentage of</p>
<p>highly cited scientific article in the whole Federation)</p>
@ -123,8 +123,8 @@
</node>
<node ID="ID_368" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Patents filed by public research organisations</p>
<p>(as a percentafe of patent application filed under PCT)</p>
@ -152,8 +152,8 @@
<node ID="ID_2" POSITION="right" STYLE="bubble" TEXT="How much effort: where &amp; how">
<font SIZE="18"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Understanding the level of effort the region needs to take to compete on innovation and where to put this effort</p>
</body>
@ -161,8 +161,8 @@
</richcontent>
<node BACKGROUND_COLOR="#feffff" ID="ID_3" POSITION="right" STYLE="bubble" TEXT="The bottom-line">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>This is what policy makers care about in the end</p>
</body>
@ -200,8 +200,8 @@
<node ID="ID_9" POSITION="right" STYLE="fork" TEXT="The enabling environment">
<node ID="ID_16" POSITION="right" STYLE="fork" TEXT="Ease of doing business">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>WB</p>
</body>
@ -213,8 +213,8 @@
</node>
<node ID="ID_18" POSITION="right" STYLE="fork" TEXT="Competition index">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GCR</p>
</body>
@ -224,8 +224,8 @@
<node ID="ID_120" POSITION="right" STYLE="fork" TEXT="Workforce">
<node ID="ID_19" POSITION="right" STYLE="fork" TEXT="Quality of education">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GCR</p>
</body>
@ -239,8 +239,8 @@
<node ID="ID_122" POSITION="right" STYLE="fork" TEXT="Participation in life-long learning">
<icon BUILTIN="messagebox_warning"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>per 100 population aged 25-64</p>
</body>
@ -252,8 +252,8 @@
</node>
<node ID="ID_188" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Amount of university and colleague</p>
<p>students per 10 thousands population</p>
@ -263,8 +263,8 @@
</node>
<node ID="ID_276" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Share of employees with higher education in</p>
<p>the total amount of population at the working age</p>
@ -283,8 +283,8 @@
<node ID="ID_285" POSITION="right" STYLE="fork" TEXT="Science &amp; engineering workforce">
<node ID="ID_147" POSITION="right" STYLE="fork" TEXT="Availability of scientists and engineers">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GCR</p>
</body>
@ -320,8 +320,8 @@
<node ID="ID_135" POSITION="right" STYLE="fork" TEXT="ICT">
<node ID="ID_17" POSITION="right" STYLE="fork" TEXT="ICT use">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GCR</p>
</body>
@ -340,8 +340,8 @@
<node ID="ID_157" POSITION="right" STYLE="fork" TEXT="Inflow of foreign direct investments in high-technology industries"/>
<node ID="ID_158" POSITION="right" STYLE="fork" TEXT="Foreign direct investment jobs">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>: the percentage of the workforce employed by foreign companies [%].</p>
</body>
@ -356,8 +356,8 @@
<node ID="ID_169" POSITION="right" STYLE="fork" TEXT="Export intensity in manufacturing and services">
<icon BUILTIN="messagebox_warning"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>: exports as a share of total output in manufacturing and services [%].</p>
</body>
@ -366,8 +366,8 @@
</node>
<node ID="ID_375" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Share of high-technology export in the total volume</p>
<p>of production of goods, works and services</p>
@ -378,8 +378,8 @@
</node>
<node ID="ID_377" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Share of innovation production/serivces that goes for export,</p>
<p>by zones (EU, US, CIS, other countries</p>
@ -394,8 +394,8 @@
<node ID="ID_34" POSITION="right" STYLE="fork" TEXT="Entrepreneurship culture">
<node ID="ID_150" POSITION="right" STYLE="fork" TEXT="Fear of failure rate">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GEM</p>
</body>
@ -404,8 +404,8 @@
</node>
<node ID="ID_151" POSITION="right" STYLE="fork" TEXT="Entrepreneurship as desirable career choice">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GEM</p>
</body>
@ -414,8 +414,8 @@
</node>
<node ID="ID_152" POSITION="right" STYLE="fork" TEXT="High Status Successful Entrepreneurship">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GEM</p>
</body>
@ -427,8 +427,8 @@
<node ID="ID_163" POSITION="right" STYLE="fork" TEXT="Number of business contracts with foreign partners for R&amp;D collaboration"/>
<node ID="ID_164" POSITION="right" STYLE="fork" TEXT="Share of R&amp;D financed from foreign sources">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>UNESCO</p>
</body>
@ -437,8 +437,8 @@
</node>
<node ID="ID_165" POSITION="right" STYLE="fork" TEXT="Firms collaborating on innovation with organizations in other countries">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>CIS</p>
</body>
@ -447,8 +447,8 @@
</node>
<node ID="ID_173" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Share of Innovative companies collaborating</p>
<p>with research institutions on innovation</p>
@ -458,8 +458,8 @@
</node>
<node ID="ID_174" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of joint projects conducted by the local comapnies</p>
<p>and local consulting/intermediary agencies</p>
@ -472,8 +472,8 @@
<node ID="ID_115" POSITION="right" STYLE="fork" TEXT="Technology absorption">
<node ID="ID_116" POSITION="right" STYLE="fork" TEXT="Local supplier quality">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>GCR</p>
</body>
@ -482,8 +482,8 @@
</node>
<node ID="ID_127" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Share of expenditures on technological innovations</p>
<p>in the amount of sales</p>
@ -496,8 +496,8 @@
</node>
<node ID="ID_354" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Investments in ICT by asset (IT equipment,</p>
<p>communication equipment, software)</p>
@ -509,8 +509,8 @@
<node ID="ID_356" POSITION="right" STYLE="fork" TEXT="Software and databases"/>
<node ID="ID_373" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Level of energy efficiency of the regional economy</p>
<p>(can be measured by sectors and for the whole region)</p>
@ -528,8 +528,8 @@
<node ID="ID_128" POSITION="right" STYLE="fork" TEXT="Business R&amp;D expenditures per GRP"/>
<node ID="ID_145" POSITION="right" STYLE="fork" TEXT="Factors hampering innovation">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>CIS, BEEPS</p>
</body>
@ -553,8 +553,8 @@
<node ID="ID_148" POSITION="right" STYLE="fork" TEXT="Entrepreneurial activities">
<node ID="ID_117" POSITION="right" STYLE="fork" TEXT="New business density">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of new organizations per thousand working age population (WBI)</p>
</body>
@ -563,8 +563,8 @@
</node>
<node ID="ID_119" POSITION="right" STYLE="fork" TEXT="Volume of newly registered corporations ">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>(as a percentage of all registered corporations)</p>
</body>
@ -577,8 +577,8 @@
<node ID="ID_280" POSITION="right" STYLE="fork" TEXT="Outputs">
<node ID="ID_279" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Amount of domestically protected intellectual</p>
<p>property per 1 mln. population</p>
@ -590,8 +590,8 @@
<node ID="ID_281" POSITION="right" STYLE="fork" TEXT="Number of domestic patent applications per R&amp;D expenditures"/>
<node ID="ID_282" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of intellectual property exploited by regional</p>
<p>enterprises per 1 mln. population</p>
@ -610,8 +610,8 @@
<node ID="ID_415" POSITION="right" STYLE="fork" TEXT="Public sector innovation">
<node ID="ID_416" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of advanced ICT introduced in the budgetary organizations</p>
<p>(regional power, municipal bodies, social and educational organizations)</p>
@ -622,8 +622,8 @@
<node ID="ID_418" POSITION="right" STYLE="fork" TEXT="E-government index"/>
<node ID="ID_419" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of management innovations introduced in the budgetary organizations</p>
<p>(regional power, municipal bodies, social and educational organizations)</p>
@ -638,8 +638,8 @@
<node ID="ID_171" POSITION="right" STYLE="fork" TEXT="Collaboration">
<node ID="ID_172" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of interactions between universities</p>
<p>and large companies by university size</p>
@ -660,8 +660,8 @@
<node ID="ID_186" POSITION="right" STYLE="fork" TEXT="Number of publications in international journals per worker per year"/>
<node ID="ID_303" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Publications: Academic articles in international peer-reviewed</p>
<p>journals per 1,000 researchers [articles/1,000 researchers].</p>
@ -675,8 +675,8 @@
<node ID="ID_312" POSITION="right" STYLE="fork" TEXT="Supportive measures">
<node ID="ID_313" POSITION="right" STYLE="fork" TEXT="Diversity index of university entrepreneurship support measures">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of measures offered by the unversity within a preset range (NCET2 survey)</p>
</body>
@ -688,8 +688,8 @@
<node ID="ID_308" POSITION="right" STYLE="fork" TEXT="Licensing">
<node ID="ID_298" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Academic licenses: Number of licenses</p>
<p>per 1,000 researchers.[licenses/researcher]</p>
@ -701,8 +701,8 @@
<node ID="ID_309" POSITION="right" STYLE="fork" TEXT="Spin-offs">
<node ID="ID_300" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Number of spin-offs with external private financing</p>
<p>as a share of the institution's R&amp;D budget</p>
@ -715,8 +715,8 @@
<node ID="ID_297" POSITION="right" STYLE="fork" TEXT="Industry revenue per staff "/>
<node ID="ID_305" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Foreign contracts: Number of contracts with foreign industria</p>
<p>l companies at scientific and educational organizations</p>
@ -728,8 +728,8 @@
<node ID="ID_307" POSITION="right" STYLE="fork" TEXT="Share of industry income from foreign companies"/>
<node ID="ID_90" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Revenue raised from industry R&amp;D as a fraction</p>
<p>of total institutional budget (up to a cap)</p>
@ -744,8 +744,8 @@
<node ID="ID_153" POSITION="right" STYLE="fork" TEXT="Private market">
<node ID="ID_154" POSITION="right" STYLE="fork" TEXT="Number of innovation &amp; IP services organizations">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>(design firms, IP consultants, etc.)</p>
</body>
@ -754,8 +754,8 @@
</node>
<node ID="ID_155" POSITION="right" STYLE="fork" TEXT="Number of private innovation infrastructure organizations ">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>(e.g. accelerators, incubators)</p>
</body>
@ -782,8 +782,8 @@
<node ID="ID_4" POSITION="left" STYLE="bubble" TEXT="What to do about existing measures">
<font SIZE="18"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Understanding which measures should be strengthened, dropped or improved, and how.</p>
</body>
@ -795,8 +795,8 @@
<node ID="ID_293" POSITION="left" STYLE="fork" TEXT="Growth rates of employment in supported innovative firms"/>
<node ID="ID_323" POSITION="left" STYLE="fork" TEXT="Role of IP for tenants/clients">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>WIPO SURVEY OF INTELLECTUAL PROPERTY SERVICES OF</p>
<p>EUROPEAN TECHNOLOGY INCUBATORS</p>
@ -807,8 +807,8 @@
<node ID="ID_326" POSITION="left" STYLE="fork" TEXT="Share of tenants with innovation activities"/>
<node ID="ID_329" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Gazelle tenant: Share of tenants with</p>
<p>annual revenue growth of more than 20%</p>
@ -819,8 +819,8 @@
</node>
<node ID="ID_330" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Globalization of tenants: Median share of tenant</p>
<p>revenues obtained from exports [%]</p>
@ -839,8 +839,8 @@
<node ID="ID_52" POSITION="left" STYLE="fork" TEXT="Level of awareness">
<node ID="ID_181" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Perception (opinion poll) of business managers</p>
<p>regarding public support programmes</p>
@ -852,8 +852,8 @@
<node ID="ID_53" POSITION="left" STYLE="fork" TEXT="Transparency">
<node ID="ID_175" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Perception of business managers in terms</p>
<p>of level of transparency of support measures in the region</p>
@ -865,8 +865,8 @@
</node>
<node ID="ID_183" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Description by regional business managers of the way the</p>
<p>select and apply for regional and federal support schemes</p>
@ -886,8 +886,8 @@
<node BACKGROUND_COLOR="#feffff" ID="ID_109" POSITION="left" STYLE="bubble" TEXT="Inputs of measures">
<node ID="ID_110" POSITION="left" STYLE="fork" TEXT="Qualified staff">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>JL: not sure how this would be measured</p>
</body>
@ -933,8 +933,8 @@
<node ID="ID_290" POSITION="left" STYLE="fork" TEXT="Impact assessment "/>
<node ID="ID_291" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Average leverage of 1rub (there would be</p>
<p>several programs with different leverage)</p>
@ -945,8 +945,8 @@
</node>
<node ID="ID_296" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Volume of attracted money per one ruble</p>
<p>of regional budget expenditures on innovation projects</p>
@ -970,8 +970,8 @@
<node ID="ID_7" POSITION="right" STYLE="bubble" TEXT="What investments in innovative projects">
<font SIZE="18"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Understanding what investments should be made in innovative projects.</p>
</body>
@ -988,8 +988,8 @@
<node ID="ID_379" POSITION="right" STYLE="fork" TEXT="Growth of the volume of production in the cluster companies"/>
<node ID="ID_380" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Growth of the volume of production in the cluster companies</p>
<p>to the volume of state support for the cluster</p>
@ -1023,8 +1023,8 @@
<node ID="ID_316" POSITION="right" STYLE="fork" TEXT="Fed and regional seed fund investments"/>
<node ID="ID_314" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>FASIE projects: Number of projects supported</p>
<p>by the FASIE per 1,000 workers [awards/worker]</p>

View File

@ -1,8 +1,8 @@
<map version="1.0.1">
<node ID="ID_1" TEXT="Observation">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<p>Always ask</p>
</body>

View File

@ -27,8 +27,8 @@
<node ID="ID_154" POSITION="right" STYLE="fork" TEXT="Human Resources">
<font BOLD="true" SIZE="12"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<p/>
</body>

View File

@ -4,7 +4,7 @@
<edge COLOR="#808080"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<head><head/>
<body>
<p/>
<p/>

View File

@ -11,8 +11,8 @@
<node ID="ID_24" POSITION="right" STYLE="fork" TEXT="Falar no artigo que esse trabalho fala que &#233; inadequada a divis&#227;o entre pioneira e n&#227;o pioneira devido a grande varia&#231;&#227;o que h&#225; entre elas. Al&#233;m de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma esp&#233;cie. Por&#233;m recomendar que essa classifica&#231;&#227;o continue sendo usada em curto prazo enquanto n&#227;o h&#225; informa&#231;&#245;es confi&#225;veis suficiente para esta simples classifica&#231;&#227;o. Outras classifica&#231;&#245;es como esta do artigo s&#227;o bem vinda, contanto que tenham dados confi&#225;veis. Por&#233;m dados est&#225;ticos j&#225; s&#227;o dif&#237;ceis de se obter, dados temporais, como taxa de crescimento em di&#226;metro ou altura, s&#227;o mais dif&#237;ceis ainda. Falar que v&#225;rios tipos de classifica&#231;&#245;es podem ser utilizadas e quanto mais detalhe melhor, por&#233;m os dados &#233; que s&#227;o mais limitantes. Se focarmos em dados de germina&#231;&#227;o e crescimento limitantes, como sugerem sainete e whitmore, da uma id&#233;ia maismr&#225;pida e a curto prazo da classifica&#231;&#227;o destas esp&#233;cies. Depois com o tempo conseguiremos construir classifica&#231;&#245;es mais detalhadas e com mais dados confi&#225;veis. "/>
<node ID="ID_22" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Here, we develop a new approach that links functional attributes</p>
<p>of tree species with studies of forest recovery and regional</p>
@ -28,8 +28,8 @@
</node>
<node ID="ID_23" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Since we have data on leaf</p>
<p>and wood functional traits for only a subset of the species in our</p>
@ -42,8 +42,8 @@
</node>
<node ID="ID_25" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Our approach avoided preconceived notions of successional</p>
<p>behavior or shade tolerance of tree species by developing an objective</p>
@ -60,8 +60,8 @@
</node>
<node ID="ID_26" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Our results demonstrate strong linkages between functional</p>
<p>types defined by adult height and growth rates of large trees and</p>
@ -73,8 +73,8 @@
</node>
<node ID="ID_27" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>These results allow us to move beyond earlier conceptual</p>
<p>frameworks of tropical forest secondary succession developed</p>
@ -87,8 +87,8 @@
</node>
<node ID="ID_28" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Reproductive traits, such as dispersal mode, pollination mode,</p>
<p>and sexual system, were ultimately not useful in delimiting tree</p>
@ -106,8 +106,8 @@
</node>
<node ID="ID_29" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Our classification of colonization groups defies the traditional</p>
<p>dichotomy between &#8216;late successional&#8217; shade-tolerant and &#8216;early successional&#8217;</p>
@ -141,8 +141,8 @@
</node>
<node ID="ID_30" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Classifying functional types</p>
<p>based on functional traits with low plasticity, such as wood density</p>
@ -154,8 +154,8 @@
</node>
<node ID="ID_31" POSITION="right" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>CONDIT, R., S. P. HUBBELL, AND R. B. FOSTER. 1996. Assessing the response of</p>
<p>plant functional types in tropical forests to climatic change. J. Veg. Sci.</p>
@ -184,8 +184,8 @@
<edge COLOR="#cccccc"/>
<node ID="ID_6" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Therecent growth of large functional trait data</p>
<p>bases has been fuelled by standardized protocols forthe</p>
@ -202,8 +202,8 @@
</node>
<node ID="ID_7" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>However, the fast pace of</p>
<p>development of plant trait meta-analyses also suggests that</p>
@ -215,8 +215,8 @@
</node>
<node ID="ID_8" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>We measured</p>
<p>traits for every individual tree in nine 1-ha plots in tropical</p>
@ -240,8 +240,8 @@
<node ID="ID_13" POSITION="left" STYLE="fork" TEXT="Intensas amostragens de experimentos simples tem maior retorno em acur&#225;cia de estimativa e de custo tb."/>
<node ID="ID_14" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>With regard to estimating mean trait values, strategies</p>
<p>alternative to BRIDGE were consistently cost-effective. On</p>
@ -253,8 +253,8 @@
</html>
</richcontent>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
<p>Isso significa que estudos de caracter&#237;stica de hist&#243;ria de vida compensam? Ver nos m&amp;m.</p>
@ -264,8 +264,8 @@
</node>
<node ID="ID_15" POSITION="left" STYLE="fork">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>We suggest that, in these studies,</p>
<p>the investment in complete sampling may be worthwhile</p>
@ -274,8 +274,8 @@
</html>
</richcontent>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
<p>Falar que isso corrobora nossa sugest&#227;o de utilizar poucas medidas, mas que elas sejam confi&#225;veis.</p>

View File

@ -3,8 +3,8 @@
<edge COLOR="#121110"/>
<node ID="ID_null" POSITION="left" STYLE="bubble" TEXT="De markt">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -61,8 +61,8 @@
</node>
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="monitoring">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -81,8 +81,8 @@
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="veiligheid">
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="criminaliteit">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -108,8 +108,8 @@
</node>
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="verkeer">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -142,8 +142,8 @@
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="Omleiding zoeken"/>
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="preventie">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -163,8 +163,8 @@
</node>
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="recepten generator">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -203,8 +203,8 @@
<font BOLD="true" SIZE="12"/>
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="geboortetimer">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -214,8 +214,8 @@
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="info over voeding">
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="via cloud info over voeding">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -241,8 +241,8 @@
</node>
<node ID="ID_null" POSITION="right" STYLE="fork" TEXT="bouw">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>
@ -276,8 +276,8 @@
</node>
<node ID="ID_null" POSITION="left" STYLE="fork" TEXT="verschillende ziektes">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>

View File

@ -1 +1,7 @@
<map version="1.0.1"><node ID="ID_0" TEXT="i18n"><node ID="ID_1" POSITION="right" TEXT="Este es un é con acento"/><node ID="ID_2" POSITION="left" TEXT="Este es una ñ"/><node ID="ID_3" POSITION="right" TEXT="這是一個樣本 Japanise。"/></node></map>
<map version="1.0.1">
<node ID="ID_0" TEXT="i18n">
<node ID="ID_1" POSITION="right" TEXT="Este es un é con acento"/>
<node ID="ID_2" POSITION="left" TEXT="Este es una ñ"/>
<node ID="ID_3" POSITION="right" TEXT="這是一個樣本 Japanise。"/>
</node>
</map>

View File

@ -2,8 +2,8 @@
<node ID="ID_0" TEXT="&#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;&#1616;&#1610;&#1614;&#1617;&#1577;">
<node ID="ID_1" POSITION="right" TEXT="&#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;&#1616;">
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>This is a not in languange &#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;&#1616;</p>
</body>
@ -12,8 +12,8 @@
</node>
<node ID="ID_2" POSITION="left">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Long text node:</p>
<p>&#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;</p>

View File

@ -4,8 +4,8 @@
<edge COLOR="#660000"/>
<node BACKGROUND_COLOR="#bf9000" COLOR="#000000" ID="ID_59" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Software</p>
<p>(Programas y datos con los que funciona la computadora)</p>
@ -16,8 +16,8 @@
<edge COLOR="#7f6000"/>
<node BACKGROUND_COLOR="#f1c232" COLOR="#000000" ID="ID_92" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Software de Sistema:Permite el entendimiento</p>
<p>entre el usuario y la maquina.</p>
@ -41,8 +41,8 @@
</node>
<node BACKGROUND_COLOR="#f1c232" COLOR="#000000" ID="ID_93" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Software de Aplicaci&#243;n: Permite hacer hojas de</p>
<p>calculo navegar en internet, base de datos, etc.</p>
@ -70,8 +70,8 @@
</node>
<node BACKGROUND_COLOR="#f1c232" COLOR="#000000" ID="ID_94" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Software de Desarrollo</p>
</body>
@ -83,8 +83,8 @@
</node>
<node BACKGROUND_COLOR="#a64d79" COLOR="#feffff" ID="ID_21" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Hardware</p>
<p>(componentes f&#237;sicos)</p>
@ -95,8 +95,8 @@
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#c27ba0" COLOR="#feffff" ID="ID_25" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Entrada de datos</p>
</body>
@ -106,8 +106,8 @@
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#ead1dc" COLOR="#000000" ID="ID_28" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Rat&#243;n, Teclado, Joystick,</p>
<p>C&#225;mara digital, Micr&#243;fono, Esc&#225;ner.</p>
@ -123,8 +123,8 @@
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#ead1dc" COLOR="#000000" ID="ID_30" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Monitor, Impresora, Bocinas, Pl&#243;ter.</p>
</body>
@ -139,8 +139,8 @@
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#ead1dc" COLOR="#000000" ID="ID_32" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>Disquete, Disco compacto, DVD,</p>
<p>BD, Disco duro, Memoria flash.</p>
@ -159,8 +159,8 @@
</node>
<node ID="ID_10" POSITION="left" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p>PDA</p>
</body>

View File

@ -2,8 +2,8 @@
<node ID="ID_null" LINK="prospace.com" TEXT="Prospace">
<edge COLOR="#cc5627"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><head/>
<body>
<p/>
</body>

View File

@ -14844,11 +14844,23 @@ xdg-basedir@^4.0.0:
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==
xml-formatter@^2.6.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/xml-formatter/-/xml-formatter-2.6.1.tgz#066ef3a100bd58ee3b943f0c503be63176d3d497"
integrity sha512-dOiGwoqm8y22QdTNI7A+N03tyVfBlQ0/oehAzxIZtwnFAHGeSlrfjF73YQvzSsa/Kt6+YZasKsrdu6OIpuBggw==
dependencies:
xml-parser-xo "^3.2.0"
xml-name-validator@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
xml-parser-xo@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/xml-parser-xo/-/xml-parser-xo-3.2.0.tgz#c633ab55cf1976d6b03ab4a6a85045093ac32b73"
integrity sha512-8LRU6cq+d7mVsoDaMhnkkt3CTtAs4153p49fRo+HIB3I1FD1o5CeXRjRH29sQevIfVJIcPjKSsPU/+Ujhq09Rg==
xmlbuilder@^9.0.7:
version "9.0.7"
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"