Merge branch 'master' into db-purge

Conflicts:
	mindplot/src/main/javascript/MainTopic.js
	wise-webapp/src/main/java/com/wisemapping/exporter/FreemindExporter.java
	wise-webapp/src/main/java/com/wisemapping/rest/BaseController.java
This commit is contained in:
Paulo Gustavo Veiga 2012-11-04 01:38:52 -03:00
commit a74efa4647
31 changed files with 1690 additions and 300 deletions

View File

@ -43,7 +43,7 @@ mkdir $WISE_WEBAPP_DIR
unzip $BASE_DIR/../wise-webapp/target/wisemapping.war -d $WISE_WEBAPP_DIR >/dev/null
# DB Configuration ...
sed 's/target\/db\/wisemapping/webapps\/wisemapping\/WEB-INF\/database\/wisemapping/' $WISE_WEBAPP_DIR/WEB-INF/app.properties > $WISE_WEBAPP_DIR/WEB-INF/app.properties2
sed 's/\${database.base.url}\/db\/wisemapping/webapps\/wisemapping\/WEB-INF\/database\/wisemapping/' $WISE_WEBAPP_DIR/WEB-INF/app.properties > $WISE_WEBAPP_DIR/WEB-INF/app.properties2
mv $WISE_WEBAPP_DIR/WEB-INF/app.properties2 $WISE_WEBAPP_DIR/WEB-INF/app.properties

View File

@ -140,6 +140,7 @@
<include>Workspace.js</include>
<include>ShrinkConnector.js</include>
<include>DesignerKeyboard.js</include>
<include>TopicStyle.js</include>
<include>NodeGraph.js</include>
<include>Topic.js</include>
<include>CentralTopic.js</include>

View File

@ -36,29 +36,11 @@ mindplot.CentralTopic = new Class({
return this.getPosition();
},
_getInnerPadding:function () {
return 11;
},
getTopicType:function () {
return mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE;
},
setCursor:function (type) {
type = (type == 'move') ? 'default' : type;
this.parent(type);
},
isConnectedToCentralTopic:function () {
return false;
},
_defaultShapeType:function () {
return mindplot.model.TopicShape.ROUNDED_RECT;
},
updateTopicShape:function () {
},
@ -70,28 +52,6 @@ mindplot.CentralTopic = new Class({
this.setPosition(zeroPoint);
},
_defaultText:function () {
return $msg('CENTRAL_TOPIC');
},
_defaultBackgroundColor:function () {
return "rgb(80,157,192)";
},
_defaultBorderColor:function () {
return "rgb(57,113,177)";
},
_defaultFontStyle:function () {
return {
font:"Verdana",
size:10,
style:"normal",
weight:"bold",
color:"#ffffff"
};
},
getShrinkConnector:function () {
return null;
},

View File

@ -160,6 +160,48 @@ mindplot.Designer = new Class({
}
}.bind(this));
// Register mouse drag and drop event ...
function noopHandler(evt) {
evt.stopPropagation();
evt.preventDefault();
}
// Enable drag events ...
Element.NativeEvents.dragenter = 2;
Element.NativeEvents.dragexit = 2;
Element.NativeEvents.dragover = 2;
Element.NativeEvents.drop = 2;
screenManager.addEvent('dragenter', noopHandler);
screenManager.addEvent('dragexit', noopHandler);
screenManager.addEvent('dragover', noopHandler);
screenManager.addEvent('drop', function (evt) {
evt.stopPropagation();
evt.preventDefault();
//
var files = evt.event.dataTransfer.files;
console.log(event);
var count = files.length;
// Only call the handler if 1 or more files was dropped.
if (count > 0) {
var model = this.getMindmap().createNode();
model.setImageSize(80, 43);
model.setMetadata("{'media':'video,'url':'http://www.youtube.com/watch?v=P3FrXftyuzw&feature=g-vrec&context=G2b4ab69RVAAAAAAAAAA'}");
model.setImageUrl("images/logo-small.png");
model.setShapeType(mindplot.model.TopicShape.IMAGE);
var position = screenManager.getWorkspaceMousePosition(evt);
model.setPosition(position.x, position.y);
model.setPosition(100, 100);
this._actionDispatcher.addTopics([model]);
}
}.bind(this));
},
_buildDragManager:function (workspace) {
@ -357,7 +399,7 @@ mindplot.Designer = new Class({
// Exclude central topic ..
topics = topics.filter(function (topic) {
return topic.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE
return !topic.isCentralTopic();
});
this._clipboard = topics.map(function (topic) {
@ -684,7 +726,7 @@ mindplot.Designer = new Class({
},
_removeTopic:function (node) {
if (node.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!node.isCentralTopic()) {
var parent = node._parent;
node.disconnect(this._workspace);
@ -714,14 +756,14 @@ mindplot.Designer = new Class({
// If there are more than one node selected,
$notify($msg('ENTITIES_COULD_NOT_BE_DELETED'));
return;
} else if (topics.length == 1 && topics[0].getTopicType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
} else if (topics.length == 1 && topics[0].isCentralTopic()) {
$notify($msg('CENTRAL_TOPIC_CAN_NOT_BE_DELETED'));
return;
}
// If the central topic has been selected, I must filter ir
var topicIds = topics.filter(function (topic) {
return topic.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE
return !topic.isCentralTopic();
}).map(function (topic) {
return topic.getId()
});

View File

@ -241,7 +241,7 @@ mindplot.DesignerKeyboard = new Class({
'right':function (event) {
var node = model.selectedTopic();
if (node) {
if (node.getTopicType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (node.isCentralTopic()) {
this._goToSideChild(designer, node, 'RIGHT');
}
else {
@ -263,7 +263,7 @@ mindplot.DesignerKeyboard = new Class({
'left':function (event) {
var node = model.selectedTopic();
if (node) {
if (node.getTopicType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (node.isCentralTopic()) {
this._goToSideChild(designer, node, 'LEFT');
}
else {
@ -285,7 +285,7 @@ mindplot.DesignerKeyboard = new Class({
'up':function (event) {
var node = model.selectedTopic();
if (node) {
if (node.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!node.isCentralTopic()) {
this._goToBrother(designer, node, 'UP');
}
} else {
@ -299,7 +299,7 @@ mindplot.DesignerKeyboard = new Class({
'down':function (event) {
var node = model.selectedTopic();
if (node) {
if (node.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!node.isCentralTopic()) {
this._goToBrother(designer, node, 'DOWN');
}
} else {

View File

@ -55,16 +55,11 @@ mindplot.MainTopic = new Class({
return group;
},
_defaultShapeType:function () {
return mindplot.model.TopicShape.LINE;
},
updateTopicShape:function (targetTopic, workspace) {
// Change figure based on the connected topic ...
var model = this.getModel();
var shapeType = model.getShapeType();
if (targetTopic.getType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!targetTopic.isCentralTopic()) {
if (!$defined(shapeType)) {
// Get the real shape type ...
shapeType = this.getShapeType();
@ -88,10 +83,6 @@ mindplot.MainTopic = new Class({
innerShape.setVisibility(true);
},
getTopicType:function () {
return "MainTopic";
},
_updatePositionOnChangeSize:function (oldSize, newSize) {
var xOffset = Math.round((newSize.width - oldSize.width) / 2);
@ -167,82 +158,6 @@ mindplot.MainTopic = new Class({
result = mindplot.util.Shape.calculateRectConnectionPoint(pos, size, isAtRight, true);
}
return result;
},
_getInnerPadding:function () {
var result;
var parent = this.getModel().getParent();
if (parent && mindplot.model.INodeModel.MAIN_TOPIC_TYPE == parent.getType()) {
result = 3;
}
else {
result = 4;
}
return result;
},
isConnectedToCentralTopic:function () {
var model = this.getModel();
var parent = model.getParent();
return parent && parent.getType() === mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE;
},
_defaultText:function () {
var targetTopic = this.getOutgoingConnectedTopic();
var result = "";
if ($defined(targetTopic)) {
if (targetTopic.getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
result = $msg('MAIN_TOPIC');
} else {
result = $msg('SUB_TOPIC');
}
} else {
result = $msg('ISOLATED_TOPIC');
;
}
return result;
},
_defaultFontStyle:function () {
var targetTopic = this.getOutgoingConnectedTopic();
var result;
if ($defined(targetTopic)) {
if (targetTopic.getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
result = {
font:"Arial",
size:8,
style:"normal",
weight:"normal",
color:"rgb(82,92,97)"
};
} else {
result = {
font:"Arial",
size:6,
style:"normal",
weight:"normal",
color:"rgb(82,92,97)"
};
}
} else {
result = {
font:"Verdana",
size:8,
style:"normal",
weight:"normal",
color:"rgb(82,92,97)"
};
}
return result;
},
_defaultBackgroundColor:function () {
return "rgb(224,229,239)";
},
_defaultBorderColor:function () {
return 'rgb(2,59,185)';
}
});

View File

@ -157,6 +157,10 @@ mindplot.MultilineTextEditor = new Class({
},
show:function (topic, text) {
// Close a previous node editor if it's opened ...
if (this._topic) {
this.close(false);
}
this._topic = topic;
if (!this.isVisible()) {
@ -272,7 +276,7 @@ mindplot.MultilineTextEditor = new Class({
},
close:function (update) {
if (this.isVisible()) {
if (this.isVisible() && this._topic) {
// Update changes ...
clearTimeout(this._timeoutId);
@ -286,9 +290,9 @@ mindplot.MultilineTextEditor = new Class({
// Remove it form the screen ...
this._containerElem.dispose();
this._containerElem = null;
this._topic = null;
this._timeoutId = -1;
}
this._topic = null;
}
});

View File

@ -29,7 +29,7 @@ mindplot.Topic = new Class({
// Position a topic ....
var pos = model.getPosition();
if (pos != null && model.getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (pos != null && this.isCentralTopic()) {
this.setPosition(pos);
}
@ -107,7 +107,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getShapeType();
if (!$defined(result)) {
result = this._defaultShapeType();
result = mindplot.TopicStyle.defaultShapeType(this);
}
return result;
},
@ -134,7 +134,7 @@ mindplot.Topic = new Class({
this._setBorderColor(brColor, false);
// Define the pointer ...
if (this.getType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE && !this.isReadOnly()) {
if (!this.isCentralTopic() && !this.isReadOnly()) {
this._innerShape.setCursor('move');
} else {
this._innerShape.setCursor('default');
@ -259,7 +259,7 @@ mindplot.Topic = new Class({
_buildIconGroup:function () {
var textHeight = this.getTextShape().getFontHeight();
var result = new mindplot.IconGroup(this.getId(), textHeight);
var padding = this._getInnerPadding();
var padding = mindplot.TopicStyle.getInnerPadding(this);
result.setPosition(padding, padding);
// Load topic features ...
@ -334,7 +334,7 @@ mindplot.Topic = new Class({
if (!readOnly) {
// Propagate mouse events ...
if (this.getType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!this.isCentralTopic()) {
result.setCursor('move');
} else {
result.setCursor('default');
@ -344,10 +344,6 @@ mindplot.Topic = new Class({
return result;
},
_getInnerPadding:function () {
throw "this must be implemented";
},
setFontFamily:function (value, updateModel) {
var textShape = this.getTextShape();
textShape.setFontFamily(value);
@ -395,7 +391,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getFontWeight();
if (!$defined(result)) {
var font = this._defaultFontStyle();
var font = mindplot.TopicStyle.defaultFontStyle(this);
result = font.weight;
}
return result;
@ -405,7 +401,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getFontFamily();
if (!$defined(result)) {
var font = this._defaultFontStyle();
var font = mindplot.TopicStyle.defaultFontStyle(this);
result = font.font;
}
return result;
@ -415,7 +411,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getFontColor();
if (!$defined(result)) {
var font = this._defaultFontStyle();
var font = mindplot.TopicStyle.defaultFontStyle(this);
result = font.color;
}
return result;
@ -425,7 +421,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getFontStyle();
if (!$defined(result)) {
var font = this._defaultFontStyle();
var font = mindplot.TopicStyle.defaultFontStyle(this);
result = font.style;
}
return result;
@ -435,7 +431,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getFontSize();
if (!$defined(result)) {
var font = this._defaultFontStyle();
var font = mindplot.TopicStyle.defaultFontStyle(this);
result = font.size;
}
return result;
@ -452,7 +448,7 @@ mindplot.Topic = new Class({
_setText:function (text, updateModel) {
var textShape = this.getTextShape();
textShape.setText(text == null ? this._defaultText() : text);
textShape.setText(text == null ? mindplot.TopicStyle.defaultText(this) : text);
if ($defined(updateModel) && updateModel) {
var model = this.getModel();
@ -474,7 +470,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getText();
if (!$defined(result)) {
result = this._defaultText();
result = mindplot.TopicStyle.defaultText(this);
}
return result;
},
@ -502,7 +498,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getBackgroundColor();
if (!$defined(result)) {
result = this._defaultBackgroundColor();
result = mindplot.TopicStyle.defaultBackgroundColor(this);
}
return result;
},
@ -530,7 +526,7 @@ mindplot.Topic = new Class({
var model = this.getModel();
var result = model.getBorderColor();
if (!$defined(result)) {
result = this._defaultBorderColor();
result = mindplot.TopicStyle.defaultBorderColor(this);
}
return result;
},
@ -822,7 +818,7 @@ mindplot.Topic = new Class({
setBranchVisibility:function (value) {
var current = this;
var parent = this;
while (parent != null && parent.getType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
while (parent != null && !parent.isCentralTopic()) {
current = parent;
parent = current.getParent();
}
@ -1109,7 +1105,7 @@ mindplot.Topic = new Class({
var elem = this.get2DElement();
workspace.appendChild(elem);
if (!this.isInWorkspace()) {
if (this.getType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!this.isCentralTopic()) {
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeAdded, this.getModel());
}
@ -1152,7 +1148,7 @@ mindplot.Topic = new Class({
var textHeight = textShape.getHeight();
textHeight = textHeight != 0 ? textHeight : 20;
var topicPadding = this._getInnerPadding();
var topicPadding = mindplot.TopicStyle.getInnerPadding(this);
// Adjust the icon size to the size of the text ...
var iconGroup = this.getOrBuildIconGroup();
@ -1214,7 +1210,13 @@ mindplot.Topic = new Class({
}
}
return result;
},
isCentralTopic:function () {
return this.getModel().getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE;
}
});

View File

@ -0,0 +1,132 @@
/*
* Copyright [2011] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
mindplot.TopicStyle = new Class({
Static:{
_getStyles:function (topic) {
$assert(topic, "topic can not be null");
var result;
if (topic.isCentralTopic()) {
result = mindplot.TopicStyle.STYLES.CENTRAL_TOPIC;
} else {
var targetTopic = topic.getOutgoingConnectedTopic();
if ($defined(targetTopic)) {
if (targetTopic.isCentralTopic()) {
result = mindplot.TopicStyle.STYLES.MAIN_TOPIC;
} else {
result = mindplot.TopicStyle.STYLES.SUB_TOPIC;
}
} else {
result = mindplot.TopicStyle.STYLES.ISOLATED_TOPIC;
}
}
return result;
},
defaultText:function (topic) {
var msgKey = this._getStyles(topic).msgKey;
return $msg(msgKey);
},
defaultFontStyle:function (topic) {
return this._getStyles(topic).fontStyle;
},
defaultBackgroundColor:function (topic) {
return this._getStyles(topic).backgroundColor;
},
defaultBorderColor:function (topic) {
return this._getStyles(topic).borderColor;
},
getInnerPadding:function (topic) {
return this._getStyles(topic).innerPadding;
},
defaultShapeType:function (topic) {
return this._getStyles(topic).shapeType;
}
}
});
mindplot.TopicStyle.STYLES =
{
CENTRAL_TOPIC:{
borderColor:'rgb(57,113,177)',
backgroundColor:'rgb(80,157,192)',
fontStyle:{
font:"Verdana",
size:10,
style:"normal",
weight:"bold",
color:"#ffffff"
},
msgKey:'CENTRAL_TOPIC',
innerPadding:11,
shapeType:mindplot.model.TopicShape.ROUNDED_RECT
},
MAIN_TOPIC:{
borderColor:'rgb(2,59,185)',
backgroundColor:'rgb(224,229,239)',
fontStyle:{
font:"Arial",
size:8,
style:"normal",
weight:"normal",
color:"rgb(82,92,97)"
},
msgKey:'MAIN_TOPIC',
innerPadding:3,
shapeType:mindplot.model.TopicShape.LINE
},
SUB_TOPIC:{
borderColor:'rgb(2,59,185)',
backgroundColor:'rgb(224,229,239)',
fontStyle:{
font:"Arial",
size:6,
style:"normal",
weight:"normal",
color:"rgb(82,92,97)"
},
msgKey:'SUB_TOPIC',
innerPadding:3,
shapeType:mindplot.model.TopicShape.LINE
},
ISOLATED_TOPIC:{
borderColor:'rgb(2,59,185)',
backgroundColor:'rgb(224,229,239)',
fontStyle:{
font:"Verdana",
size:8,
style:"normal",
weight:"normal",
color:"rgb(82,92,97)"
},
msgKey:'ISOLATED_TOPIC',
innerPadding:4,
shapeType:mindplot.model.TopicShape.LINE
}
};

View File

@ -311,12 +311,8 @@
<configuration>
<driver>org.hsqldb.jdbc.JDBCDriver</driver>
<url>jdbc:hsqldb:file:${project.basedir}/target/db/wisemapping</url>
<url>jdbc:hsqldb:file:${project.build.directory}/db/wisemapping</url>
<username>sa</username>
<!--all executions are ignored if -Dmaven.test.skipDB=true
Use this flag if you want to reuse an already created HSQL database instance
-->
<skip>${maven.test.skipDB}</skip>
</configuration>
<dependencies>
@ -494,6 +490,10 @@
<name>org.mortbay.util.FileResource.checkAliases</name>
<value>false</value>
</systemProperty>
<systemProperty>
<name>database.base.url</name>
<value>${project.build.directory}</value>
</systemProperty>
</systemProperties>
<!--<scanIntervalSeconds>10</scanIntervalSeconds>-->
</configuration>
@ -502,7 +502,7 @@
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run-war</goal>
<goal>run</goal>
</goals>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>

View File

@ -1,5 +1,5 @@
/*
* Copyright [2012] [wisemapping]
* Copyright [2011] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
@ -28,6 +28,7 @@ import com.wisemapping.jaxb.freemind.*;
import com.wisemapping.jaxb.wisemap.RelationshipType;
import com.wisemapping.jaxb.wisemap.TopicType;
import com.wisemapping.jaxb.wisemap.Icon;
import org.apache.commons.lang.StringEscapeUtils;
import org.jetbrains.annotations.NotNull;
import org.w3c.dom.Document;
import org.xml.sax.SAXException;
@ -164,11 +165,13 @@ public class FreemindExporter
}
// Formated text have a different representation ....
if (!text.contains("\n")) {
freemindNode.setTEXT(text);
} else {
final Richcontent richcontent = buildRichContent(text, "NODE");
freemindNode.getArrowlinkOrCloudOrEdge().add(richcontent);
if (text != null) {
if (!text.contains("\n")) {
freemindNode.setTEXT(text);
} else {
final Richcontent richcontent = buildRichContent(text, "NODE");
freemindNode.getArrowlinkOrCloudOrEdge().add(richcontent);
}
}
freemindNode.setBACKGROUNDCOLOR(mindmapTopic.getBgColor());
@ -202,7 +205,8 @@ public class FreemindExporter
final StringBuilder htmlContent = new StringBuilder("<html><head></head><body>");
for (String line : text.split("\n")) {
htmlContent.append("<p>").append(line.trim()).append("</p>");
line = StringEscapeUtils.escapeXml(line);
htmlContent.append("<p>").append(line).append("</p>");
}
htmlContent.append("</body></html>");

View File

@ -357,7 +357,7 @@ public class FreemindImporter
* 3 -> 2
* 4 -> 4
*/
private int calcFirstLevelOrder(@NotNull List<Object> freeChilden, @NotNull Node freeChild) {
private int calcFirstLevelOrder(@NotNull List<Object> freeChilden, @Nullable Node freeChild) {
final List<Node> nodes = new ArrayList<Node>();
int result;

View File

@ -123,7 +123,8 @@ final public class NotificationService {
private void handleException(Exception e) {
System.err.println("An expected error has occurred trying to send an email notification. Usually, the main reason for this is that the SMTP server properties has not been configured properly. Edit the WEB-INF/app.properties file and verify the SMTP server configuration properties.");
e.printStackTrace();
System.err.println("Cause:" + e.getMessage());
}
public void setBaseUrl(String baseUrl) {

View File

@ -52,9 +52,6 @@ public class UsersController {
@Autowired
private UserService userService;
@Value("${registration.email.enabled}")
boolean emailConfirmEnabled;
@Autowired
private ReCaptcha captchaService;
@ -111,11 +108,13 @@ public class UsersController {
user.setFirstname(userBean.getFirstname());
user.setLastname(userBean.getLastname());
user.setPassword(userBean.getPassword());
userService.createUser(user, emailConfirmEnabled);
boolean confirmRegistrationByEmail = false;
userService.createUser(user, confirmRegistrationByEmail);
// Forward to the success view ...
result = new ModelAndView("userRegistrationSuccess");
result.addObject("confirmByEmail", emailConfirmEnabled);
result.addObject("confirmByEmail", confirmRegistrationByEmail);
}
return result;
}

View File

@ -18,6 +18,7 @@
package com.wisemapping.rest;
import com.wisemapping.exceptions.ClientException;
import com.wisemapping.exceptions.WiseMappingException;
import com.wisemapping.model.User;
import com.wisemapping.rest.model.RestUser;

View File

@ -1,5 +1,5 @@
/*
* Copyright [2012] [wisemapping]
* Copyright [2011] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
@ -25,7 +25,6 @@ import com.wisemapping.mail.NotificationService;
import com.wisemapping.model.User;
import com.wisemapping.rest.model.RestErrors;
import com.wisemapping.security.Utils;
import org.apache.log4j.Logger;
import org.jetbrains.annotations.NotNull;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
@ -43,8 +42,6 @@ import java.util.Locale;
public class BaseController {
final protected static Logger logger = Logger.getLogger("com.wisemapping.rest");
@Qualifier("messageSource")
@Autowired
private ResourceBundleMessageSource messageSource;
@ -59,8 +56,8 @@ public class BaseController {
@ResponseStatus(HttpStatus.BAD_REQUEST)
@ResponseBody
public RestErrors handleClientErrors(@NotNull IllegalArgumentException ex) {
ex.printStackTrace();
return new RestErrors(ex.getMessage(), Severity.SEVERE);
System.err.println(ex.getMessage());
return new RestErrors(ex.getMessage(),Severity.WARNING);
}
@ExceptionHandler(Exception.class)

View File

@ -52,7 +52,6 @@ public class RestMindmap {
public RestMindmap() throws WiseMappingException {
this(new Mindmap(), null);
}
public RestMindmap(@NotNull Mindmap mindmap, @Nullable Collaborator collaborator) throws WiseMappingException {

View File

@ -84,7 +84,7 @@ public class TransformView extends AbstractView {
// Write the conversion content ...
final ServletOutputStream outputStream = response.getOutputStream();
if (exportFormat == ExportFormat.FREEMIND) {
response.setCharacterEncoding("iso-8859-1");
response.setCharacterEncoding("ASCII");
factory.export(properties, content, outputStream, null);
} else if (exportFormat == ExportFormat.WISEMAPPING) {
response.setCharacterEncoding("UTF-8");

View File

@ -9,13 +9,17 @@
#database.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
#database.username=wisemapping
#database.password=password
#database.validation.enabled=true
#database.validation.query=SELECT 1
# HSQL Configuration properties
database.url=jdbc:hsqldb:file:target/db/wisemapping
database.url=jdbc:hsqldb:file:${database.base.url}/db/wisemapping
database.driver=org.hsqldb.jdbc.JDBCDriver
database.hibernate.dialect=org.hibernate.dialect.HSQLDialect
database.username=sa
database.password=
database.validation.enabled=false
database.validation.query=
##################################################################################
# Mail configuration. Must be configured to enable user registration confirmation.
@ -60,9 +64,6 @@ mail.errorReporterEmail=
# Users Registration Configuration
##################################################################################
# Enable/Disable user registration confirmation by e-mail. If it's enabled, mail must be configured.
registration.email.enabled = false
# Enable captcha confirmation
google.recaptcha.enabled = true

View File

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<bean id="viewSecurityAdvisor"
class="org.springframework.aop.support.NameMatchMethodPointcutAdvisor">

View File

@ -1,74 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/app.properties" />
</bean>
<bean id="wiseDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${database.driver}"/>
<property name="url" value="${database.url}"/>
<property name="username" value="${database.username}"/>
<property name="password" value="${database.password}"/>
</bean>
<!--Descoment this lines for production environments -->
<!--<bean id="wiseDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">-->
<!--<property name="jndiName">-->
<!--<value>java:comp/env/jdbc/wisemapping</value>-->
<!--</property>-->
<!--</bean>-->
<bean id="mindmapSessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="wiseDataSource"/>
<property name="mappingResources">
<list>
<value>com/wisemapping/model/Collaborator.hbm.xml</value>
<value>com/wisemapping/model/Mindmap.hbm.xml</value>
<value>com/wisemapping/model/Collaboration.hbm.xml</value>
<value>com/wisemapping/model/CollaborationProperties.hbm.xml</value>
<value>com/wisemapping/model/AccessAuditory.hbm.xml</value>
<value>com/wisemapping/model/MindMapHistory.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${database.hibernate.dialect}</prop>
</props>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="mindmapSessionFactory"/>
</property>
</bean>
<!-- Spring Data Access Exception Translator Defintion -->
<bean id="jdbcExceptionTranslator" class="org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator">
<property name="dataSource" ref="wiseDataSource"/>
</bean>
<!-- Hibernate Template Defintion -->
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" ref="mindmapSessionFactory"/>
<property name="jdbcExceptionTranslator" ref="jdbcExceptionTranslator"/>
</bean>
<bean id="txAttributes"
class="org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource">
<property name="properties">
<props>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="txInterceptor"
class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager"/>
<property name="transactionAttributeSource" ref="txAttributes"/>
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<context:property-placeholder location="/WEB-INF/app.properties"/>
<bean id="wiseDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${database.driver}"/>
<property name="url" value="${database.url}"/>
<property name="username" value="${database.username}"/>
<property name="password" value="${database.password}"/>
<property name="testOnBorrow" value="${database.validation.enabled}"/>
<property name="validationQuery" value="${database.validation.query}"/>
</bean>
<!--Descoment this lines for production environments -->
<!--<bean id="wiseDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">-->
<!--<property name="jndiName">-->
<!--<value>java:comp/env/jdbc/wisemapping</value>-->
<!--</property>-->
<!--</bean>-->
<bean id="mindmapSessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="wiseDataSource"/>
<property name="mappingResources">
<list>
<value>com/wisemapping/model/Collaborator.hbm.xml</value>
<value>com/wisemapping/model/Mindmap.hbm.xml</value>
<value>com/wisemapping/model/Collaboration.hbm.xml</value>
<value>com/wisemapping/model/CollaborationProperties.hbm.xml</value>
<value>com/wisemapping/model/AccessAuditory.hbm.xml</value>
<value>com/wisemapping/model/MindMapHistory.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${database.hibernate.dialect}</prop>
</props>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="mindmapSessionFactory"/>
</property>
</bean>
<!-- Spring Data Access Exception Translator Defintion -->
<bean id="jdbcExceptionTranslator" class="org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator">
<property name="dataSource" ref="wiseDataSource"/>
</bean>
<!-- Hibernate Template Defintion -->
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" ref="mindmapSessionFactory"/>
<property name="jdbcExceptionTranslator" ref="jdbcExceptionTranslator"/>
</bean>
<bean id="txAttributes"
class="org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource">
<property name="properties">
<props>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
<bean id="txInterceptor"
class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager"/>
<property name="transactionAttributeSource" ref="txAttributes"/>
</bean>
</beans>

View File

@ -1,15 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<beans>
<bean id="userManager" class="com.wisemapping.dao.UserManagerImpl">
<property name="hibernateTemplate" ref="hibernateTemplate"/>
<property name="encoder" ref="encoder"/>
</bean>
<beans>
<bean id="userManager" class="com.wisemapping.dao.UserManagerImpl">
<property name="hibernateTemplate" ref="hibernateTemplate"/>
<property name="encoder" ref="encoder"/>
</bean>
<bean id="mindmapManager" class="com.wisemapping.dao.MindmapManagerImpl">
<property name="hibernateTemplate" ref="hibernateTemplate"/>
</bean>
<bean id="mindmapManager" class="com.wisemapping.dao.MindmapManagerImpl">
<property name="hibernateTemplate" ref="hibernateTemplate"/>
</bean>
</beans>
</beans>

View File

@ -2,16 +2,16 @@
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:sec="http://www.springframework.org/schema/security"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/app.properties"/>
</bean>
http://www.springframework.org/schema/security/spring-security-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:property-placeholder location="/WEB-INF/app.properties"/>
<bean id="encoder"
class="com.wisemapping.security.CustomPasswordEncoder"/>
@ -73,10 +73,8 @@
<property name="adminUser" value="${admin.user}"/>
</bean>
<beans profile="production">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/prod.properties" />
</bean>
<beans profile="heroku">
<context:property-placeholder location="/WEB-INF/heroku.properties"/>
</beans>
</beans>

View File

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<beans>
<bean id="mailer" class="com.wisemapping.mail.Mailer" singleton="true">
<bean id="mailer" class="com.wisemapping.mail.Mailer" scope ="singleton">
<constructor-arg index="0" value="${mail.serverSendEmail}"/>
<constructor-arg index="1" value="${mail.supportEmail}"/>
<constructor-arg index="2" value="${mail.errorReporterEmail}"/>
@ -74,7 +76,7 @@
</property>
</bean>
<bean id="notificationService" class="com.wisemapping.mail.NotificationService" singleton="true">
<bean id="notificationService" class="com.wisemapping.mail.NotificationService" scope ="singleton">
<property name="baseUrl" value="${site.baseurl}"/>
<property name="mailer" ref="mailer"/>
</bean>

View File

@ -14,11 +14,9 @@
<context:component-scan base-package="com.wisemapping.ncontroller"/>
<context:annotation-config/>
<mvc:annotation-driven/>
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/app.properties"/>
</bean>
<context:property-placeholder
location="/WEB-INF/app.properties"
/>
<!-- Interceptors Registration -->
<mvc:interceptors>
@ -114,8 +112,8 @@
</bean>
<beans profile="heroku">
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/heroku.properties" />
</bean>
<context:property-placeholder
location="/WEB-INF/heroku.properties"
/>
</beans>
</beans>

View File

@ -0,0 +1,38 @@
<map version="0.9.0">
<node TEXT="SaberM&#225;s" ID="ID_1">
<node TEXT="Utilizaci&#243;n de medios de expresi&#243;n art&#237;stica, digitales y anal&#243;gicos" POSITION="right" ID="ID_5"/>
<node TEXT="Precio tambi&#233;n limitado: 100-120?" POSITION="left" ID="ID_9"/>
<node TEXT="Talleres tem&#225;ticos" POSITION="right" ID="ID_2">
<node TEXT="Naturaleza" POSITION="right" ID="ID_13">
<node TEXT="Animales, Plantas, Piedras" POSITION="right" ID="ID_17"/>
</node>
<node TEXT="Arqueolog&#237;a" POSITION="right" ID="ID_21"/>
<node TEXT="Energ&#237;a" POSITION="right" ID="ID_18"/>
<node TEXT="Astronom&#237;a" POSITION="right" ID="ID_16"/>
<node TEXT="Arquitectura" POSITION="right" ID="ID_20"/>
<node TEXT="Cocina" POSITION="right" ID="ID_11"/>
<node TEXT="Poes&#237;a" POSITION="right" ID="ID_24"/>
<node TEXT="Culturas Antiguas" POSITION="right" ID="ID_25">
<node TEXT="Egipto, Grecia, China..." POSITION="right" ID="ID_26"/>
</node>
<node TEXT="Paleontolog&#237;a" POSITION="right" ID="ID_38"/>
</node>
<node TEXT="Duraci&#243;n limitada: 5-6 semanas" POSITION="left" ID="ID_6"/>
<node TEXT="Ni&#241;os y ni&#241;as que quieren saber m&#225;s" POSITION="left" ID="ID_7"/>
<node TEXT="Alternativa a otras actividades de ocio" POSITION="left" ID="ID_8"/>
<node TEXT="Uso de la tecnolog&#237;a durante todo el proceso de aprendizaje" POSITION="right" ID="ID_23"/>
<node TEXT="Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas " POSITION="right" ID="ID_3"/>
<node TEXT="Trabajo basado en la experimentaci&#243;n y en la investigaci&#243;n" POSITION="right" ID="ID_4"/>
<node TEXT="De 8 a 12 a&#241;os, sin separaci&#243;n por edades" POSITION="left" ID="ID_10"/>
<node TEXT="M&#225;ximo 10/1 por taller" POSITION="left" ID="ID_19"/>
<node TEXT="Actividades centradas en el contexto cercano" POSITION="right" ID="ID_37"/>
<node TEXT="Flexibilidad en el uso de las lenguas de trabajo (ingl&#233;s, castellano, esukara?)" POSITION="right" ID="ID_22"/>
<node TEXT="Complementamos el trabajo de la escuela" STYLE="bubble" POSITION="right" ID="ID_27">
<node TEXT="Cada uno va a su ritmo, y cada cual pone sus l&#237;mites" POSITION="right" ID="ID_30"/>
<node TEXT="Aprendemos todos de todos" POSITION="right" ID="ID_31"/>
<node TEXT="Valoramos lo que hemos aprendido" POSITION="right" ID="ID_33"/>
<node TEXT="SaberM&#225;s trabaja con, desde y para la motivaci&#243;n" POSITION="right" ID="ID_28"/>
<node TEXT="Trabajamos en equipo en nuestros proyectos " POSITION="right" ID="ID_32"/>
</node>
</node>
</map>

View File

@ -0,0 +1,790 @@
<map version="0.9.0">
<node TEXT="Indicator needs" ID="ID_1">
<font SIZE="15"/>
<node TEXT="Which new measures" STYLE="bubble" POSITION="right" ID="ID_5">
<font SIZE="10"/>
<node TEXT="Landscape of measures" STYLE="bubble" POSITION="right" ID="ID_56" BACKGROUND_COLOR="#feffff">
<node TEXT="Diversity index of innovation support instruments in the region" POSITION="right" ID="ID_45"/>
<node TEXT="Existing investments in measures" POSITION="right" ID="ID_57"/>
</node>
<node TEXT="What other regions do differently" STYLE="bubble" POSITION="right" ID="ID_38" BACKGROUND_COLOR="#feffff">
<node TEXT="Balance of measure index" POSITION="right" ID="ID_46"/>
<node TEXT="Profile comparison with other regions" POSITION="right" ID="ID_77"/>
<node TEXT="Number of specific types of measures per capita" POSITION="right" ID="ID_112"/>
</node>
</node>
<node TEXT="How to design &amp; implement measures" STYLE="bubble" POSITION="left" ID="ID_6">
<font SIZE="10"/>
<node TEXT="Good practices" STYLE="bubble" POSITION="left" ID="ID_41" BACKGROUND_COLOR="#feffff"/>
<node TEXT="Diagnostics" STYLE="bubble" POSITION="left" ID="ID_80" BACKGROUND_COLOR="#feffff">
<node TEXT="Internal business innovation factors" POSITION="left" ID="ID_81"/>
<node TEXT="Return on investment to innovation" POSITION="left" ID="ID_359">
<node POSITION="left" ID="ID_360">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Firm's turnover from (new to firm)</p>
<p> product innovation (as a pecentage of total turnover)</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="left" ID="ID_361">
<richcontent TYPE="NODE">
<html>
<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>
</body>
</html>
</richcontent>
</node>
<node POSITION="left" ID="ID_362">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Scientific articles by type of collaboration (per capita)</p>
<p> (international co-authoriship, domestic co-authoriship, single author)</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="left" ID="ID_363">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Increase in a share of expenditures on technological</p>
<p>innovations in the total amount of regional firms&#8217; expenditures, %</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Increase in the number of innovative companies with in-house R&amp;D" POSITION="left" ID="ID_364">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Increase in th number of innovative companies without in-house R&amp;D" POSITION="left" ID="ID_365">
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="left" ID="ID_366">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Increase in th number of firms with</p>
<p> international/national collaboration on innovation</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="left" ID="ID_367">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Highly cited scientific articles (as a percentage of</p>
<p>highly cited scientific article in the whole Federation)</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="left" ID="ID_368">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Patents filed by public research organisations</p>
<p>(as a percentafe of patent application filed under PCT)</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Number of international patents" POSITION="left" ID="ID_369">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Start-up activity (as a percentage of start-up activity in the whole Federation)" POSITION="left" ID="ID_370"/>
<node TEXT="Number of innovative companies to the number of students " POSITION="left" ID="ID_393">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Number of innovative companies to the number of researchers " POSITION="left" ID="ID_394">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Volume of license agreements to the volume of R&amp;D support from the regional budget " POSITION="left" ID="ID_400">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
</node>
</node>
<node TEXT="How much effort: where &amp; how" STYLE="bubble" POSITION="right" ID="ID_2">
<font SIZE="10"/>
<node TEXT="The bottom-line" STYLE="bubble" POSITION="right" ID="ID_3" BACKGROUND_COLOR="#feffff">
<node TEXT="Wages" POSITION="right" ID="ID_15">
<node TEXT="Dynamics of real wages" POSITION="right" ID="ID_12"/>
<node TEXT="Average wage (compare to the Fed)" POSITION="right" ID="ID_14"/>
</node>
<node TEXT="Productivity" POSITION="right" ID="ID_86">
<node TEXT="Labor productivity" POSITION="right" ID="ID_190">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Labor productivity growth rate" POSITION="right" ID="ID_191"/>
</node>
<node TEXT="Jobs" POSITION="right" ID="ID_87">
<node TEXT="Share of high-productive jobs" POSITION="right" ID="ID_13">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Share of creative industries jobs" POSITION="right" ID="ID_88"/>
<node TEXT="Uneployment rate of university graduates" POSITION="right" ID="ID_336">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Income" POSITION="right" ID="ID_89">
<node TEXT="GRP per capita and its growth rate" POSITION="right" ID="ID_11"/>
</node>
</node>
<node TEXT="Influencing factors" STYLE="bubble" POSITION="right" ID="ID_8" BACKGROUND_COLOR="#feffff">
<node TEXT="Economy" POSITION="right" ID="ID_55">
<node TEXT="Economic structure" POSITION="right" ID="ID_166"/>
<node TEXT="Volume of manufacturing production per capita " POSITION="right" ID="ID_395"/>
<node TEXT="Manufacturing value added per capita (non-natural resource-based)" POSITION="right" ID="ID_396"/>
</node>
<node TEXT="The enabling environment" POSITION="right" ID="ID_9">
<node TEXT="Ease of doing business" POSITION="right" ID="ID_16">
<node TEXT="Level of administrative barriers (number and cost of administrative procedures) " POSITION="right" ID="ID_412">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Competition index" POSITION="right" ID="ID_18"/>
<node TEXT="Workforce" POSITION="right" ID="ID_120">
<node TEXT="Quality of education" POSITION="right" ID="ID_19">
<node TEXT="Inrease in the number of International students" POSITION="right" ID="ID_337">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Quantity of education" POSITION="right" ID="ID_121">
<node TEXT="Participation in life-long learning" POSITION="right" ID="ID_122">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Increase in literarecy " POSITION="right" ID="ID_333">
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="right" ID="ID_188">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Amount of university and colleague</p>
<p>students per 10 thousands population</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_276">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Share of employees with higher education in</p>
<p>the total amount of population at the working age</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Increase in University students" POSITION="right" ID="ID_332">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Government expenditure on General University Funding" POSITION="right" ID="ID_351"/>
<node TEXT="Access to training, information, and consulting support " POSITION="right" ID="ID_409">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Science &amp; engineering workforce" POSITION="right" ID="ID_285">
<node TEXT="Availability of scientists and engineers" POSITION="right" ID="ID_147"/>
<node TEXT="Amount of researches per 10 thousands population" POSITION="right" ID="ID_189">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Average wage of researches per average wage in the region" POSITION="right" ID="ID_284"/>
<node TEXT="Share of researchers in the total number of employees in the region" POSITION="right" ID="ID_286"/>
</node>
</node>
<node TEXT="Government" POSITION="right" ID="ID_132">
<node TEXT="Total expenditure of general government as a percentage of GDP" POSITION="right" ID="ID_134"/>
<node TEXT="Government expenditure on Economic Development" POSITION="right" ID="ID_352"/>
</node>
<node TEXT="Access to finance" POSITION="right" ID="ID_342">
<node TEXT="Deals" POSITION="right" ID="ID_387">
<node TEXT="Venture capital investments for start-ups as a percentage of GDP" POSITION="right" ID="ID_345"/>
<node TEXT="Amounts of business angel, pre-seed, seed and venture financing" POSITION="right" ID="ID_344"/>
<node TEXT="Amount of public co-funding of business R&amp;D" POSITION="right" ID="ID_348"/>
<node TEXT="Number of startups received venture financing " POSITION="right" ID="ID_385"/>
<node TEXT="Number of companies received equity investments " POSITION="right" ID="ID_386">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Available" POSITION="right" ID="ID_388">
<node TEXT="Amount of matching grants available in the region for business R&amp;D" POSITION="right" ID="ID_347"/>
<node TEXT="Number of Business Angels" POSITION="right" ID="ID_346"/>
</node>
</node>
<node TEXT="ICT" POSITION="right" ID="ID_135">
<node TEXT="ICT use" POSITION="right" ID="ID_17"/>
<node TEXT="Broadband penetration " POSITION="right" ID="ID_136"/>
<node TEXT="Internet penetration" POSITION="right" ID="ID_334"/>
<node TEXT="Computer literacy " POSITION="right" ID="ID_335"/>
</node>
<arrowlink STARTARROW="Default" DESTINATION="ID_76"/>
</node>
<node TEXT="Behavior of innovation actors" POSITION="right" ID="ID_10">
<node TEXT="Access to markets" POSITION="right" ID="ID_167">
<node TEXT="FDI" POSITION="right" ID="ID_97">
<node TEXT="foreign JVs" POSITION="right" ID="ID_96"/>
<node TEXT="Inflow of foreign direct investments in high-technology industries" POSITION="right" ID="ID_157"/>
<node TEXT="Foreign direct investment jobs" POSITION="right" ID="ID_158"/>
<node TEXT="FDI as a share of regional non natural resource-based GRP " POSITION="right" ID="ID_159"/>
<node TEXT="Number of foreign subsidiaries operating in the region" POSITION="right" ID="ID_160"/>
<node TEXT="Share of foreign controlled enterprises" POSITION="right" ID="ID_161"/>
</node>
<node TEXT="Exports" POSITION="right" ID="ID_168">
<node TEXT="Export intensity in manufacturing and services" POSITION="right" ID="ID_169">
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="right" ID="ID_375">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p> Share of high-technology export in the total volume</p>
<p> of production of goods, works and services</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="right" ID="ID_377">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Share of innovation production/serivces that goes for export,</p>
<p>by zones (EU, US, CIS, other countries</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Share of high-technology products in government procurements" POSITION="right" ID="ID_338"/>
</node>
<node TEXT="Entrepreneurship culture" POSITION="right" ID="ID_34">
<node TEXT="Fear of failure rate" POSITION="right" ID="ID_150"/>
<node TEXT="Entrepreneurship as desirable career choice" POSITION="right" ID="ID_151"/>
<node TEXT="High Status Successful Entrepreneurship" POSITION="right" ID="ID_152"/>
</node>
<node TEXT="Collaboration &amp; partnerships" POSITION="right" ID="ID_54">
<node TEXT="Number of business contracts with foreign partners for R&amp;D collaboration" POSITION="right" ID="ID_163"/>
<node TEXT="Share of R&amp;D financed from foreign sources" POSITION="right" ID="ID_164"/>
<node TEXT="Firms collaborating on innovation with organizations in other countries" POSITION="right" ID="ID_165"/>
<node POSITION="right" ID="ID_173">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Share of Innovative companies collaborating</p>
<p>with research institutions on innovation</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_174">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Number of joint projects conducted by the local comapnies</p>
<p> and local consulting/intermediary agencies</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="science and industry links" POSITION="right" ID="ID_358"/>
</node>
<node TEXT="Technology absorption" POSITION="right" ID="ID_115">
<node TEXT="Local supplier quality" POSITION="right" ID="ID_116"/>
<node POSITION="right" ID="ID_127">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Share of expenditures on technological innovations</p>
<p>in the amount of sales</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Number of purchased new technologies" POSITION="right" ID="ID_129">
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="right" ID="ID_354">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Investments in ICT by asset (IT equipment,</p>
<p> communication equipment, software)</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Machinery and equipment" POSITION="right" ID="ID_355"/>
<node TEXT="Software and databases" POSITION="right" ID="ID_356"/>
<node POSITION="right" ID="ID_373">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Level of energy efficiency of the regional economy</p>
<p>(can be measured by sectors and for the whole region)</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Share of wastes in the total volume of production (by sector)" POSITION="right" ID="ID_374">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Innovation activities in firms" POSITION="right" ID="ID_123">
<node TEXT="Share of innovative companies" POSITION="right" ID="ID_35"/>
<node TEXT="Business R&amp;D expenditures per GRP" POSITION="right" ID="ID_128"/>
<node TEXT="Factors hampering innovation" POSITION="right" ID="ID_145"/>
<node TEXT="Expenditure on innovation by firm size" POSITION="right" ID="ID_350"/>
<node TEXT="R&amp;D and other intellectl property products" POSITION="right" ID="ID_357"/>
<node TEXT="Growth of the number of innovative companies " POSITION="right" ID="ID_390"/>
<node TEXT="Outpus" POSITION="right" ID="ID_398">
<node TEXT="Volume of new to Russian market production per GRP" POSITION="right" ID="ID_124"/>
<node TEXT="Volume of new to world market production per total production" POSITION="right" ID="ID_376">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Growth of the volume of production of innovative companies " POSITION="right" ID="ID_389"/>
<node TEXT="Volume of innovation production per capita " POSITION="right" ID="ID_397">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
</node>
<node TEXT="Entrepreneurial activities" POSITION="right" ID="ID_148">
<node TEXT="New business density" POSITION="right" ID="ID_117"/>
<node TEXT="Volume of newly registered corporations " POSITION="right" ID="ID_119"/>
<node TEXT="Share of gazelle companies in the total number of businesses" POSITION="right" ID="ID_170"/>
</node>
<node TEXT="R&amp;D production" POSITION="right" ID="ID_277">
<node TEXT="Outputs" POSITION="right" ID="ID_280">
<node POSITION="right" ID="ID_279">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Amount of domestically protected intellectual</p>
<p> property per 1 mln. population</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Amount of PCT-applications per 1 mln. population" POSITION="right" ID="ID_278"/>
<node TEXT="Number of domestic patent applications per R&amp;D expenditures" POSITION="right" ID="ID_281"/>
<node POSITION="right" ID="ID_282">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Number of intellectual property exploited by regional</p>
<p>enterprises per 1 mln. population</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Publication activity of regional scientists and researches" POSITION="right" ID="ID_283"/>
</node>
<node TEXT="Inputs" POSITION="right" ID="ID_340">
<node TEXT="Regional and local budget expenditures on R&amp;D" POSITION="right" ID="ID_341"/>
<node TEXT="Government R&amp;D expenditure " POSITION="right" ID="ID_349"/>
</node>
</node>
<node TEXT="Public sector innovation" POSITION="right" ID="ID_415">
<node POSITION="right" ID="ID_416">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Number of advanced ICT introduced in the budgetary organizations</p>
<p>(regional power, municipal bodies, social and educational organizations) </p>
</body>
</html>
</richcontent>
</node>
<node TEXT="E-government index" POSITION="right" ID="ID_418"/>
<node POSITION="right" ID="ID_419">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Number of management innovations introduced in the budgetary organizations</p>
<p> (regional power, municipal bodies, social and educational organizations) </p>
</body>
</html>
</richcontent>
</node>
</node>
</node>
<node TEXT="Supporting organizations" POSITION="right" ID="ID_113">
<node TEXT="Research institutions" POSITION="right" ID="ID_51">
<node TEXT="Collaboration" POSITION="right" ID="ID_171">
<node POSITION="right" ID="ID_172">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Number of interactions between universities</p>
<p>and large companies by university size</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Resources" POSITION="right" ID="ID_184">
<node TEXT="R&amp;D expenditures per 1 researcher" POSITION="right" ID="ID_137"/>
<node TEXT="Average wage of researches per average wage in the region" POSITION="right" ID="ID_146"/>
<node TEXT="High education expenditure on R&amp;D" POSITION="right" ID="ID_353"/>
</node>
<node TEXT="Scientific outputs" POSITION="right" ID="ID_185">
<node TEXT="Publications" POSITION="right" ID="ID_306">
<node TEXT="Impact of publications in the ISI database (h-index)" POSITION="right" ID="ID_304"/>
<node TEXT="Number of publications in international journals per worker per year" POSITION="right" ID="ID_186"/>
<node POSITION="right" ID="ID_303">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Publications: Academic articles in international peer-reviewed</p>
<p> journals per 1,000 researchers [articles/1,000 researchers].</p>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Number of foreign patents granted per staff" POSITION="right" ID="ID_187"/>
</node>
<node TEXT="Supportive measures" POSITION="right" ID="ID_312">
<node TEXT="Diversity index of university entrepreneurship support measures" POSITION="right" ID="ID_313"/>
</node>
<node TEXT="Commercialization" POSITION="right" ID="ID_299">
<node TEXT="Licensing" POSITION="right" ID="ID_308">
<node POSITION="right" ID="ID_298">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Academic licenses: Number of licenses</p>
<p>per 1,000 researchers.[licenses/researcher] </p>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Spin-offs" POSITION="right" ID="ID_309">
<node POSITION="right" ID="ID_300">
<richcontent TYPE="NODE">
<html>
<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>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Industry contracts" POSITION="right" ID="ID_310">
<node TEXT="Industry revenue per staff " POSITION="right" ID="ID_297"/>
<node POSITION="right" ID="ID_305">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Foreign contracts: Number of contracts with foreign industria</p>
<p>l companies at scientific and educational organizations</p>
<p>per 1,000 researchers [contracts/researchers]</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Share of industry income from foreign companies" POSITION="right" ID="ID_307"/>
<node POSITION="right" ID="ID_90">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Revenue raised from industry R&amp;D as a fraction</p>
<p>of total institutional budget (up to a cap)</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Difficulties faced by research organization in collaborating with SMEs" POSITION="right" ID="ID_311"/>
</node>
</node>
</node>
<node TEXT="Private market" POSITION="right" ID="ID_153">
<node TEXT="Number of innovation &amp; IP services organizations" POSITION="right" ID="ID_154"/>
<node TEXT="Number of private innovation infrastructure organizations " POSITION="right" ID="ID_155"/>
<node TEXT="Access to certification and licensing for specific activities " POSITION="right" ID="ID_410"/>
<node TEXT="Access to suppliers of equipment, production and engineering services " POSITION="right" ID="ID_411"/>
</node>
<node TEXT="Innovation infrastructure" POSITION="right" ID="ID_114">
<node TEXT="Investments" POSITION="right" ID="ID_327">
<node TEXT="Public investment in innovation infrastructure" POSITION="right" ID="ID_315"/>
<node TEXT="Increase of government investment in innovation infrastructure" POSITION="right" ID="ID_328"/>
<node TEXT=" Number of Development institution projects performed in the region" POSITION="right" ID="ID_339"/>
<node TEXT="Volume of seed investments by the regional budget " POSITION="right" ID="ID_391"/>
<node TEXT="Volume of venture financing from the regional budget " POSITION="right" ID="ID_392"/>
</node>
<node TEXT="Volume of state support per one company " POSITION="right" ID="ID_413"/>
</node>
</node>
</node>
</node>
<node TEXT="What to do about existing measures" STYLE="bubble" POSITION="left" ID="ID_4">
<font SIZE="10"/>
<node TEXT="Demand for measure" STYLE="bubble" POSITION="left" ID="ID_42" BACKGROUND_COLOR="#feffff">
<node TEXT="Quality of beneficiaries" POSITION="left" ID="ID_50">
<node TEXT="Growth rates of employment in supported innovative firms" POSITION="left" ID="ID_292"/>
<node TEXT="Growth rates of employment in supported innovative firms" POSITION="left" ID="ID_293"/>
<node TEXT="Role of IP for tenants/clients" POSITION="left" ID="ID_323"/>
<node TEXT="Share of tenants with innovation activities" POSITION="left" ID="ID_326"/>
<node POSITION="left" ID="ID_329">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Gazelle tenant: Share of tenants with</p>
<p>annual revenue growth of more than 20%</p>
<p> for each of the past four years or since formation [%]</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="left" ID="ID_330">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Globalization of tenants: Median share of tenant</p>
<p>revenues obtained from exports [%]</p>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Number of beneficiaries" POSITION="left" ID="ID_78">
<node TEXT="Number of projects conducted by companies in cooperation with innovation infrastructure" POSITION="left" ID="ID_383"/>
<node TEXT="Scope and intensity of use of services offered to firms" POSITION="left" ID="ID_325"/>
<node TEXT="Number of companies supported by the infrastructure (training, information, consultations, etc.)" POSITION="left" ID="ID_384"/>
<node TEXT="Increase in the number of business applying for public support programmes (regional, federal, international) " POSITION="left" ID="ID_401"/>
</node>
<node TEXT="Degree of access" POSITION="left" ID="ID_182">
<node TEXT="Level of awareness" POSITION="left" ID="ID_52">
<node POSITION="left" ID="ID_181">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Perception (opinion poll) of business managers</p>
<p> regarding public support programmes</p>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Transparency" POSITION="left" ID="ID_53">
<node POSITION="left" ID="ID_175">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Perception of business managers in terms</p>
<p> of level of transparency of support measures in the region</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node POSITION="left" ID="ID_183">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Description by regional business managers of the way the</p>
<p>select and apply for regional and federal support schemes</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Number of applicants" POSITION="left" ID="ID_176">
<node TEXT="Increase in the number of business applying for public support programmes" POSITION="left" ID="ID_177"/>
<node TEXT="Number of companies that know about a particular program" POSITION="left" ID="ID_178"/>
<node TEXT="Increase in the number of start-ups applying to receive VC investments" POSITION="left" ID="ID_179"/>
<node TEXT="Increase in the number of start-ups applying for a place in the incubators" POSITION="left" ID="ID_180"/>
</node>
</node>
<node TEXT="Inputs of measures" STYLE="bubble" POSITION="left" ID="ID_109" BACKGROUND_COLOR="#feffff">
<node TEXT="Qualified staff" POSITION="left" ID="ID_110"/>
<node TEXT="Budget per beneficiary" POSITION="left" ID="ID_111"/>
</node>
<node TEXT="Performance of measure" STYLE="bubble" POSITION="left" ID="ID_48" BACKGROUND_COLOR="#feffff">
<node TEXT="Implementation of measure" POSITION="left" ID="ID_47" BACKGROUND_COLOR="#feffff">
<node TEXT="Target vs. actual KPIs" POSITION="left" ID="ID_106"/>
<node TEXT="Intermediate outputs per budget" POSITION="left" ID="ID_287"/>
<node TEXT="Qualification of staff" POSITION="left" ID="ID_372">
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<node TEXT="Output of measure" POSITION="left" ID="ID_58">
<node TEXT="Opinion surveys" POSITION="left" ID="ID_101">
<node TEXT="Opinions of beneficiaries" POSITION="left" ID="ID_102"/>
</node>
<node TEXT="Hard metrics" POSITION="left" ID="ID_103">
<node TEXT="Output per headcount (e.g. staff, researchers)" POSITION="left" ID="ID_289"/>
<node TEXT="Productivity analysis" POSITION="left" ID="ID_288"/>
</node>
</node>
</node>
<node TEXT="Impact of measure" STYLE="bubble" POSITION="left" ID="ID_49" BACKGROUND_COLOR="#feffff">
<node TEXT="Opinion surveys" POSITION="left" ID="ID_79">
<node TEXT="Perception of support impact (opinion polls)" POSITION="left" ID="ID_294"/>
<node TEXT="Perception of the activity of regional government by the regional companies " POSITION="left" ID="ID_404"/>
</node>
<node TEXT="Hard metrics" POSITION="left" ID="ID_104">
<node TEXT="Increase in number of small innovation enterprises " POSITION="left" ID="ID_331"/>
<node TEXT="Growth of the total volume of salary in the supported companies (excluding inflation) " POSITION="left" ID="ID_402">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Growth of the volume of regional taxes paid by the supported companies " POSITION="left" ID="ID_403">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Growth of the volume of export at the supported companies " POSITION="left" ID="ID_405"/>
<node TEXT="Number of new products/projects at the companies that received support " POSITION="left" ID="ID_406"/>
</node>
<node TEXT="Impact assessment " POSITION="left" ID="ID_290"/>
<node POSITION="left" ID="ID_291">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Average leverage of 1rub (there would be</p>
<p>several programs with different leverage)</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
<node POSITION="left" ID="ID_296">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Volume of attracted money per one ruble</p>
<p>of regional budget expenditures on innovation projects</p>
</body>
</html>
</richcontent>
<icon BUILTIN="messagebox_warning"/>
</node>
</node>
<arrowlink STARTARROW="Default" DESTINATION="ID_114"/>
</node>
<node TEXT="What investments in innovative projects" STYLE="bubble" POSITION="right" ID="ID_7">
<font SIZE="10"/>
<node TEXT="Competitive niches" STYLE="bubble" POSITION="right" ID="ID_61" BACKGROUND_COLOR="#feffff">
<node TEXT="Clusters behavior" POSITION="right" ID="ID_59">
<node TEXT="Cluster EU star rating" POSITION="right" ID="ID_60"/>
<node TEXT="Share of value added of cluster enterprises in GRP" POSITION="right" ID="ID_318"/>
<node TEXT="Share of cluster products in the relevant world market segment " POSITION="right" ID="ID_320">
<icon BUILTIN="messagebox_warning"/>
</node>
<node TEXT="Share of export in cluster total volume of sales" POSITION="right" ID="ID_321"/>
<node TEXT="Growth of the volume of production in the cluster companies" POSITION="right" ID="ID_379"/>
<node POSITION="right" ID="ID_380">
<richcontent TYPE="NODE">
<html>
<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>
</body>
</html>
</richcontent>
</node>
<node TEXT="Growth of the volume of innovation production in the cluster" POSITION="right" ID="ID_381"/>
<node TEXT="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) " POSITION="right" ID="ID_407"/>
<node TEXT="Internal behavior" POSITION="right" ID="ID_408">
<node TEXT="Median wage in the cluster" POSITION="right" ID="ID_319"/>
<node TEXT="Growth of the volume of R&amp;D in the cluster" POSITION="right" ID="ID_382"/>
<node TEXT="Cluster collaboration" POSITION="right" ID="ID_108"/>
</node>
</node>
<node TEXT="R&amp;D" POSITION="right" ID="ID_66">
<node TEXT="Patent map" POSITION="right" ID="ID_65"/>
<node TEXT="Publications map" POSITION="right" ID="ID_371"/>
</node>
<node TEXT="Industry" POSITION="right" ID="ID_67">
<node TEXT="FDI map" POSITION="right" ID="ID_63"/>
<node TEXT="Gazelle map" POSITION="right" ID="ID_62"/>
<node TEXT="Business R&amp;D expenditures as a share of revenues by sector" POSITION="right" ID="ID_131"/>
<node TEXT="Share of regional products in the world market" POSITION="right" ID="ID_378"/>
<node TEXT="Expenditure on innovation by firm size, by sector " POSITION="right" ID="ID_414"/>
</node>
<node TEXT="Entrepreneurship" POSITION="right" ID="ID_72">
<node TEXT="Startup map" POSITION="right" ID="ID_73"/>
<node TEXT="Venture investment map" POSITION="right" ID="ID_74"/>
<node TEXT="Attractiveness to public competitive funding" POSITION="right" ID="ID_317">
<node TEXT="Fed and regional seed fund investments" POSITION="right" ID="ID_316"/>
<node POSITION="right" ID="ID_314">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>FASIE projects: Number of projects supported</p>
<p>by the FASIE per 1,000 workers [awards/worker] </p>
</body>
</html>
</richcontent>
</node>
</node>
</node>
</node>
<node TEXT="Competitiveness support factors" STYLE="bubble" POSITION="right" ID="ID_64" BACKGROUND_COLOR="#ffffff">
<node TEXT="Private investment in innovation" POSITION="right" ID="ID_68"/>
</node>
</node>
<node TEXT="How to improve image" STYLE="bubble" POSITION="left" ID="ID_69" BACKGROUND_COLOR="#e0e5ef">
<font SIZE="10"/>
<node TEXT="Rankings" STYLE="bubble" POSITION="left" ID="ID_75" BACKGROUND_COLOR="#feffff">
<node TEXT="macro indicators" POSITION="left" ID="ID_70"/>
<node TEXT="meso-indicators" POSITION="left" ID="ID_71"/>
</node>
<node TEXT="Innovation investment climate" STYLE="bubble" POSITION="left" ID="ID_76" BACKGROUND_COLOR="#feffff"/>
</node>
</node>
</map>

View File

@ -0,0 +1,39 @@
<map name="81701" version="tango"><topic central="true" text="Indicator needs" id="1" fontStyle=";15;;;;"><topic position="221,-1937" order="0" text="Which new measures" shape="rounded rectagle" id="5" fontStyle=";10;;;;"><note><![CDATA[Identifying new measures or investments that should be implemented.]]></note><topic position="394,-1978" order="0" text="Landscape of measures" shape="rounded rectagle" id="56" bgColor="#feffff"><topic position="616,-1991" order="0" text="Diversity index of innovation support instruments in the region" id="45"><note><![CDATA[Number of different innovations policy instruments existing in the region as a share of a total number representing a full typology of instruments]]></note></topic><topic position="550,-1964" order="1" text="Existing investments in measures" id="57"/></topic><topic position="414,-1910" order="1" text="What other regions do differently" shape="rounded rectagle" id="38" bgColor="#feffff"><topic position="574,-1937" order="0" text="Balance of measure index" id="46"/><topic position="597,-1910" order="1" text="Profile comparison with other regions" id="77"/><topic position="620,-1883" order="2" text="Number of specific types of measures per capita" id="112"/></topic></topic><topic position="-279,-545" order="1" text="How to design &amp; implement measures" shape="rounded rectagle" id="6" fontStyle=";10;;;;"><note><![CDATA[Understanding how to design the details of a particular measure and how to implement them.]]></note><topic position="-493,-775" order="0" text="Good practices" shape="rounded rectagle" id="41" bgColor="#feffff"/><topic position="-486,-531" order="1" text="Diagnostics" shape="rounded rectagle" id="80" bgColor="#feffff"><topic position="-621,-748" order="0" text="Internal business innovation factors" id="81"/><topic position="-621,-518" order="1" text="Return on investment to innovation" id="359"><topic position="-851,-717" order="0" id="360"><text><![CDATA[Firm's turnover from (new to firm)
product innovation (as a pecentage of total turnover)]]></text><icon id="sign_warning"/></topic><topic position="-920,-682" order="1" id="361"><text><![CDATA[Increase in the probability to innovate linked to ICT use
(in product innovation, process innovation, organisational innovaton, marketing innovation)]]></text></topic><topic position="-882,-647" order="2" id="362"><text><![CDATA[Scientific articles by type of collaboration (per capita)
(international co-authoriship, domestic co-authoriship, single author)]]></text><icon id="sign_warning"/></topic><topic position="-876,-612" order="3" id="363"><text><![CDATA[Increase in a share of expenditures on technological
innovations in the total amount of regional firms expenditures, %]]></text><icon id="sign_warning"/></topic><topic position="-877,-581" order="4" text="Increase in the number of innovative companies with in-house R&amp;D" id="364"><icon id="sign_warning"/></topic><topic position="-881,-554" order="5" text="Increase in th number of innovative companies without in-house R&amp;D" id="365"><icon id="sign_warning"/></topic><topic position="-842,-523" order="6" id="366"><text><![CDATA[Increase in th number of firms with
international/national collaboration on innovation]]></text><icon id="sign_warning"/></topic><topic position="-849,-488" order="7" id="367"><text><![CDATA[Highly cited scientific articles (as a percentage of
highly cited scientific article in the whole Federation)]]></text><icon id="sign_warning"/></topic><topic position="-852,-453" order="8" id="368"><text><![CDATA[Patents filed by public research organisations
(as a percentafe of patent application filed under PCT)]]></text><icon id="sign_warning"/></topic><topic position="-805,-422" order="9" text="Number of international patents" id="369"><icon id="sign_warning"/></topic><topic position="-893,-395" order="10" text="Start-up activity (as a percentage of start-up activity in the whole Federation)" id="370"/><topic position="-861,-368" order="11" text="Number of innovative companies to the number of students " id="393"><icon id="sign_warning"/></topic><topic position="-867,-341" order="12" text="Number of innovative companies to the number of researchers " id="394"><icon id="sign_warning"/></topic><topic position="-916,-314" order="13" text="Volume of license agreements to the volume of R&amp;D support from the regional budget " id="400"><icon id="sign_warning"/></topic></topic></topic></topic><topic position="255,-251" order="2" text="How much effort: where &amp; how" shape="rounded rectagle" id="2" fontStyle=";10;;;;"><note><![CDATA[Understanding the level of effort the region needs to take to compete on innovation and where to put this effort]]></note><topic position="454,-1762" order="0" text="The bottom-line" shape="rounded rectagle" id="3" bgColor="#feffff"><note><![CDATA[This is what policy makers care about in the end]]></note><topic position="547,-1843" order="0" text="Wages" id="15"><topic position="649,-1856" order="0" text="Dynamics of real wages" id="12"/><topic position="675,-1829" order="1" text="Average wage (compare to the Fed)" id="14"/></topic><topic position="558,-1789" order="1" text="Productivity" id="86"><topic position="665,-1802" order="0" text="Labor productivity" id="190"><icon id="sign_warning"/></topic><topic position="683,-1775" order="1" text="Labor productivity growth rate" id="191"/></topic><topic position="543,-1721" order="2" text="Jobs" id="87"><topic position="659,-1748" order="0" text="Share of high-productive jobs" id="13"><icon id="sign_warning"/></topic><topic position="657,-1721" order="1" text="Share of creative industries jobs" id="88"/><topic position="683,-1694" order="2" text="Uneployment rate of university graduates" id="336"><icon id="sign_warning"/></topic></topic><topic position="549,-1667" order="3" text="Income" id="89"><topic position="674,-1667" order="0" text="GRP per capita and its growth rate" id="11"/></topic></topic><topic position="452,-143" order="1" text="Influencing factors" shape="rounded rectagle" id="8" bgColor="#feffff"><topic position="548,-1613" order="0" text="Economy" id="55"><topic position="644,-1640" order="0" text="Economic structure" id="166"/><topic position="701,-1613" order="1" text="Volume of manufacturing production per capita " id="395"/><topic position="742,-1586" order="2" text="Manufacturing value added per capita (non-natural resource-based)" id="396"/></topic><topic position="582,-1200" order="1" text="The enabling environment" id="9"><topic position="728,-1559" order="0" text="Ease of doing business" id="16"><note><![CDATA[WB]]></note><topic position="990,-1559" order="0" text="Level of administrative barriers (number and cost of administrative procedures) " id="412"><icon id="sign_warning"/></topic></topic><topic position="719,-1532" order="1" text="Competition index" id="18"><note><![CDATA[GCR]]></note></topic><topic position="695,-1349" order="2" text="Workforce" id="120"><topic position="804,-1505" order="0" text="Quality of education" id="19"><note><![CDATA[GCR]]></note><topic position="995,-1505" order="0" text="Inrease in the number of International students" id="337"><icon id="sign_warning"/></topic></topic><topic position="800,-1389" order="1" text="Quantity of education" id="121"><topic position="962,-1478" order="0" text="Participation in life-long learning" id="122"><note><![CDATA[per 100 population aged 25-64]]></note><icon id="sign_warning"/></topic><topic position="933,-1451" order="1" text="Increase in literarecy " id="333"><icon id="sign_warning"/></topic><topic position="959,-1420" order="2" id="188"><text><![CDATA[Amount of university and colleague
students per 10 thousands population]]></text></topic><topic position="986,-1385" order="3" id="276"><text><![CDATA[Share of employees with higher education in
the total amount of population at the working age]]></text></topic><topic position="953,-1354" order="4" text="Increase in University students" id="332"><icon id="sign_warning"/></topic><topic position="996,-1327" order="5" text="Government expenditure on General University Funding" id="351"/><topic position="1001,-1300" order="6" text="Access to training, information, and consulting support " id="409"><icon id="sign_warning"/></topic></topic><topic position="822,-1233" order="2" text="Science &amp; engineering workforce" id="285"><topic position="1013,-1273" order="0" text="Availability of scientists and engineers" id="147"><note><![CDATA[GCR]]></note></topic><topic position="1037,-1246" order="1" text="Amount of researches per 10 thousands population" id="189"><icon id="sign_warning"/></topic><topic position="1050,-1219" order="2" text="Average wage of researches per average wage in the region" id="284"/><topic position="1066,-1192" order="3" text="Share of researchers in the total number of employees in the region" id="286"/></topic></topic><topic position="700,-1152" order="3" text="Government" id="132"><topic position="897,-1165" order="0" text="Total expenditure of general government as a percentage of GDP" id="134"/><topic position="870,-1138" order="1" text="Government expenditure on Economic Development" id="352"/></topic><topic position="710,-1030" order="4" text="Access to finance" id="342"><topic position="796,-1057" order="0" text="Deals" id="387"><topic position="981,-1111" order="0" text="Venture capital investments for start-ups as a percentage of GDP" id="345"/><topic position="980,-1084" order="1" text="Amounts of business angel, pre-seed, seed and venture financing" id="344"/><topic position="940,-1057" order="2" text="Amount of public co-funding of business R&amp;D" id="348"/><topic position="942,-1030" order="3" text="Number of startups received venture financing " id="385"/><topic position="957,-1003" order="4" text="Number of companies received equity investments " id="386"><icon id="sign_warning"/></topic></topic><topic position="803,-963" order="1" text="Available" id="388"><topic position="1000,-976" order="0" text="Amount of matching grants available in the region for business R&amp;D" id="347"/><topic position="917,-949" order="1" text="Number of Business Angels" id="346"/></topic></topic><topic position="682,-882" order="5" text="ICT" id="135"><topic position="751,-922" order="0" text="ICT use" id="17"><note><![CDATA[GCR]]></note></topic><topic position="775,-895" order="1" text="Broadband penetration " id="136"/><topic position="769,-868" order="2" text="Internet penetration" id="334"/><topic position="765,-841" order="3" text="Computer literacy " id="335"/></topic></topic><topic position="589,-109" order="2" text="Behavior of innovation actors" id="10"><topic position="726,-685" order="0" text="Access to markets" id="167"><topic position="810,-747" order="0" text="FDI" id="97"><topic position="880,-814" order="0" text="foreign JVs" id="96"/><topic position="990,-787" order="1" text="Inflow of foreign direct investments in high-technology industries" id="157"/><topic position="926,-760" order="2" text="Foreign direct investment jobs" id="158"><note><![CDATA[: the percentage of the workforce employed by foreign companies [%]. ]]></note></topic><topic position="977,-733" order="3" text="FDI as a share of regional non natural resource-based GRP " id="159"/><topic position="967,-706" order="4" text="Number of foreign subsidiaries operating in the region" id="160"/><topic position="936,-679" order="5" text="Share of foreign controlled enterprises" id="161"/></topic><topic position="818,-617" order="1" text="Exports" id="168"><topic position="979,-652" order="0" text="Export intensity in manufacturing and services" id="169"><note><![CDATA[: exports as a share of total output in manufacturing and services [%].]]></note><icon id="sign_warning"/></topic><topic position="986,-621" order="1" id="375"><text><![CDATA[ Share of high-technology export in the total volume
of production of goods, works and services]]></text><icon id="sign_warning"/></topic><topic position="1006,-586" order="2" id="377"><text><![CDATA[Share of innovation production/serivces that goes for export,
by zones (EU, US, CIS, other countries]]></text><icon id="sign_warning"/></topic></topic><topic position="932,-555" order="2" text="Share of high-technology products in government procurements" id="338"/></topic><topic position="738,-501" order="1" text="Entrepreneurship culture" id="34"><topic position="872,-528" order="0" text="Fear of failure rate" id="150"><note><![CDATA[GEM]]></note></topic><topic position="921,-501" order="1" text="Entrepreneurship as desirable career choice" id="151"><note><![CDATA[GEM]]></note></topic><topic position="915,-474" order="2" text="High Status Successful Entrepreneurship" id="152"><note><![CDATA[GEM]]></note></topic></topic><topic position="746,-372" order="2" text="Collaboration &amp; partnerships" id="54"><topic position="991,-447" order="0" text="Number of business contracts with foreign partners for R&amp;D collaboration" id="163"/><topic position="939,-420" order="1" text="Share of R&amp;D financed from foreign sources" id="164"><note><![CDATA[UNESCO]]></note></topic><topic position="992,-393" order="2" text="Firms collaborating on innovation with organizations in other countries" id="165"><note><![CDATA[CIS]]></note></topic><topic position="935,-362" order="3" id="173"><text><![CDATA[Share of Innovative companies collaborating
with research institutions on innovation]]></text></topic><topic position="961,-327" order="4" id="174"><text><![CDATA[Number of joint projects conducted by the local comapnies
and local consulting/intermediary agencies]]></text></topic><topic position="895,-296" order="5" text="science and industry links" id="358"/></topic><topic position="734,-163" order="3" text="Technology absorption" id="115"><topic position="869,-269" order="0" text="Local supplier quality" id="116"><note><![CDATA[GCR]]></note></topic><topic position="923,-238" order="1" id="127"><text><![CDATA[Share of expenditures on technological innovations
in the amount of sales]]></text></topic><topic position="905,-207" order="2" text="Number of purchased new technologies" id="129"><icon id="sign_warning"/></topic><topic position="908,-176" order="3" id="354"><text><![CDATA[Investments in ICT by asset (IT equipment,
communication equipment, software)]]></text></topic><topic position="871,-145" order="4" text="Machinery and equipment" id="355"/><topic position="867,-118" order="5" text="Software and databases" id="356"/><topic position="938,-87" order="6" id="373"><text><![CDATA[Level of energy efficiency of the regional economy
(can be measured by sectors and for the whole region)]]></text><icon id="sign_warning"/></topic><topic position="951,-56" order="7" text="Share of wastes in the total volume of production (by sector)" id="374"><icon id="sign_warning"/></topic></topic><topic position="747,92" order="4" text="Innovation activities in firms" id="123"><topic position="907,-29" order="0" text="Share of innovative companies" id="35"/><topic position="918,-2" order="1" text="Business R&amp;D expenditures per GRP" id="128"/><topic position="912,25" order="2" text="Factors hampering innovation" id="145"><note><![CDATA[CIS, BEEPS]]></note></topic><topic position="923,52" order="3" text="Expenditure on innovation by firm size" id="350"/><topic position="930,79" order="4" text="R&amp;D and other intellectl property products" id="357"/><topic position="941,106" order="5" text="Growth of the number of innovative companies " id="390"/><topic position="859,173" order="6" text="Outpus" id="398"><topic position="1022,133" order="0" text="Volume of new to Russian market production per GRP" id="124"/><topic position="1048,160" order="1" text="Volume of new to world market production per total production" id="376"><icon id="sign_warning"/></topic><topic position="1036,187" order="2" text="Growth of the volume of production of innovative companies " id="389"/><topic position="1007,214" order="3" text="Volume of innovation production per capita " id="397"><icon id="sign_warning"/></topic></topic></topic><topic position="739,268" order="5" text="Entrepreneurial activities" id="148"><topic position="879,241" order="0" text="New business density" id="117"><note><![CDATA[Number of new organizations per thousand working age population (WBI)]]></note></topic><topic position="918,268" order="1" text="Volume of newly registered corporations " id="119"><note><![CDATA[(as a percentage of all registered corporations)]]></note></topic><topic position="954,295" order="2" text="Share of gazelle companies in the total number of businesses" id="170"/></topic><topic position="720,411" order="6" text="R&amp;D production" id="277"><topic position="808,384" order="0" text="Outputs" id="280"><topic position="956,326" order="0" id="279"><text><![CDATA[Amount of domestically protected intellectual
property per 1 mln. population]]></text></topic><topic position="965,357" order="1" text="Amount of PCT-applications per 1 mln. population" id="278"/><topic position="990,384" order="2" text="Number of domestic patent applications per R&amp;D expenditures" id="281"/><topic position="980,415" order="3" id="282"><text><![CDATA[Number of intellectual property exploited by regional
enterprises per 1 mln. population]]></text><icon id="sign_warning"/></topic><topic position="977,446" order="4" text="Publication activity of regional scientists and researches" id="283"/></topic><topic position="804,486" order="1" text="Inputs" id="340"><topic position="953,473" order="0" text="Regional and local budget expenditures on R&amp;D" id="341"/><topic position="917,500" order="1" text="Government R&amp;D expenditure " id="349"/></topic></topic><topic position="737,562" order="7" text="Public sector innovation" id="415"><topic position="971,531" order="0" id="416"><text><![CDATA[Number of advanced ICT introduced in the budgetary organizations
(regional power, municipal bodies, social and educational organizations) ]]></text></topic><topic position="866,562" order="1" text="E-government index" id="418"/><topic position="984,593" order="2" id="419"><text><![CDATA[Number of management innovations introduced in the budgetary organizations
(regional power, municipal bodies, social and educational organizations) ]]></text></topic></topic></topic><topic position="580,989" order="3" text="Supporting organizations" id="113"><topic position="712,854" order="0" text="Research institutions" id="51"><topic position="820,632" order="0" text="Collaboration" id="171"><topic position="985,628" order="0" id="172"><text><![CDATA[Number of interactions between universities
and large companies by university size]]></text><icon id="sign_warning"/></topic></topic><topic position="814,686" order="1" text="Resources" id="184"><topic position="944,659" order="0" text="R&amp;D expenditures per 1 researcher" id="137"/><topic position="996,686" order="1" text="Average wage of researches per average wage in the region" id="146"/><topic position="946,713" order="2" text="High education expenditure on R&amp;D" id="353"/></topic><topic position="829,784" order="2" text="Scientific outputs" id="185"><topic position="928,771" order="0" text="Publications" id="306"><topic position="1098,740" order="0" text="Impact of publications in the ISI database (h-index)" id="304"/><topic position="1129,767" order="1" text="Number of publications in international journals per worker per year" id="186"/><topic position="1117,798" order="2" id="303"><text><![CDATA[Publications: Academic articles in international peer-reviewed
journals per 1,000 researchers [articles/1,000 researchers].]]></text></topic></topic><topic position="993,829" order="1" text="Number of foreign patents granted per staff" id="187"/></topic><topic position="836,856" order="3" text="Supportive measures" id="312"><topic position="1056,856" order="0" text="Diversity index of university entrepreneurship support measures" id="313"><note><![CDATA[Number of measures offered by the unversity within a preset range (NCET2 survey)]]></note></topic></topic><topic position="831,984" order="4" text="Commercialization" id="299"><topic position="927,891" order="0" text="Licensing" id="308"><topic position="1074,887" order="0" id="298"><text><![CDATA[Academic licenses: Number of licenses
per 1,000 researchers.[licenses/researcher] ]]></text></topic></topic><topic position="927,926" order="1" text="Spin-offs" id="309"><topic position="1091,922" order="0" id="300"><text><![CDATA[Number of spin-offs with external private financing
as a share of the institution's R&D budget]]></text></topic></topic><topic position="945,1019" order="2" text="Industry contracts" id="310"><topic position="1074,953" order="0" text="Industry revenue per staff " id="297"/><topic position="1144,988" order="1" id="305"><text><![CDATA[Foreign contracts: Number of contracts with foreign industria
l companies at scientific and educational organizations
per 1,000 researchers [contracts/researchers]]]></text></topic><topic position="1121,1023" order="2" text="Share of industry income from foreign companies" id="307"/><topic position="1119,1054" order="3" id="90"><text><![CDATA[Revenue raised from industry R&D as a fraction
of total institutional budget (up to a cap)]]></text></topic><topic position="1160,1085" order="4" text="Difficulties faced by research organization in collaborating with SMEs" id="311"/></topic></topic></topic><topic position="700,1152" order="1" text="Private market" id="153"><topic position="876,1112" order="0" text="Number of innovation &amp; IP services organizations" id="154"><note><![CDATA[ (design firms, IP consultants, etc.)]]></note></topic><topic position="893,1139" order="1" text="Number of private innovation infrastructure organizations " id="155"><note><![CDATA[(e.g. accelerators, incubators)]]></note></topic><topic position="885,1166" order="2" text="Access to certification and licensing for specific activities " id="410"/><topic position="912,1193" order="3" text="Access to suppliers of equipment, production and engineering services " id="411"/></topic><topic position="720,1287" order="2" text="Innovation infrastructure" id="114"><topic position="835,1274" order="0" text="Investments" id="327"><topic position="992,1220" order="0" text="Public investment in innovation infrastructure" id="315"/><topic position="1028,1247" order="1" text="Increase of government investment in innovation infrastructure" id="328"/><topic position="1038,1274" order="2" text=" Number of Development institution projects performed in the region" id="339"/><topic position="1005,1301" order="3" text="Volume of seed investments by the regional budget " id="391"/><topic position="1009,1328" order="4" text="Volume of venture financing from the regional budget " id="392"/></topic><topic position="895,1355" order="1" text="Volume of state support per one company " id="413"/></topic></topic></topic></topic><topic position="-275,203" order="3" text="What to do about existing measures" shape="rounded rectagle" id="4" fontStyle=";10;;;;"><note><![CDATA[Understanding which measures should be strengthened, dropped or improved, and how.]]></note><topic position="-495,-48" order="0" text="Demand for measure" shape="rounded rectagle" id="42" bgColor="#feffff"><topic position="-625,-208" order="0" text="Quality of beneficiaries" id="50"><topic position="-832,-288" order="0" text="Growth rates of employment in supported innovative firms" id="292"/><topic position="-832,-261" order="1" text="Growth rates of employment in supported innovative firms" id="293"/><topic position="-778,-234" order="2" text="Role of IP for tenants/clients" id="323"><note><![CDATA[WIPO SURVEY OF INTELLECTUAL PROPERTY SERVICES OF
EUROPEAN TECHNOLOGY INCUBATORS]]></note></topic><topic position="-798,-207" order="3" text="Share of tenants with innovation activities" id="326"/><topic position="-824,-172" order="4" id="329"><text><![CDATA[Gazelle tenant: Share of tenants with
annual revenue growth of more than 20%
for each of the past four years or since formation [%]]]></text></topic><topic position="-812,-133" order="5" id="330"><text><![CDATA[Globalization of tenants: Median share of tenant
revenues obtained from exports [%]]]></text></topic></topic><topic position="-626,-61" order="1" text="Number of beneficiaries" id="78"><topic position="-894,-102" order="0" text="Number of projects conducted by companies in cooperation with innovation infrastructure" id="383"/><topic position="-825,-75" order="1" text="Scope and intensity of use of services offered to firms" id="325"/><topic position="-910,-48" order="2" text="Number of companies supported by the infrastructure (training, information, consultations, etc.)" id="384"/><topic position="-934,-21" order="3" text="Increase in the number of business applying for public support programmes (regional, federal, international) " id="401"/></topic><topic position="-613,45" order="2" text="Degree of access" id="182"><topic position="-726,14" order="0" text="Level of awareness" id="52"><topic position="-900,10" order="0" id="181"><text><![CDATA[Perception (opinion poll) of business managers
regarding public support programmes]]></text></topic></topic><topic position="-714,49" order="1" text="Transparency" id="53"><topic position="-908,45" order="0" id="175"><text><![CDATA[Perception of business managers in terms
of level of transparency of support measures in the region]]></text><icon id="sign_warning"/></topic></topic><topic position="-814,80" order="2" id="183"><text><![CDATA[Description by regional business managers of the way the
select and apply for regional and federal support schemes]]></text><icon id="sign_warning"/></topic></topic><topic position="-621,152" order="3" text="Number of applicants" id="176"><topic position="-857,111" order="0" text="Increase in the number of business applying for public support programmes" id="177"/><topic position="-826,138" order="1" text="Number of companies that know about a particular program" id="178"/><topic position="-850,165" order="2" text="Increase in the number of start-ups applying to receive VC investments" id="179"/><topic position="-853,192" order="3" text="Increase in the number of start-ups applying for a place in the incubators" id="180"/></topic></topic><topic position="-491,233" order="1" text="Inputs of measures" shape="rounded rectagle" id="109" bgColor="#feffff"><topic position="-606,219" order="0" text="Qualified staff" id="110"><note><![CDATA[JL: not sure how this would be measured]]></note></topic><topic position="-616,246" order="1" text="Budget per beneficiary" id="111"/></topic><topic position="-502,341" order="2" text="Performance of measure" shape="rounded rectagle" id="48" bgColor="#feffff"><topic position="-649,300" order="0" text="Implementation of measure" shape="line" id="47" bgColor="#feffff"><topic position="-790,273" order="0" text="Target vs. actual KPIs" id="106"/><topic position="-811,300" order="1" text="Intermediate outputs per budget" id="287"/><topic position="-794,327" order="2" text="Qualification of staff" id="372"><icon id="sign_warning"/></topic></topic><topic position="-630,381" order="1" text="Output of measure" id="58"><topic position="-740,354" order="0" text="Opinion surveys" id="101"><topic position="-862,354" order="0" text="Opinions of beneficiaries" id="102"/></topic><topic position="-734,395" order="1" text="Hard metrics" id="103"><topic position="-894,381" order="0" text="Output per headcount (e.g. staff, researchers)" id="289"/><topic position="-842,408" order="1" text="Productivity analysis" id="288"/></topic></topic></topic><topic position="-491,565" order="3" text="Impact of measure" shape="rounded rectagle" id="49" bgColor="#feffff"><topic position="-601,449" order="0" text="Opinion surveys" id="79"><topic position="-762,435" order="0" text="Perception of support impact (opinion polls)" id="294"/><topic position="-828,462" order="1" text="Perception of the activity of regional government by the regional companies " id="404"/></topic><topic position="-595,543" order="1" text="Hard metrics" id="104"><topic position="-764,489" order="0" text="Increase in number of small innovation enterprises " id="331"/><topic position="-842,516" order="1" text="Growth of the total volume of salary in the supported companies (excluding inflation) " id="402"><icon id="sign_warning"/></topic><topic position="-817,543" order="2" text="Growth of the volume of regional taxes paid by the supported companies " id="403"><icon id="sign_warning"/></topic><topic position="-783,570" order="3" text="Growth of the volume of export at the supported companies " id="405"/><topic position="-809,597" order="4" text="Number of new products/projects at the companies that received support " id="406"/></topic><topic position="-608,624" order="2" text="Impact assessment " id="290"/><topic position="-663,655" order="3" id="291"><text><![CDATA[Average leverage of 1rub (there would be
several programs with different leverage)]]></text><icon id="sign_warning"/></topic><topic position="-687,690" order="4" id="296"><text><![CDATA[Volume of attracted money per one ruble
of regional budget expenditures on innovation projects]]></text><icon id="sign_warning"/></topic></topic></topic><topic position="288,1687" order="4" text="What investments in innovative projects" shape="rounded rectagle" id="7" fontStyle=";10;;;;"><note><![CDATA[Understanding what investments should be made in innovative projects.]]></note><topic position="518,1673" order="0" text="Competitive niches" shape="rounded rectagle" id="61" bgColor="#feffff"><topic position="632,1521" order="0" text="Clusters behavior" id="59"><topic position="750,1382" order="0" text="Cluster EU star rating" id="60"/><topic position="809,1409" order="1" text="Share of value added of cluster enterprises in GRP" id="318"/><topic position="843,1436" order="2" text="Share of cluster products in the relevant world market segment " id="320"><icon id="sign_warning"/></topic><topic position="803,1463" order="3" text="Share of export in cluster total volume of sales" id="321"/><topic position="830,1490" order="4" text="Growth of the volume of production in the cluster companies" id="379"/><topic position="830,1521" order="5" id="380"><text><![CDATA[Growth of the volume of production in the cluster companies
to the volume of state support for the cluster]]></text></topic><topic position="830,1552" order="6" text="Growth of the volume of innovation production in the cluster" id="381"/><topic position="887,1579" order="7" text="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) " id="407"/><topic position="741,1633" order="8" text="Internal behavior" id="408"><topic position="870,1606" order="0" text="Median wage in the cluster" id="319"/><topic position="904,1633" order="1" text="Growth of the volume of R&amp;D in the cluster" id="382"/><topic position="857,1660" order="2" text="Cluster collaboration" id="108"/></topic></topic><topic position="606,1700" order="1" text="R&amp;D" id="66"><topic position="678,1687" order="0" text="Patent map" id="65"/><topic position="689,1714" order="1" text="Publications map" id="371"/></topic><topic position="613,1795" order="2" text="Industry" id="67"><topic position="688,1741" order="0" text="FDI map" id="63"/><topic position="695,1768" order="1" text="Gazelle map" id="62"/><topic position="792,1795" order="2" text="Business R&amp;D expenditures as a share of revenues by sector" id="131"/><topic position="765,1822" order="3" text="Share of regional products in the world market" id="378"/><topic position="770,1849" order="4" text="Expenditure on innovation by firm size, by sector " id="414"/></topic><topic position="631,1920" order="3" text="Entrepreneurship" id="72"><topic position="730,1876" order="0" text="Startup map" id="73"/><topic position="755,1903" order="1" text="Venture investment map" id="74"/><topic position="794,1947" order="2" text="Attractiveness to public competitive funding" id="317"><topic position="1004,1930" order="0" text="Fed and regional seed fund investments" id="316"/><topic position="1023,1961" order="1" id="314"><text><![CDATA[FASIE projects: Number of projects supported
by the FASIE per 1,000 workers [awards/worker] ]]></text></topic></topic></topic></topic><topic position="545,1992" order="1" text="Competitiveness support factors" shape="rounded rectagle" id="64" bgColor="#ffffff"><topic position="716,1992" order="0" text="Private investment in innovation" id="68"/></topic></topic><topic position="-214,749" order="5" text="How to improve image" shape="rounded rectagle" id="69" fontStyle=";10;;;;" bgColor="#e0e5ef"><topic position="-351,735" order="0" text="Rankings" shape="rounded rectagle" id="75" bgColor="#feffff"><topic position="-443,722" order="0" text="macro indicators" id="70"/><topic position="-441,749" order="1" text="meso-indicators" id="71"/></topic><topic position="-395,776" order="1" text="Innovation investment climate" shape="rounded rectagle" id="76" bgColor="#feffff"/></topic></topic><relationship srcTopicId="9" destTopicId="76" lineType="3" srcCtrlPoint="45,123" destCtrlPoint="229,42" endArrow="false" startArrow="true"/><relationship srcTopicId="4" destTopicId="114" lineType="3" srcCtrlPoint="-58,271" destCtrlPoint="-52,-241" endArrow="false" startArrow="true"/></map>

View File

@ -0,0 +1,270 @@
<map version="0.9.0">
<node TEXT="Artigos GF coment&#225;rios interessantes" ID="ID_1">
<node TEXT="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities" STYLE="rectagle" POSITION="left" ID="ID_5" BACKGROUND_COLOR="#cccccc">
<edge COLOR="#cccccc"/>
<node POSITION="left" ID="ID_6">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Therecent growth of large functional trait data</p>
<p>bases has been fuelled by standardized protocols forthe</p>
<p>measurement of individual functional traits and intensive</p>
<p>efforts to compile trait data(Cornelissen etal. 2003; Chave etal. 2009). Nonetheless, there remains no consensusfor</p>
<p>the most appropriate sampling design so that traits can be</p>
<p>scaled from the individuals on whom measurements are</p>
<p>made to the community or ecosystem levels at which infer-</p>
<p>ences are drawn (Swenson etal. 2006,2007,Reich,Wright</p>
<p>&amp; Lusk 2007;Kraft,Valencia &amp; Ackerly 2008). </p>
</body>
</html>
</richcontent>
</node>
<node POSITION="left" ID="ID_7">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>However, the fast pace of</p>
<p>development of plant trait meta-analyses also suggests that</p>
<p>trait acquisition in the field is a factor limiting the growth of</p>
<p>plant trait data bases.</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="left" ID="ID_8">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>We measured</p>
<p>traits for every individual tree in nine 1-ha plots in tropical</p>
<p>lowland rainforest (N = 4709). Each plant was sampled for</p>
<p>10 functional traits related to wood and leaf morphology and</p>
<p>ecophysiology. Here, we contrast the trait means and variances</p>
<p>obtained with a full sampling strategy with those of</p>
<p>other sampling designs used in the recent literature, which we</p>
<p>obtain by simulation. We assess the differences in community-</p>
<p>level estimates of functional trait means and variances</p>
<p>among design types and sampling intensities. We then contrast</p>
<p>the relative costs of these designs and discuss the appropriateness</p>
<p>of different sampling designs and intensities for</p>
<p>different questions and systems.</p>
</body>
</html>
</richcontent>
</node>
<node TEXT="Falar que a escolha das categorias de sucess&#227;o e dos par&#226;metros ou caracter&#237;stica dos indiv&#237;duos que ser&#227;o utilizadas dependera da facilidade de coleta dos dados e do custo monet&#225;rio e temporal." POSITION="left" ID="ID_9"/>
<node TEXT="Ver se classifica sucess&#227;o por densidade de tronco para citar no artigo como exemplo de outros atributos al&#233;m de germina&#231;&#227;o e ver se e custoso no tempo e em dinheiro" POSITION="left" ID="ID_12"/>
<node TEXT="Intensas amostragens de experimentos simples tem maior retorno em acur&#225;cia de estimativa e de custo tb." POSITION="left" ID="ID_13"/>
<node POSITION="left" ID="ID_14">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>With regard to estimating mean trait values, strategies</p>
<p>alternative to BRIDGE were consistently cost-effective. On</p>
<p>the other hand, strategies alternative to BRIDGE clearly</p>
<p>failed to accurately estimate the variance of trait values. This</p>
<p>indicates that in situations where accurate estimation of plotlevel</p>
<p>variance is desired, complete censuses are essential.</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="left" ID="ID_15">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>We suggest that, in these studies,</p>
<p>the investment in complete sampling may be worthwhile</p>
<p>for at least some traits.</p>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Chazdon 2010. Biotropica. 42(1): 31&#8211;40" STYLE="rectagle" POSITION="right" ID="ID_17" COLOR="#000000" BACKGROUND_COLOR="#cccccc">
<edge COLOR="#cccccc"/>
<node POSITION="right" ID="ID_22">
<richcontent TYPE="NODE">
<html>
<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>
<p>land-use transitions (Chazdon et al. 2007). Grouping species according</p>
<p>to their functional attributes or demographic rates provides</p>
<p>insight into both applied and theoretical questions, such as selecting</p>
<p>species for reforestation programs, assessing ecosystem services, and</p>
<p>understanding community assembly processes in tropical forests</p>
<p>(Diaz et al. 2007, Kraft et al. 2008).</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_23">
<richcontent TYPE="NODE">
<html>
<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>
<p>study sites, we based our functional type classification on information</p>
<p>for a large number of tree species obtained through vegetation</p>
<p>monitoring studies.</p>
</body>
</html>
</richcontent>
</node>
<node 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. " POSITION="right" ID="ID_24"/>
<node POSITION="right" ID="ID_25">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Our approach avoided preconceived notions of successional</p>
<p>behavior or shade tolerance of tree species by developing an objective</p>
<p>and independent classification of functional types based on vegetation</p>
<p>monitoring data from permanent sample plots in mature and</p>
<p>secondary forests of northeastern Costa Rica (Finegan et al. 1999,</p>
<p>Chazdon et al. 2007).We apply an independent, prior classification</p>
<p>of 293 tree species from our study region into five functional types, based on two species attributes: canopy strata and diameter growth</p>
<p>rates for individuals Z10 cm dbh (Finegan et al. 1999, Salgado-</p>
<p>Negret 2007).</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_26">
<richcontent TYPE="NODE">
<html>
<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>
<p>colonization groups based on the timing of seedling, sapling, and</p>
<p>tree recruitment in secondary forests.</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_27">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>These results allow us to move beyond earlier conceptual</p>
<p>frameworks of tropical forest secondary succession developed</p>
<p>by Finegan (1996) and Chazdon (2008) based on subjective groupings,</p>
<p>such as pioneers and shade-tolerant species (Swaine &amp;</p>
<p>Whitmore 1988).</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_28">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Reproductive traits, such as dispersal mode, pollination mode,</p>
<p>and sexual system, were ultimately not useful in delimiting tree</p>
<p>functional types for the tree species examined here (Salgado-Negret</p>
<p>2007). Thus, although reproductive traits do vary quantitatively in</p>
<p>abundance between secondary and mature forests in our landscape</p>
<p>(Chazdon et al. 2003), they do not seem to be important drivers of</p>
<p>successional dynamics of trees Z10 cm dbh. For seedlings, however,</p>
<p>dispersal mode and seed size are likely to play an important</p>
<p>role in community dynamics during succession (Dalling&amp;Hubbell</p>
<p>2002).</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_29">
<richcontent TYPE="NODE">
<html>
<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>
<p>pioneer species. Many tree species, classified here as</p>
<p>regenerating pioneers on the basis of their population structure in</p>
<p>secondary forests, are common in both young secondary forest and</p>
<p>mature forests in this region (Guariguata et al. 1997), and many are</p>
<p>important timber species (Vilchez et al. 2008). These generalists are</p>
<p>by far the most abundant species of seedlings and saplings, conferring</p>
<p>a high degree of resilience in the wet tropical forests of NE</p>
<p>Costa Rica (Norden et al. 2009, Letcher &amp; Chazdon 2009). The</p>
<p>high abundance of regenerating pioneers in seedling and sapling</p>
<p>size classes clearly shows that species with shade-tolerant seedlings</p>
<p>can also recruit as trees early in succession. For these species, early</p>
<p>tree colonization enhances seedling and sapling recruitment during</p>
<p>the first 20&#8211;30 yr of succession, due to local seed rain. Species</p>
<p>abundance and size distribution depend strongly on chance colonization</p>
<p>events early in succession (Chazdon 2008). Other studies</p>
<p>have shown that mature forest species are able to colonize early in</p>
<p>succession (Finegan 1996, van Breugel et al. 2007, Franklin &amp; Rey</p>
<p>2007, Ochoa-Gaona et al. 2007), emphasizing the importance of</p>
<p>initial floristic composition in the determination of successional</p>
<p>pathways and rates of forest regrowth. On the other hand, significant</p>
<p>numbers of species in our sites (40% overall and the majority</p>
<p>of rare species) colonized only after canopy closure, and these species</p>
<p>may not occur as mature individuals until decades after agricultural</p>
<p>abandonment.</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_30">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Classifying functional types</p>
<p>based on functional traits with low plasticity, such as wood density</p>
<p>and seed size, could potentially serve as robust proxies for demographic</p>
<p>variables (Poorter et al. 2008, Zhang et al. 2008).</p>
</body>
</html>
</richcontent>
</node>
<node POSITION="right" ID="ID_31">
<richcontent TYPE="NODE">
<html>
<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>
<p>7: 405&#8211;416.</p>
<p>DALLING, J. S., AND S. P. HUBBELL. 2002. Seed size, growth rate and gap microsite</p>
<p>conditions as determinants of recruitment success for pioneer species.</p>
<p>J. Ecol. 90: 557&#8211;568.</p>
<p>FINEGAN, B. 1996. Pattern and process in neotropical secondary forests: The first</p>
<p>100 years of succession. Trends Ecol. Evol. 11: 119&#8211;124.</p>
<p>POORTER, L., S. J. WRIGHT, H. PAZ, D. D. ACKERLY, R. CONDIT, G.</p>
<p>IBARRA-MANRI&#180;QUEZ, K. E. HARMS, J. C. LICONA, M.MARTI&#180;NEZ-RAMOS,</p>
<p>S. J. MAZER, H. C. MULLER-LANDAU, M. PEN&#732; A-CLAROS, C. O. WEBB,</p>
<p>AND I. J. WRIGHT. 2008. Are functional traits good predictors of demographic</p>
<p>rates? Evidence from five Neotropical forests. Ecology 89:</p>
<p>1908&#8211;1920.</p>
<p>ZHANG, Z. D., R. G. ZANG, AND Y. D. QI. 2008. Spatiotemporal patterns and</p>
<p>dynamics of species richness and abundance of woody plant functional</p>
<p>groups in a tropical forest landscape of Hainan Island, South China.</p>
<p>J. Integr. Plant Biol. 50: 547&#8211;558.</p>
</body>
</html>
</richcontent>
</node>
</node>
<node TEXT="Poorter 1999. Functional Ecology. 13:396-410" STYLE="rectagle" POSITION="left" ID="ID_2" COLOR="#000000" BACKGROUND_COLOR="#cccccc">
<edge COLOR="#cccccc"/>
<node TEXT="Esp&#233;cies pioneiras crescem mais r&#225;pido do que as n&#227;o pioneiras" POSITION="left" ID="ID_3">
<node TEXT="Toler&#226;ncia a sombra est&#225; relacionada com persist&#234;ncia e n&#227;o com crescimento" POSITION="left" ID="ID_4"/>
</node>
</node>
</node>
</map>

View File

@ -0,0 +1,188 @@
<map name="82740" version="tango">
<topic central="true" text="Artigos GF comentários interessantes" id="1">
<topic position="-466,16" order="3"
text="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities"
shape="rectagle" id="5" bgColor="#cccccc" brColor="#cccccc">
<topic position="-1042,-163" order="0" id="6">
<text><![CDATA[Therecent growth of large functional trait data
bases has been fuelled by standardized protocols forthe
measurement of individual functional traits and intensive
efforts to compile trait data(Cornelissen etal. 2003; Chave etal. 2009). Nonetheless, there remains no consensusfor
the most appropriate sampling design so that traits can be
scaled from the individuals on whom measurements are
made to the community or ecosystem levels at which infer-
ences are drawn (Swenson etal. 2006,2007,Reich,Wright
& Lusk 2007;Kraft,Valencia & Ackerly 2008). ]]></text>
</topic>
<topic position="-918,-93" order="1" id="7">
<text><![CDATA[However, the fast pace of
development of plant trait meta-analyses also suggests that
trait acquisition in the field is a factor limiting the growth of
plant trait data bases.]]></text>
</topic>
<topic position="-932,-7" order="2" id="8">
<text><![CDATA[We measured
traits for every individual tree in nine 1-ha plots in tropical
lowland rainforest (N = 4709). Each plant was sampled for
10 functional traits related to wood and leaf morphology and
ecophysiology. Here, we contrast the trait means and variances
obtained with a full sampling strategy with those of
other sampling designs used in the recent literature, which we
obtain by simulation. We assess the differences in community-
level estimates of functional trait means and variances
among design types and sampling intensities. We then contrast
the relative costs of these designs and discuss the appropriateness
of different sampling designs and intensities for
different questions and systems.]]></text>
</topic>
<topic position="-1226,67" order="3"
text="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal."
id="9"/>
<topic position="-1163,93" order="4"
text="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro"
id="12"/>
<topic position="-1026,119" order="5"
text="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb."
id="13"/>
<topic position="-937,165" order="6" id="14">
<text><![CDATA[With regard to estimating mean trait values, strategies
alternative to BRIDGE were consistently cost-effective. On
the other hand, strategies alternative to BRIDGE clearly
failed to accurately estimate the variance of trait values. This
indicates that in situations where accurate estimation of plotlevel
variance is desired, complete censuses are essential.]]></text>
<note>
<![CDATA[Isso significa que estudos de característica de história de vida compensam? Ver nos m&m.]]></note>
</topic>
<topic position="-915,219" order="7" id="15">
<text><![CDATA[We suggest that, in these studies,
the investment in complete sampling may be worthwhile
for at least some traits.]]></text>
<note>
<![CDATA[Falar que isso corrobora nossa sugestão de utilizar poucas medidas, mas que elas sejam confiáveis.]]></note>
</topic>
</topic>
<topic position="297,0" order="0" text="Chazdon 2010. Biotropica. 42(1): 3140" shape="rectagle" id="17"
fontStyle=";;#000000;;;" bgColor="#cccccc" brColor="#cccccc">
<topic position="586,-383" order="1" id="22">
<text><![CDATA[Here, we develop a new approach that links functional attributes
of tree species with studies of forest recovery and regional
land-use transitions (Chazdon et al. 2007). Grouping species according
to their functional attributes or demographic rates provides
insight into both applied and theoretical questions, such as selecting
species for reforestation programs, assessing ecosystem services, and
understanding community assembly processes in tropical forests
(Diaz et al. 2007, Kraft et al. 2008).]]></text>
</topic>
<topic position="583,-313" order="2" id="23">
<text><![CDATA[Since we have data on leaf
and wood functional traits for only a subset of the species in our
study sites, we based our functional type classification on information
for a large number of tree species obtained through vegetation
monitoring studies.]]></text>
</topic>
<topic position="2883,-437" order="0"
text="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. "
id="24"/>
<topic position="720,-239" order="3" id="25">
<text><![CDATA[Our approach avoided preconceived notions of successional
behavior or shade tolerance of tree species by developing an objective
and independent classification of functional types based on vegetation
monitoring data from permanent sample plots in mature and
secondary forests of northeastern Costa Rica (Finegan et al. 1999,
Chazdon et al. 2007).We apply an independent, prior classification
of 293 tree species from our study region into five functional types, based on two species attributes: canopy strata and diameter growth
rates for individuals Z10 cm dbh (Finegan et al. 1999, Salgado-
Negret 2007).]]></text>
</topic>
<topic position="575,-169" order="4" id="26">
<text><![CDATA[Our results demonstrate strong linkages between functional
types defined by adult height and growth rates of large trees and
colonization groups based on the timing of seedling, sapling, and
tree recruitment in secondary forests.]]></text>
</topic>
<topic position="588,-115" order="5" id="27">
<text><![CDATA[These results allow us to move beyond earlier conceptual
frameworks of tropical forest secondary succession developed
by Finegan (1996) and Chazdon (2008) based on subjective groupings,
such as pioneers and shade-tolerant species (Swaine &
Whitmore 1988).]]></text>
</topic>
<topic position="582,-37" order="6" id="28">
<text><![CDATA[Reproductive traits, such as dispersal mode, pollination mode,
and sexual system, were ultimately not useful in delimiting tree
functional types for the tree species examined here (Salgado-Negret
2007). Thus, although reproductive traits do vary quantitatively in
abundance between secondary and mature forests in our landscape
(Chazdon et al. 2003), they do not seem to be important drivers of
successional dynamics of trees Z10 cm dbh. For seedlings, however,
dispersal mode and seed size are likely to play an important
role in community dynamics during succession (Dalling&Hubbell
2002).]]></text>
</topic>
<topic position="599,125" order="7" id="29">
<text><![CDATA[Our classification of colonization groups defies the traditional
dichotomy between late successional shade-tolerant and early successional
pioneer species. Many tree species, classified here as
regenerating pioneers on the basis of their population structure in
secondary forests, are common in both young secondary forest and
mature forests in this region (Guariguata et al. 1997), and many are
important timber species (Vilchez et al. 2008). These generalists are
by far the most abundant species of seedlings and saplings, conferring
a high degree of resilience in the wet tropical forests of NE
Costa Rica (Norden et al. 2009, Letcher & Chazdon 2009). The
high abundance of regenerating pioneers in seedling and sapling
size classes clearly shows that species with shade-tolerant seedlings
can also recruit as trees early in succession. For these species, early
tree colonization enhances seedling and sapling recruitment during
the first 2030 yr of succession, due to local seed rain. Species
abundance and size distribution depend strongly on chance colonization
events early in succession (Chazdon 2008). Other studies
have shown that mature forest species are able to colonize early in
succession (Finegan 1996, van Breugel et al. 2007, Franklin & Rey
2007, Ochoa-Gaona et al. 2007), emphasizing the importance of
initial floristic composition in the determination of successional
pathways and rates of forest regrowth. On the other hand, significant
numbers of species in our sites (40% overall and the majority
of rare species) colonized only after canopy closure, and these species
may not occur as mature individuals until decades after agricultural
abandonment.]]></text>
</topic>
<topic position="589,263" order="8" id="30">
<text><![CDATA[Classifying functional types
based on functional traits with low plasticity, such as wood density
and seed size, could potentially serve as robust proxies for demographic
variables (Poorter et al. 2008, Zhang et al. 2008).]]></text>
</topic>
<topic position="612,369" order="9" id="31">
<text><![CDATA[CONDIT, R., S. P. HUBBELL, AND R. B. FOSTER. 1996. Assessing the response of
plant functional types in tropical forests to climatic change. J. Veg. Sci.
7: 405416.
DALLING, J. S., AND S. P. HUBBELL. 2002. Seed size, growth rate and gap microsite
conditions as determinants of recruitment success for pioneer species.
J. Ecol. 90: 557568.
FINEGAN, B. 1996. Pattern and process in neotropical secondary forests: The first
100 years of succession. Trends Ecol. Evol. 11: 119124.
POORTER, L., S. J. WRIGHT, H. PAZ, D. D. ACKERLY, R. CONDIT, G.
IBARRA-MANRI´QUEZ, K. E. HARMS, J. C. LICONA, M.MARTI´NEZ-RAMOS,
S. J. MAZER, H. C. MULLER-LANDAU, M. PEN˜ A-CLAROS, C. O. WEBB,
AND I. J. WRIGHT. 2008. Are functional traits good predictors of demographic
rates? Evidence from five Neotropical forests. Ecology 89:
19081920.
ZHANG, Z. D., R. G. ZANG, AND Y. D. QI. 2008. Spatiotemporal patterns and
dynamics of species richness and abundance of woody plant functional
groups in a tropical forest landscape of Hainan Island, South China.
J. Integr. Plant Biol. 50: 547558.
]]></text>
</topic>
</topic>
<topic position="-313,-224" order="1" text="Poorter 1999. Functional Ecology. 13:396-410" shape="rectagle"
id="2" fontStyle=";;#000000;;;" bgColor="#cccccc" brColor="#cccccc">
<topic position="-619,-221" order="0" text="Espécies pioneiras crescem mais rápido do que as não pioneiras"
id="3">
<topic position="-980,-221" order="0"
text="Tolerância a sombra está relacionada com persistência e não com crescimento" id="4"/>
</topic>
</topic>
</topic>
</map>