Add mindjet support.

This commit is contained in:
Paulo Gustavo Veiga 2013-03-29 11:28:26 -03:00
parent fcb99490d8
commit ed508d646c
134 changed files with 22707 additions and 3102 deletions

View File

@ -1,17 +0,0 @@
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,459 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
# Simple XSL for the conversion of Mindmaps from Freemind-0.9 to MindManager-8
#
# Version-1.1
#
# Copyright (c) 2009 Christian Lorandi
# http://freemind2mindmanager.fdns.net
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"
xmlns:cor="http://schemas.mindjet.com/MindManager/Core/2003"
xmlns:pri="http://schemas.mindjet.com/MindManager/Primitive/2003"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.mindjet.com/MindManager/Application/2003 http://schemas.mindjet.com/MindManager/Application/2003 http://schemas.mindjet.com/MindManager/Core/2003 http://schemas.mindjet.com/MindManager/Core/2003 http://schemas.mindjet.com/MindManager/Delta/2003 http://schemas.mindjet.com/MindManager/Delta/2003 http://schemas.mindjet.com/MindManager/Primitive/2003 http://schemas.mindjet.com/MindManager/Primitive/2003">
<xsl:template match="map">
<xsl:element name="ap:Map">
<xsl:element name="ap:OneTopic">
<xsl:apply-templates select="node"/>
</xsl:element>
<xsl:element name="ap:Relationships">
<xsl:apply-templates select="descendant-or-self::arrowlink"> </xsl:apply-templates>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template match="node">
<xsl:element name="ap:Topic">
<xsl:attribute name="OId">
<xsl:value-of
select="concat(substring-after(@ID, '_'), substring('rW54nezC90m8NYAi2fjQvw==', string-length(substring-after(@ID, '_'))+1))"
/>
</xsl:attribute>
<xsl:if test="node">
<xsl:element name="ap:SubTopics">
<xsl:apply-templates select="node"/>
</xsl:element>
</xsl:if>
<xsl:apply-templates select="cloud"/>
<xsl:apply-templates select="richcontent//body//img"/>
<xsl:element name="ap:Text">
<xsl:attribute name="PlainText">
<xsl:value-of select="@TEXT"/>
</xsl:attribute>
<xsl:element name="ap:Font">
<xsl:if test="@COLOR">
<xsl:attribute name="Color">
<xsl:value-of select="concat('ff', substring-after(@COLOR, '#'))"/>
</xsl:attribute>
</xsl:if>
<xsl:apply-templates select="font"/>
</xsl:element>
</xsl:element>
<xsl:if test="not(contains(icon/@BUILTIN, 'full-'))">
<xsl:apply-templates select="icon"/>
</xsl:if>
<xsl:if test="@BACKGROUND_COLOR">
<xsl:element name="ap:Color">
<xsl:attribute name="FillColor">
<xsl:value-of select="concat('ff', substring-after(@BACKGROUND_COLOR, '#'))"
/>
</xsl:attribute>
</xsl:element>
</xsl:if>
<xsl:if test="@STYLE">
<xsl:element name="ap:SubTopicShape">
<xsl:if test="@STYLE = 'bubble'">
<xsl:attribute name="SubTopicShape"
>urn:mindjet:RoundedRectangle</xsl:attribute>
</xsl:if>
<xsl:if test="@STYLE = 'fork'">
<xsl:attribute name="SubTopicShape">urn:mindjet:Line</xsl:attribute>
</xsl:if>
</xsl:element>
</xsl:if>
<xsl:if test="not(@STYLE)">
<xsl:element name="ap:SubTopicShape">
<xsl:if test="parent::map">
<xsl:attribute name="SubTopicShape"
>urn:mindjet:RoundedRectangle</xsl:attribute>
</xsl:if>
<xsl:if test="not(parent::map)">
<xsl:attribute name="SubTopicShape">urn:mindjet:Line</xsl:attribute>
</xsl:if>
<xsl:for-each select="ancestor::node">
<xsl:if test="@STYLE = 'bubble'">
<xsl:attribute name="SubTopicShape"
>urn:mindjet:RoundedRectangle</xsl:attribute>
</xsl:if>
<xsl:if test="@STYLE = 'fork'">
<xsl:attribute name="SubTopicShape">urn:mindjet:Line</xsl:attribute>
</xsl:if>
</xsl:for-each>
</xsl:element>
</xsl:if>
<xsl:if test="child::edge/@STYLE|parent::map">
<xsl:element name="ap:SubTopicsShape">
<xsl:if test="contains(child::edge/@STYLE, 'bezier')">
<xsl:attribute name="SubTopicsConnectionStyle"
>urn:mindjet:Curve</xsl:attribute>
</xsl:if>
<xsl:if test="contains(child::edge/@STYLE, 'linear')">
<xsl:attribute name="SubTopicsConnectionStyle"
>urn:mindjet:Straight</xsl:attribute>
</xsl:if>
<xsl:if test="parent::map">
<xsl:attribute name="SubTopicsAlignment">urn:mindjet:Center</xsl:attribute>
<xsl:attribute name="SubTopicsGrowth">urn:mindjet:Horizontal</xsl:attribute>
<xsl:attribute name="SubTopicsGrowthDirection"
>urn:mindjet:AutomaticHorizontal</xsl:attribute>
<xsl:attribute name="VerticalDistanceBetweenSiblings">150</xsl:attribute>
</xsl:if>
</xsl:element>
</xsl:if>
<xsl:if test="@LINK">
<xsl:element name="ap:Hyperlink">
<xsl:attribute name="Url">
<xsl:value-of select="@LINK"/>
</xsl:attribute>
</xsl:element>
</xsl:if>
<xsl:if test="contains(icon/@BUILTIN, 'full-')">
<xsl:apply-templates select="icon"/>
</xsl:if>
</xsl:element>
</xsl:template>
<xsl:template match="font">
<xsl:if test="@BOLD">
<xsl:attribute name="Bold">
<xsl:value-of select="@BOLD"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="@ITALIC">
<xsl:attribute name="Italic">
<xsl:value-of select="@ITALIC"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="@SIZE">
<xsl:attribute name="Size">
<xsl:value-of select="@SIZE"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="@NAME">
<xsl:attribute name="Name">
<xsl:value-of select="@NAME"/>
</xsl:attribute>
</xsl:if>
</xsl:template>
<xsl:template match="richcontent//body//img">
<xsl:element name="ap:OneImage">
<xsl:element name="ap:Image">
<xsl:element name="ap:ImageData">
<xsl:attribute name="ImageType">urn:mindjet:PngImage</xsl:attribute>
<xsl:attribute name="CustomImageType"> </xsl:attribute>
<xsl:element name="cor:Uri">
<xsl:attribute name="xsi:nil">false</xsl:attribute>
<xsl:text>mmarch://bin/</xsl:text>
<xsl:value-of select="@src"/>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template match="arrowlink">
<xsl:element name="ap:Relationship">
<xsl:element name="ap:ConnectionGroup">
<xsl:attribute name="Index">0</xsl:attribute>
<xsl:element name="ap:Connection">
<xsl:element name="ap:ObjectReference">
<xsl:attribute name="OIdRef">
<xsl:value-of
select="concat(substring-after(parent::node/@ID, '_'), substring('rW54nezC90m8NYAi2fjQvw==', string-length(substring-after(parent::node/@ID, '_'))+1))"
/>
</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
<xsl:element name="ap:ConnectionGroup">
<xsl:attribute name="Index">1</xsl:attribute>
<xsl:element name="ap:Connection">
<xsl:element name="ap:ObjectReference">
<xsl:attribute name="OIdRef">
<xsl:value-of
select="concat(substring-after(@DESTINATION, '_'), substring('rW54nezC90m8NYAi2fjQvw==', string-length(substring-after(@DESTINATION, '_'))+1))"
/>
</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
<xsl:element name="ap:AutoRoute">
<xsl:attribute name="AutoRouting">true</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template match="cloud">
<xsl:element name="ap:OneBoundary">
<xsl:element name="ap:Boundary">
<xsl:if test="@COLOR">
<xsl:element name="ap:Color">
<xsl:attribute name="FillColor">
<xsl:value-of select="concat('2e', substring-after(@COLOR, '#'))"/>
</xsl:attribute>
<xsl:attribute name="LineColor">
<xsl:value-of select="concat('ff', substring-after(@COLOR, '#'))"/>
</xsl:attribute>
</xsl:element>
</xsl:if>
<xsl:element name="ap:BoundaryShape">
<xsl:attribute name="BoundaryShape">urn:mindjet:CurvedLine</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template match="icon">
<xsl:if test="number(substring-after(@BUILTIN, 'full-')) &lt; 6">
<xsl:if test="contains(@BUILTIN, 'full-')">
<xsl:element name="ap:Task">
<xsl:attribute name="TaskPriority">urn:mindjet:Prio<xsl:value-of
select="substring-after(@BUILTIN, 'full-')"/></xsl:attribute>
</xsl:element>
</xsl:if>
</xsl:if>
<xsl:if test="@BUILTIN = 'help'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:QuestionMark</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'yes'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ExclamationMark</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'messagebox_warning'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:Emergency</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'button_ok'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ThumbsUp</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'button_cancel'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ThumbsDown</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'calendar'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:Calendar</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'up'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ArrowUp</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'down'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ArrowDown</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'forward'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ArrowRight</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'back'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:ArrowLeft</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag-black'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagBlack</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag-green'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagGreen</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagRed</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag-yellow'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagYellow</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag-orange'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagOrange</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag-pink'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagPurple</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'flag-blue'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:FlagBlue</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'ksmiletris'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:SmileyHappy</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'smiley-neutral'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:SmileyNeutral</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'smiley-angry'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:SmileyAngry</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
<xsl:if test="@BUILTIN = 'smily_bad'">
<xsl:element name="ap:IconsGroup">
<xsl:element name="ap:Icons">
<xsl:element name="ap:Icon">
<xsl:attribute name="xsi:type">ap:StockIcon</xsl:attribute>
<xsl:attribute name="IconType">urn:mindjet:SmileySad</xsl:attribute>
</xsl:element>
</xsl:element>
</xsl:element>
</xsl:if>
</xsl:template>
</xsl:stylesheet>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 447 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 203 B

View File

@ -1,473 +0,0 @@
/* MarkTree JavaScript code
*
* Distributed under the terms of the MIT License.
* See "LICENCE.MIT" or http://www.opensource.org/licenses/mit-license.php for details.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* Miika Nurminen, 12.7.2004.
*/
/* cross-browser (tested with ie5, mozilla 1 and opera 5) keypress detection */
function get_keycode(evt) {
// IE
code = document.layers ? evt.which
: document.all ? event.keyCode // event.keyCode!=evt.keyCode!
: evt.keyCode;
if (code==0)
code=evt.which; // for NS
return code;
}
var lastnode=null;
var listnodes = null;
var list_index=1;
var lastnodetype=''; // determines if node is a link, input or text;
// up, left, down, right, keypress codes
//ijkl
//var keys = new Array(105,106,107,108);
//num arrows
//var keys = new Array(56,52,50,54);
//wasd
// var press2 = new Array(119,97,115,100);
var press = new Array(47,45,42,43);
// keydown codes
// var keys2=new Array(87,65,83,68);
var keys= new Array(38,37,40,39);
// keyset 1 = keydown, otherwise press
function checkup(keyset,n) {
if (keyset==1) return (n==keys[0]);
return ((n==press[0]) /*|| (n==press2[0])*/)
}
function checkdn(keyset,n) {
if (keyset==1) return (n==keys[2]);
return ((n==press[2]) /*|| (n==press2[2])*/)
}
function checkl(keyset,n) {
if (keyset==1) return (n==keys[1]);
return ((n==press[1]) /*|| (n==press2[1])*/)
}
function checkr(keyset,n) {
if (keyset==1) return (n==keys[3]);
return ((n==press[3]) /*|| (n==press2[3])*/)
}
function is_exp(n) {
if (n==null) return false;
return ((n.className=='exp') || (n.className=='exp_active'));
}
function is_col(n) {
if (n==null) return false;
return ((n.className=='col') || (n.className=='col_active'));
}
function is_basic(n) {
if (n==null) return false;
return ((n.className=='basic') || (n.className=='basic_active'));
}
/* returns i>=0 if true */
function is_active(node) {
if (node.className==null) return false
return node.className.indexOf('_active');
}
function toggle_class(node) {
if ((node==null) || (node.className==null)) return;
str=node.className;
result="";
i = str.indexOf('_active');
if (i>0)
result= str.substr(0,i);
else
result= str+"_active";
node.className=result;
return node;
}
function activate(node) {
node.style.backgroundColor='#eeeeff';
}
function deactivate(node) {
node.style.backgroundColor='#ffffff';
}
function is_list_node(n) {
if (n==null) return false;
if (n.className==null) return false;
if ( (is_exp(n)) ||
(is_col(n)) ||
(is_basic(n)) )
return true; else return false;
}
function get_href(n) {
alist=n.attributes;
if (alist!=null) {
hr = alist.getNamedItem('href');
if (hr!=null) return hr.nodeValue;
}
if (n.childNodes.length==0) return '';
for (var i=0; i<n.childNodes.length; i++) {
s = get_href(n.childNodes[i]);
if (s!='') return s;
}
return '';
}
function get_link(n) {
if (n==null) return null;
if (n.style==null) return null;
// disabling uncontrolled recursion to prevent error messages on IE
// when trying to focus to invisible links (readonly mode)
// alert(n.nodeName+' '+n.className);
if ((n.nodeName=='UL') && (n.className=='sub')) return null;
if (n.nodeName=='A') return n;
if (n.childNodes.length==0) return null;
for (var i=0; i<n.childNodes.length; i++) {
s = get_link(n.childNodes[i]);
if (s!=null) return s;
}
return null;
}
function set_lastnode(n) {
/*var d = new Date();
var t_mil = d.getMilliseconds();*/
// testattu nopeuksia explorerilla, ei merkittäviä eroja
if (lastnode==n) return;
/* deactivate(lastnode)
lastnode=n;
activate(lastnode);*/
if (is_active(lastnode)>=0)
toggle_class(lastnode);
lastnode=n;
if (!(is_active(lastnode)>=0))
toggle_class(lastnode);
/*var d2 = new Date();
var t_mil2 = d2.getMilliseconds();
window.alert(t_mil2-t_mil);*/
}
function next_list_node() {
tempIndex = list_index;
while (tempIndex<listnodes.length-1) {
tempIndex++;
var x = listnodes[tempIndex];
if (is_list_node(x)) {
list_index=tempIndex;
return;
}
}
}
function prev_list_node() {
tempIndex = list_index;
while (tempIndex>0) {
tempIndex--;
var x = listnodes[tempIndex];
if (is_list_node(x)) {
list_index=tempIndex;
return;
}
}
}
function getsub (li) {
if (li.childNodes.length==0) return null;
for (var c = 0; c < li.childNodes.length; c++)
if ( (li.childNodes[c].className == 'sub') || (li.childNodes[c].className == 'subexp') )
return li.childNodes[c];
}
function find_listnode_recursive (li) {
if (is_list_node(li)) return li;
if (li.childNodes.length==0) return null;
result=null;
for (var c = 0; c < li.childNodes.length; c++) {
result=find_listnode_recursive(li.childNodes[c]);
if (result!=null) return result;
}
return null;
}
function next_child_listnode(li) {
var result=null;
for (var i=0; i<li.childNodes.length; i++) {
result=find_listnode_recursive(li.childNodes[i]);
if (result!=null) return result;
}
return null;
}
function next_actual_sibling_listnode(li) {
if (li==null) return null;
var temp=li;
while (1) {
var n = temp.nextSibling;
if (n==null) {
n=parent_listnode(temp);
return next_actual_sibling_listnode(n);
}
if (is_list_node(n)) return n;
temp=n;
}
}
function next_sibling_listnode(li) {
if (li==null) return null;
var result=null;
var temp=li;
if (is_col(temp)) return next_child_listnode(temp);
while (1) {
var n = temp.nextSibling;
if (n==null) {
n=parent_listnode(temp);
return next_actual_sibling_listnode(n);
}
if (is_list_node(n)) return n;
temp=n;
}
}
function last_sibling_listnode(li) {
if (li==null) return null;
var temp=li;
var last=null;
while(1) {
var n = temp.nextSibling;
if (is_list_node(temp))
last = temp;
if (n==null) {
if (is_col(last)) return last_sibling_listnode(next_child_listnode(last));
else return last;
}
temp = n;
}
}
function prev_sibling_listnode(li) {
if (li==null) return null;
var temp=li;
var n = null;
while (1) {
n = temp.previousSibling;
if (n==null) {
return parent_listnode(li);
}
if (is_list_node(n)) {
if (is_col(n)) {
return last_sibling_listnode(next_child_listnode(n));
}
else {
return n;
}
}
temp=n;
}
}
function parent_listnode(li) {
// added 12.7.2004 to prevent IE error when readonly mode==true
if (li==null) return null;
n=li;
while (1) {
n=n.parentNode;
if (n==null) return null;
if (is_list_node(n)) return n;
}
}
function getVisibleParents(id) {
var n = document.getElementById(id);
while(1) {
expand(n);
n = parent_listnode(n);
if (n==null) return;
}
}
function onClickHandler (evt) {
if (lastnode==null)
{
listnodes = document.getElementsByTagName('li');
lastnode=listnodes[1];
temp=listnodes[1];
}
var target = evt ? evt.target : event.srcElement;
if (!is_list_node(target)) return;
toggle(target);
set_lastnode(target);
}
function expand(node) {
if (!is_exp(node)) return;
if (node.className=='exp_active')
node.className='col_active';
else
node.className='col';
setSubClass(node,'subexp');
// getsub(node).className='subexp';
}
function collapse(node) {
if (!is_col(node)) return;
if (node.className=='col_active')
node.className='exp_active'
else
node.className='exp';
setSubClass(node,'sub');
// getsub(node).className='sub';
}
function setSubClass(node,name) {
sub = getsub(node);
if (sub==null) return;
sub.className=name;
}
function toggle(target) {
if (!is_list_node(target)) return;
if (is_col(target)) {
target.className='exp';
setSubClass(target,'sub');
// getsub(target).className='sub';
}
else if (is_exp(target)) {
target.className='col';
setSubClass(target,'subexp');
// getsub(target).className='subexp';
}
}
function expandAll(node) {
if (node.className=='exp') {
node.className='col';
setSubClass(node,'subexp');
// getsub(node).className='subexp';
}
var i;
if (node.childNodes!=null)
// if (node.hasChildNodes())
for ( i = 0; i<node.childNodes.length; i++)
expandAll(node.childNodes[i]);
}
function collapseAll(node) {
if (node.className=='col') {
node.className='exp';
setSubClass(node,'sub');
// getsub(node).className='sub';
}
var i;
if (node.childNodes!=null)
// for opera if (node.hasChildNodes())
for ( i = 0; i<node.childNodes.length; i++)
collapseAll(node.childNodes[i]);
}
function unFocus(node) {
// unfocuses potential link that is to be hidden (if a==null there is no link so it should not be blurred).
// tested with mozilla 1.7, 12.7.2004. /mn (
intemp=parent_listnode(node);
a = get_link(intemp); // added 6.4. to get keyboard working with
// moved before collapse to prevent an error message with IE when readonly==true
if (a!=null) a.blur(); // netscape after collapsing a focused node
return intemp;
}
// mode: 0==keypress, 1==keyup
function keyfunc(evt,mode) {
var c = get_keycode(evt);
var temp = null;
var a = null;
if (lastnode==null) {
listnodes = document.getElementsByTagName('li');
lastnode=listnodes[1];
temp=listnodes[1];
}
//window.alert(c);
if (checkup(mode,c)) { // i
temp=prev_sibling_listnode(lastnode);
}
else if (checkdn(mode,c)) { // k
temp=next_sibling_listnode(lastnode);
}
else if (checkr(mode,c)) { // l
expand(lastnode);
// temp=next_child_listnode(lastnode);
// if (temp==null) {
a = get_link(lastnode);
if (a!=null) a.focus(); else self.focus();
//}
}
else if (checkl(mode,c)) { // j
if (is_col(lastnode)) {
unFocus(lastnode);
collapse(lastnode);
}
else {
temp=unFocus(lastnode);
collapse(temp);
}
// if (temp==null) lastnode.focus(); // forces focus to correct div (try mozilla typesearch) (doesn't seem to work -mn/6.4.2004)
}
else return;
if (temp!=null) set_lastnode(temp);
// alert('pressed ' + String.fromCharCode(c) + '(' + c + ')');
return true;
}
function keytest (evt) {
return keyfunc(evt,1);
};
function presstest (evt) {
return keyfunc(evt,0);
};
document.onclick = onClickHandler;
document.onkeypress = presstest;
document.onkeyup = keytest;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1012 B

View File

@ -1,77 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Document : mm2tsk.xsl
Created on : 02 October 2010 - 22:14
Author : Giacomo Lacava toyg@users at sourceforge.net
Description: transforms freemind mm format to tsk, used by TaskCoach.
Note: this doesn't handle richtext nodes yet
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Patches item #3080120, was opened at 2010-10-02 21:34
https://sourceforge.net/tracker/?func=detail&atid=307118&aid=3080120&group_id=7118
Summary: Export to TaskCoach
Initial Comment:
The attached XSL will convert a MM file to TSK, the format used by TaskCoach ( http://www.taskcoach.org ), a popular todo manager (FOSS).
At the moment it doesn't export richtext nodes properly -- surely you already have a good way to "flatten" them, but I can't find it. TaskCoach doesn't handle HTML, afaik.
TSK files require a date-time value in the "startdate" attribute of tasks; it has to be set in the past for nodes to be seen as "active". I don't know if your XSL parser handles XSLT 2.0 (many don't), so I used a 1.0 extension available online in order to do that -- I add the current timestamp, and since more than a second will always pass between the file being saved and the export being opened in TaskCoach, it seems to work.
Let me know if you need anything else.
-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:datetime="http://exslt.org/dates-and-times" exclude-result-prefixes="datetime">
<xsl:param name="datestr" select="datetime:dateTime()" />
<xsl:param name="date">
<xsl:value-of select="substring($datestr,0,5)" />
<xsl:text>-</xsl:text>
<xsl:value-of select="substring($datestr,6,2)" />
<xsl:text>-</xsl:text>
<xsl:value-of select="substring($datestr,9,2)" />
<xsl:text> </xsl:text>
<xsl:value-of select="substring($datestr,12,2)" />
<xsl:text>:</xsl:text>
<xsl:value-of select="substring($datestr,15,2)" />
<xsl:text>:</xsl:text>
<xsl:value-of select="substring($datestr,18,2)" />
</xsl:param>
<xsl:template match="/">
<xsl:processing-instruction name="taskcoach">release="1.1.4" tskversion="30"</xsl:processing-instruction>
<tasks>
<xsl:apply-templates />
</tasks>
</xsl:template>
<xsl:template match="node">
<task>
<xsl:attribute name="startdate">
<xsl:value-of select="$date"/>
</xsl:attribute>
<xsl:attribute name="status">1</xsl:attribute>
<xsl:attribute name="subject">
<xsl:value-of select="@TEXT"/>
</xsl:attribute>
<xsl:apply-templates />
</task>
</xsl:template>
</xsl:stylesheet>

View File

@ -1,118 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
(c) by Stephen Fitch, 2005
This file is licensed under the GPL.
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xlink="http://www.w3.org/1999/xlink">
<xsl:output method="text" indent="no"/>
<xsl:strip-space elements="*"/>
<xsl:template match="map">
<xsl:apply-templates select="node"/>
</xsl:template>
<!-- match "node" -->
<xsl:template match="node">
<xsl:variable name="depth">
<xsl:apply-templates select=".." mode="depthMesurement"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="$depth=0">
<xsl:choose>
<xsl:when test="@LINK">
<xsl:text>---+ [[</xsl:text><xsl:value-of select="@LINK"/><xsl:text> </xsl:text><xsl:value-of select="@TEXT"/><xsl:text>]]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>---+ </xsl:text><xsl:value-of select="@TEXT"/>
</xsl:otherwise>
</xsl:choose>
<xsl:text>&#xA;</xsl:text>
<xsl:apply-templates select="hook"/>
<xsl:apply-templates select="node"/>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="ancestor::node[@FOLDED='true']">
<xsl:apply-templates select=".." mode="childoutput">
<xsl:with-param name="nodeText">
<xsl:value-of select="@TEXT"/>
</xsl:with-param>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select=".." mode="childoutput">
<xsl:with-param name="nodeText">
<xsl:if test="$depth=1">
<xsl:text>&#xA;</xsl:text>
</xsl:if>
<xsl:call-template name="spaces">
<xsl:with-param name="count"
select="$depth * 3"/>
</xsl:call-template>
<!-- Do we have text with a LINK attribute? -->
<xsl:choose>
<xsl:when test="@LINK">
<xsl:text>* [[</xsl:text><xsl:value-of select="@LINK"/><xsl:text> </xsl:text><xsl:value-of select="@TEXT"/><xsl:text>]]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>* </xsl:text><xsl:value-of select="@TEXT"/>
</xsl:otherwise>
</xsl:choose>
<xsl:text>&#xA;</xsl:text>
</xsl:with-param>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
<!-- <xsl:apply-templates select="hook|@LINK"/> -->
<xsl:apply-templates select="node"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="spaces">
<xsl:param name="count" select="1"/>
<xsl:if test="$count > 0">
<xsl:text> </xsl:text>
<xsl:call-template name="spaces">
<xsl:with-param name="count" select="$count - 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- hook -->
<xsl:template match="hook"/>
<!-- hook -->
<xsl:template match="hook[@NAME='accessories/plugins/NodeNote.properties']">
<xsl:choose>
<xsl:when test="./text">
<xsl:value-of select="./text"/>
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- Node - Output -->
<xsl:template match="node" mode="childoutput">
<xsl:param name="nodeText"></xsl:param>
<xsl:copy-of select="$nodeText"/>
</xsl:template>
<!-- Node Depth Mesurement -->
<xsl:template match="node" mode="depthMesurement">
<xsl:param name="depth" select=" '0' "/>
<xsl:apply-templates select=".." mode="depthMesurement">
<xsl:with-param name="depth" select="$depth + 1"/>
</xsl:apply-templates>
</xsl:template>
<!-- Map Depth Mesurement -->
<xsl:template match="map" mode="depthMesurement">
<xsl:param name="depth" select=" '0' "/>
<xsl:value-of select="$depth"/>
</xsl:template>
</xsl:stylesheet>

View File

@ -1,192 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
(c) by Stephen Fitch, 2005 This file is licensed under the GPL.
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xlink="http://www.w3.org/1999/xlink">
<xsl:output method="text" indent="no" />
<xsl:strip-space elements="*" />
<xsl:template match="map">
<xsl:apply-templates select="node" />
</xsl:template>
<xsl:template match="font" />
<xsl:template match="@TEXT">
<xsl:value-of select="normalize-space(.)" />
</xsl:template>
<!-- match "node" -->
<xsl:template match="node">
<xsl:variable name="depth">
<xsl:apply-templates select=".."
mode="depthMesurement" />
</xsl:variable>
<xsl:choose>
<xsl:when test="$depth=0">
<xsl:text>&#xA;&#xA;%TOC%&#xA;&#xA;</xsl:text>
<xsl:choose>
<xsl:when test="@LINK">
<xsl:text>---+ [[</xsl:text>
<xsl:value-of select="@LINK" />
<xsl:text>][</xsl:text>
<xsl:apply-templates
select="richcontent/html/body|@TEXT" />
<xsl:text>]]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>---+ </xsl:text>
<xsl:apply-templates
select="richcontent/html/body|@TEXT" />
</xsl:otherwise>
</xsl:choose>
<xsl:text>&#xA;&#xA;</xsl:text>
<xsl:apply-templates select="hook" />
<xsl:apply-templates select="node" />
</xsl:when>
<xsl:when test="$depth=1">
<xsl:text>&#xA;</xsl:text>
<xsl:choose>
<xsl:when test="@LINK">
<xsl:text>---++ [[</xsl:text>
<xsl:value-of select="@LINK" />
<xsl:text>][</xsl:text>
<xsl:apply-templates
select="richcontent/html/body|@TEXT" />
<xsl:text>]]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>---++ </xsl:text>
<xsl:apply-templates
select="richcontent/html/body|@TEXT" />
</xsl:otherwise>
</xsl:choose>
<xsl:text>&#xA;&#xA;</xsl:text>
<xsl:apply-templates select="hook" />
<xsl:apply-templates select="node" />
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="ancestor::node[@FOLDED='true']">
<xsl:apply-templates select=".."
mode="childoutput">
<xsl:with-param name="nodeText">
<xsl:value-of select="@TEXT" />
</xsl:with-param>
</xsl:apply-templates>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select=".."
mode="childoutput">
<xsl:with-param name="nodeText">
<xsl:if test="$depth=1">
<xsl:text>&#xA;</xsl:text>
</xsl:if>
<xsl:call-template
name="spaces">
<xsl:with-param name="count"
select="($depth -1) * 3" />
</xsl:call-template>
<!-- Do we have text with a LINK attribute? -->
<xsl:choose>
<xsl:when test="@LINK">
<xsl:text>* [[</xsl:text>
<xsl:value-of
select="@LINK" />
<xsl:text>][</xsl:text>
<xsl:apply-templates
select="richcontent/html/body|@TEXT" />
<xsl:text>]]</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>* </xsl:text>
<xsl:apply-templates
select="richcontent/html/body|@TEXT" />
</xsl:otherwise>
</xsl:choose>
<xsl:text>&#xA;</xsl:text>
</xsl:with-param>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
<!-- <xsl:apply-templates select="hook|@LINK"/> -->
<xsl:apply-templates select="node" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="spaces">
<xsl:param name="count" select="1" />
<xsl:if test="$count > 0">
<xsl:text> </xsl:text>
<xsl:call-template name="spaces">
<xsl:with-param name="count" select="$count - 1" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- hook -->
<xsl:template match="hook" />
<!-- hook -->
<xsl:template
match="hook[@NAME='accessories/plugins/NodeNote.properties']">
<xsl:choose>
<xsl:when test="./text">
<xsl:value-of select="./text" />
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- Node - Output -->
<xsl:template match="node" mode="childoutput">
<xsl:param name="nodeText"></xsl:param>
<xsl:copy-of select="$nodeText" />
</xsl:template>
<!-- Node Depth Mesurement -->
<xsl:template match="node" mode="depthMesurement">
<xsl:param name="depth" select=" '0' " />
<xsl:apply-templates select=".."
mode="depthMesurement">
<xsl:with-param name="depth" select="$depth + 1" />
</xsl:apply-templates>
</xsl:template>
<!-- Map Depth Mesurement -->
<xsl:template match="map" mode="depthMesurement">
<xsl:param name="depth" select=" '0' " />
<xsl:value-of select="$depth" />
</xsl:template>
<xsl:template match="richcontent/html/body">
<xsl:apply-templates mode="html" />
</xsl:template>
<xsl:template match="text()" mode="html">
<xsl:value-of select="normalize-space(.)" />
</xsl:template>
<xsl:template match="li" mode="html">
<xsl:text> </xsl:text>
<xsl:apply-templates mode="html" />
</xsl:template>
<xsl:template match="p" mode="html">
<xsl:apply-templates mode="html" />
</xsl:template>
<xsl:template match="i|em" mode="html">
<xsl:text> _</xsl:text>
<xsl:apply-templates mode="html" />
<xsl:text>_ </xsl:text>
</xsl:template>
<xsl:template match="b|strong" mode="html">
<xsl:text> *</xsl:text>
<xsl:apply-templates mode="html" />
<xsl:text>* </xsl:text>
</xsl:template>
<xsl:template match="code" mode="html">
<xsl:text> =</xsl:text>
<xsl:copy-of select="." mode="html" />
<xsl:text>= </xsl:text>
</xsl:template>
<xsl:template match="pre" mode="html">
<xsl:text>&#xA;&lt;verbatim&gt;&#xA;</xsl:text>
<xsl:copy-of select="." mode="html"/>
<xsl:text>&#xA;&lt;/verbatim&gt;&#xA;</xsl:text>
</xsl:template>
</xsl:stylesheet>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1020 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 216 B

View File

@ -1,247 +0,0 @@
body {
background-color: #eeeeee;
color: #000000;
font-family:sans-serif;
}
:link { color: #0000ff; text-decoration:none;}
:visited { color: #6666ff; text-decoration:none; }
a:active { color: #0000ff; text-decoration:none;}
a:hover {color: #0000ff; text-decoration:underline; }
div.basetext {
background-color:#ffffff;
margin-top:11px;
margin-bottom:11px;
margin-left:1%;
margin-right:1%;
padding-top:11px;
padding-left:11px;
padding-right:11px;
padding-bottom:11px;
text-align:left;
font-weight:normal;
border-width:thin;
border-style:solid;
border-color:#dddddd;
}
div.basetop {
position: fixed;
width:auto;
height:auto;
right:0em;
top:0em;
left:auto;
top:0;
background-color:#ffffff;
margin-top:0;
margin-bottom:0;
margin-left:1%;
margin-right:1%;
padding-top:2px;
padding-left:11px;
padding-right:11px;
padding-bottom:2px;
text-align:left;
font-weight:normal;
text-align:right;
border-width:thin;
border-style:solid;
border-color:#dddddd;
}
h1 {
text-align:center;
}
span.h2 {
font-family:sans-serif;
font-weight:bold;
}
div.year {
margin-right:2%;
background-color:#eeeeee;
}
div.form {
}
span.cpt {
color:#005500;
font-weight:bold;
}
span.cm {
color:#666666;
}
.fl {
color:#0000FF;
font-style:italic;
}
ul {
margin-top:1px;
margin-bottom:1px;
margin-left:0px;
padding-left:3%;
}
li {
list-style:outside;
margin-top:10px;
margin-bottom:10px;
}
ul li {
list-style:square;
font-family:sans-serif;
font-weight:normal;
}
li.basic {
list-style:square;
list-style-image:none;
margin-top:2px;
margin-bottom:2px;
}
span.links {
}
.sub { display: none; }
.subexp {display: block; }
.sub { display: none; }
.subexp {display: block; }
li.exp {
list-style-image:url("plus.png");
margin-top:10px;
margin-bottom:10px;
cursor:pointer;
}
li.col {
list-style-image:url("minus.png");
margin-top:10px;
margin-bottom:10px;
cursor:pointer;
}
li.exp_active {
list-style-image:url("plus.png");
margin-top:10px;
margin-bottom:10px;
background-color:#eeeeff;
cursor:pointer;
}
li.col_active {
list-style-image:url("minus.png");
margin-top:10px;
margin-bottom:10px;
background-color:#eeeeff;
cursor:pointer; /* if not included, bullets are not shown right in moz*/
}
li.basic_active {
list-style:square;
list-style-image:none;
background-color:#eeeeff;
margin-top:2px;
margin-bottom:2px;
}
/* the 'boxed' and 'attributes' styles are used to display notes and attributes
*/
.boxed,.nodecontent {display:inline;}
.boxed .note-and-attributes {display:none;}
.boxed:hover .note-and-attributes {
position:fixed; top:2em;right:10px;z-index:3;
display:block;
min-width:33%;
max-width:60%;
max-height:95%;
color:black;
background:#ffffff;
font:normal 16px courier, sans-serif;
border:1px solid black;
padding:10px;
}
.note:before {
content:"NOTE: ";
font-weight:bold;
}
table.attributes {
border-collapse:collapse;
empty-cells:show;
border:thin black solid;
}
table.attributes td,th {
border:thin black solid;
padding-top:2px;
padding-bottom:2px;
padding-left:3px;
padding-right:3px;
}
table.attributes th {
text-align:center;
}
table.attributes caption {
margin-top:1em;
font-style:italic;
text-align:center;
}
/* Thanks to wolfgangradke, https://sourceforge.net/forum/message.php?msg_id=5991663 */
div.nodecontent > p {
margin-top:0pt;
margin-bottom:0pt;
display:inline;
}
p + p {
margin-top: 0.5em !important;
display:block !important;
}
/* Thanks to erne100, https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2747128&group_id=7118*/
table {
border-collapse:collapse;
empty-cells:show;
border:thin black solid;
}
table td {
border:thin black solid;
padding-top:2px;
padding-bottom:2px;
padding-left:3px;
padding-right:3px;
}
/* Thanks to erne100, https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2747000&group_id=7118*/
ol {
margin-top:1px;
margin-bottom:1px;
margin-left:0px;
padding-left:3%;
}
ol li {
list-style:decimal;
font-family:sans-serif;
font-weight:normal;
}

View File

@ -1,59 +0,0 @@
<?xml version="1.0" standalone="no" ?>
<!--
: xbel2mm.xsl
: XSL stylesheet to convert from XBEL to Mindmap
:
: This code released under the GPL.
: (http://www.gnu.org/copyleft/gpl.html)
:
: William McVey <wam@wamber.net>
: September 11, 2003
:
: $Id: xbel2mm.xsl,v 1.1 2003/11/03 11:02:42 sviles Exp $
:
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*" />
<xsl:output method="xml" indent="yes" encoding="UTF-8" />
<xsl:template match="/xbel">
<map>
<node>
<xsl:attribute name="TEXT">
<xsl:value-of select="title" />
</xsl:attribute>
<xsl:apply-templates />
</node>
</map>
</xsl:template>
<xsl:template match="folder">
<node>
<xsl:attribute name="TEXT">
<xsl:value-of select="title" />
</xsl:attribute>
<xsl:attribute name="FOLDED">
<xsl:value-of select="@folded" />
</xsl:attribute>
<xsl:apply-templates />
</node>
</xsl:template>
<xsl:template match="bookmark">
<node>
<xsl:attribute name="TEXT">
<xsl:value-of select="title" />
</xsl:attribute>
<xsl:attribute name="LINK">
<xsl:value-of select="@href" />
</xsl:attribute>
</node>
</xsl:template>
<xsl:template match = "node()|@*" />
</xsl:stylesheet>

View File

@ -0,0 +1,263 @@
<map version="0.9.0">
<node ID="ID_null" TEXT="corona">
<node ID="ID_null" POSITION="left" TEXT="Modelo in world">
<node ID="ID_null" POSITION="left" TEXT="International market protected Modelo from unstable peso"/>
<node ID="ID_null" POSITION="left" TEXT="Fifth largest distributor in world">
<node ID="ID_null" POSITION="left" TEXT="Can they sustain that trend"/>
<node ID="ID_null" POSITION="left" TEXT="in 12 years"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="One of top 10 breweries in world"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Carloz Fernandez CEO">
<node ID="ID_null" POSITION="left" TEXT="CEO Since 1997">
<node ID="ID_null" POSITION="left" TEXT="29 years old">
<node ID="ID_null" POSITION="left" TEXT="working there since 13"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="vision: top five brewers">
<node ID="ID_null" POSITION="left" TEXT="International Business model">
<node ID="ID_null" POSITION="left" TEXT="experienced local distributors"/>
<node ID="ID_null" POSITION="left" TEXT="Growing international demand"/>
<node ID="ID_null" POSITION="left" TEXT="Capitalize on NAFTA"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="top 10 beer producers in world">
<node ID="ID_null" POSITION="left" TEXT="7.8 % sales growth compounded over ten years"/>
<node ID="ID_null" POSITION="left" TEXT="2005">
<node ID="ID_null" POSITION="left" TEXT="12.3 % exports"/>
<node ID="ID_null" POSITION="left" TEXT="4% increase domestically"/>
<node ID="ID_null" POSITION="left" TEXT="export sales 30%"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Corona Extra">
<node ID="ID_null" POSITION="left" TEXT="worlds fourth best selling beer"/>
<node ID="ID_null" POSITION="left" TEXT="56% shar of domestic market"/>
<node ID="ID_null" POSITION="left" TEXT="Since 1997 #1 import in US">
<node ID="ID_null" POSITION="left" TEXT="outsold competitor by 50%"/>
</node>
</node>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="Expanding production ">
<node ID="ID_null" POSITION="left" TEXT="renovate facility in Zacatecas"/>
<node ID="ID_null" POSITION="left" TEXT="300 million investment"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="US Beer Market">
<node ID="ID_null" POSITION="left" TEXT="2nd largest nest to China"/>
<node ID="ID_null" POSITION="left" TEXT="Consumption six times higher per cap"/>
<node ID="ID_null" POSITION="left" TEXT="Groth expectations reduced"/>
<node ID="ID_null" POSITION="left" TEXT="80% of market">
<node ID="ID_null" POSITION="left" TEXT="AB">
<node ID="ID_null" POSITION="left" TEXT="75% of industry profits"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="adolf coors"/>
<node ID="ID_null" POSITION="left" TEXT="Miller"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="dense network of regional craft brewing"/>
<node ID="ID_null" POSITION="left" TEXT="volume main driver"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Modelo in Mexico">
<node ID="ID_null" POSITION="left" TEXT="History to 1970">
<node ID="ID_null" POSITION="left" TEXT="formed in 1922">
<node ID="ID_null" POSITION="left" TEXT="Pablo Diez Fernandez, Braulio Irare, Marin Oyamburr"/>
<node ID="ID_null" POSITION="left" TEXT="Iriarte died in 1932"/>
<node ID="ID_null" POSITION="left" TEXT="Diez sole owner 1936"/>
<node ID="ID_null" POSITION="left" TEXT="Fernandez Family Sole owner since 1936"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="focus on Mexico City"/>
<node ID="ID_null" POSITION="left" TEXT="Modelo 1st Brand"/>
<node ID="ID_null" POSITION="left" TEXT="Corona 2nd Brand">
<node ID="ID_null" POSITION="left" TEXT="Clear Glass Customers preference"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="1940s period of strong growth ">
<node ID="ID_null" POSITION="left" TEXT="concentrate domesti&#172;cally "/>
<node ID="ID_null" POSITION="left" TEXT="improve distribution methods and produc&#172;tion facilities ">
<node ID="ID_null" POSITION="left" TEXT="distribution: direct with profit sharing"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="bought the brands and assets of the Toluca y Mexico Brewery">
<node ID="ID_null" POSITION="left" TEXT="1935"/>
<node ID="ID_null" POSITION="left" TEXT="country's oldest brand of beer"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="1971, Antonino Fernandez was appointed CEO">
<node ID="ID_null" POSITION="left" TEXT="Mexican Stock exchange in 1994"/>
<node ID="ID_null" POSITION="left" TEXT="Anheuser-Busch 17.7 % of the equity">
<node ID="ID_null" POSITION="left" TEXT="The 50.2 % represented 43.9% voting"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="Largest Beer producer and distrubutor in Mexico">
<node ID="ID_null" POSITION="left" TEXT="corona 56% share"/>
</node>
</node>
<node ID="ID_null" POSITION="right" TEXT="Modelo in US">
<node ID="ID_null" POSITION="left" TEXT="History">
<node ID="ID_null" POSITION="left" TEXT="1979"/>
<node ID="ID_null" POSITION="left" TEXT="Amalgamated Distillery Products Inc. (">
<node ID="ID_null" POSITION="left" TEXT="later renamed Barton Beers Ltd."/>
</node>
<node ID="ID_null" POSITION="left" TEXT="gained popularity in southern states"/>
<node ID="ID_null" POSITION="left" TEXT="rapid growth 1980s">
<node ID="ID_null" POSITION="left" TEXT="second most popular imported beer"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="1991">
<node ID="ID_null" POSITION="left" TEXT="doubling of federal excise tax on beer">
<node ID="ID_null" POSITION="left" TEXT="sales decrease of 15 percent"/>
<node ID="ID_null" POSITION="left" TEXT="distributor absorb the tax 92"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="distributors took the loss"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="2007 5 beers to us">
<node ID="ID_null" POSITION="left" TEXT="3 of top 8 beers in US"/>
<node ID="ID_null" POSITION="left" TEXT="Heineken">
<node ID="ID_null" POSITION="left" TEXT="Main Import Comptitor"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="131 million cases"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Marketing">
<node ID="ID_null" POSITION="left" TEXT="surfing mythology"/>
<node ID="ID_null" POSITION="left" TEXT="not selling premium quality"/>
<node ID="ID_null" POSITION="left" TEXT="not testosterone driven"/>
<node ID="ID_null" POSITION="left" TEXT="found new following"/>
<node ID="ID_null" POSITION="left" TEXT="beer for non beer drinkers"/>
<node ID="ID_null" POSITION="left" TEXT="dependable second choise"/>
<node ID="ID_null" POSITION="left" TEXT="Fun in the sun">
<node ID="ID_null" POSITION="left" TEXT="Barton Beer's idea"/>
<node ID="ID_null" POSITION="left" TEXT="escape"/>
<node ID="ID_null" POSITION="left" TEXT="relaxation"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="1996ad budget">
<node ID="ID_null" POSITION="left" TEXT="Corona 5.1 mil"/>
<node ID="ID_null" POSITION="left" TEXT="Heiniken 15 mil"/>
<node ID="ID_null" POSITION="left" TEXT="an bsch 192 mil"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="Us dist contracts">
<node ID="ID_null" POSITION="left" TEXT="importer/distributors">
<node ID="ID_null" POSITION="left" TEXT="Local Companies"/>
<node ID="ID_null" POSITION="left" TEXT="Autonomous"/>
<node ID="ID_null" POSITION="left" TEXT="competitive relationship"/>
<node ID="ID_null" POSITION="left" TEXT="transportation"/>
<node ID="ID_null" POSITION="left" TEXT="insurance"/>
<node ID="ID_null" POSITION="left" TEXT="pricing"/>
<node ID="ID_null" POSITION="left" TEXT="customs"/>
<node ID="ID_null" POSITION="left" TEXT="advertixing"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="procermex inc">
<node ID="ID_null" POSITION="left" TEXT="Modelo us subsidiary"/>
<node ID="ID_null" POSITION="left" TEXT="Support"/>
<node ID="ID_null" POSITION="left" TEXT="Supervise"/>
<node ID="ID_null" POSITION="left" TEXT="Coordinate"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Modelo had final say on brand image"/>
<node ID="ID_null" POSITION="left" TEXT="production in Mexico"/>
<node ID="ID_null" POSITION="left" TEXT="Chicago based Barton Beers 1st">
<node ID="ID_null" POSITION="left" TEXT="largest importer in 25 western states"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Gambrinus">
<node ID="ID_null" POSITION="left" TEXT="1986"/>
<node ID="ID_null" POSITION="left" TEXT="eastern dist"/>
</node>
</node>
</node>
<node ID="ID_null" POSITION="right" TEXT="The Beer market">
<node ID="ID_null" POSITION="left" TEXT="traditionally a clustered market"/>
<node ID="ID_null" POSITION="left" TEXT="many local breweries"/>
<node ID="ID_null" POSITION="left" TEXT="no means of transport"/>
<node ID="ID_null" POSITION="left" TEXT="colsolition happened in 1800s"/>
<node ID="ID_null" POSITION="left" TEXT="different countries had different tastes"/>
<node ID="ID_null" POSITION="left" TEXT="90s national leaders expanded abroad"/>
<node ID="ID_null" POSITION="left" TEXT="startup costs high">
<node ID="ID_null" POSITION="left" TEXT="industry supported conectration"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Interbrew">
<node ID="ID_null" POSITION="left" TEXT="Belgian"/>
<node ID="ID_null" POSITION="left" TEXT="aquired breweries in 20 countries"/>
<node ID="ID_null" POSITION="left" TEXT="sales in 110 countries"/>
<node ID="ID_null" POSITION="left" TEXT="local managers controlling brands"/>
<node ID="ID_null" POSITION="left" TEXT="flagship brand: Stella Artois"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="2004 merger">
<node ID="ID_null" POSITION="left" TEXT="#1 Interbrew"/>
<node ID="ID_null" POSITION="left" TEXT="#5 Am Bev - Brazil"/>
<node ID="ID_null" POSITION="left" TEXT="largest merge">
<node ID="ID_null" POSITION="left" TEXT="worth 12.8 billion"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="2007">
<node ID="ID_null" POSITION="left" TEXT="inbev"/>
<node ID="ID_null" POSITION="left" TEXT="SAP Miller"/>
<node ID="ID_null" POSITION="left" TEXT="Heineken">
<node ID="ID_null" POSITION="left" TEXT="produces beer domestically">
<node ID="ID_null" POSITION="left" TEXT="parent of local distributors">
<node ID="ID_null" POSITION="left" TEXT="marketing"/>
<node ID="ID_null" POSITION="left" TEXT="importing">
<node ID="ID_null" POSITION="left" TEXT="import taxes passed on to consumer"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="distribution"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="marketing">
<node ID="ID_null" POSITION="left" TEXT="premium beer"/>
<node ID="ID_null" POSITION="left" TEXT="premium brand"/>
<node ID="ID_null" POSITION="left" TEXT="no mythology"/>
<node ID="ID_null" POSITION="left" TEXT="superior taste"/>
<node ID="ID_null" POSITION="left" TEXT="2006 aggressive marketing campaign">
<node ID="ID_null" POSITION="left" TEXT="Heineken Premium Light"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="reputation of top selling beer in world"/>
<node ID="ID_null" POSITION="left" TEXT="Dutch"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Anh Bush">
<node ID="ID_null" POSITION="left" TEXT="produces in foreign markets"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="Beer Marketing">
<node ID="ID_null" POSITION="left" TEXT="People drink marketing"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Future">
<node ID="ID_null" POSITION="left" TEXT="domestic and foreign threats"/>
<node ID="ID_null" POSITION="left" TEXT="other merger talks"/>
<node ID="ID_null" POSITION="left" TEXT="Inbev in talks with Anh Bush">
<node ID="ID_null" POSITION="left" TEXT="Two biggest companies will create huge company"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Sales were decreasing due to competitive media budgets"/>
</node>
</node>
<node ID="ID_null" POSITION="right" TEXT="Mexico Industry">
<node ID="ID_null" POSITION="left" TEXT="has most trade agreements in world"/>
<node ID="ID_null" POSITION="left" TEXT="one of the largest domestic beer markets"/>
<node ID="ID_null" POSITION="left" TEXT="imported beer only 1% sales">
<node ID="ID_null" POSITION="left" TEXT="half were anh bcsh dist by modelo"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="modelo">
<node ID="ID_null" POSITION="left" TEXT="NAFTA S.A. An Bucsh"/>
<node ID="ID_null" POSITION="left" TEXT="62.8% of market"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="FEMSA">
<node ID="ID_null" POSITION="left" TEXT="domestic market">
<node ID="ID_null" POSITION="left" TEXT="37% of domestic market"/>
<node ID="ID_null" POSITION="left" TEXT="production and distribution in Mexico: peso not a threat"/>
<node ID="ID_null" POSITION="left" TEXT="Owns Oxxo C">
<node ID="ID_null" POSITION="left" TEXT="CA largest chain of conv stores"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="leads domestic premium beer market"/>
<node ID="ID_null" POSITION="left" TEXT="997 to 2004 taking domestic market share"/>
<node ID="ID_null" POSITION="left" TEXT="NAFTA SACoca cola">
<node ID="ID_null" POSITION="left" TEXT="Exclusive distributor"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="foriegn market">
<node ID="ID_null" POSITION="left" TEXT="Partnership Heiniken">
<node ID="ID_null" POSITION="left" TEXT="Distribution in US"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="90s entry to us market failed"/>
<node ID="ID_null" POSITION="left" TEXT="Recently partnered with Heiniken for US market">
<node ID="ID_null" POSITION="left" TEXT="2005 18.7% growth"/>
</node>
</node>
</node>
</node>
</node>
</map>

View File

@ -0,0 +1,991 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">corona</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Modelo in world</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">International market protected Modelo from unstable peso</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Fifth largest distributor in world</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Can they sustain that trend</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">in 12 years</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">One of top 10 breweries in world</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Carloz Fernandez CEO</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">CEO Since 1997</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">29 years old</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">working there since 13</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">vision: top five brewers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">International Business model</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">experienced local distributors</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Growing international demand</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Capitalize on NAFTA</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">top 10 beer producers in world</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">7.8 % sales growth compounded over ten years</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">2005</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">12.3 % exports</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">4% increase domestically</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">export sales 30%</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Corona Extra</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">worlds fourth best selling beer</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">56% shar of domestic market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">Since 1997 #1 import in US</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="7">
<Data ss:Type="String">outsold competitor by 50%</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Expanding production </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">renovate facility in Zacatecas</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">300 million investment</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">US Beer Market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">2nd largest nest to China</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Consumption six times higher per cap</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Groth expectations reduced</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">80% of market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">AB</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">75% of industry profits</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">adolf coors</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Miller</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">dense network of regional craft brewing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">volume main driver</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Modelo in Mexico</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">History to 1970</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">formed in 1922</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Pablo Diez Fernandez, Braulio Irare, Marin Oyamburr</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Iriarte died in 1932</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Diez sole owner 1936</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Fernandez Family Sole owner since 1936</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">focus on Mexico City</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Modelo 1st Brand</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Corona 2nd Brand</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Clear Glass Customers preference</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">1940s period of strong growth </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">concentrate domesti¬cally </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">improve distribution methods and produc¬tion facilities </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">distribution: direct with profit sharing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">bought the brands and assets of the Toluca y Mexico Brewery</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">1935</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">country's oldest brand of beer</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">1971, Antonino Fernandez was appointed CEO</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Mexican Stock exchange in 1994</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Anheuser-Busch 17.7 % of the equity</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">The 50.2 % represented 43.9% voting</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Largest Beer producer and distrubutor in Mexico</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">corona 56% share</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Modelo in US</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">History</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">1979</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Amalgamated Distillery Products Inc. (</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">later renamed Barton Beers Ltd.</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">gained popularity in southern states</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">rapid growth 1980s</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">second most popular imported beer</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">1991</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">doubling of federal excise tax on beer</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">sales decrease of 15 percent</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">distributor absorb the tax 92</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">distributors took the loss</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">2007 5 beers to us</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">3 of top 8 beers in US</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Heineken</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Main Import Comptitor</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">131 million cases</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Marketing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">surfing mythology</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">not selling premium quality</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">not testosterone driven</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">found new following</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">beer for non beer drinkers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">dependable second choise</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Fun in the sun</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Barton Beer's idea</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">escape</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">relaxation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">1996ad budget</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Corona 5.1 mil</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Heiniken 15 mil</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">an bsch 192 mil</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Us dist contracts</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">importer/distributors</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Local Companies</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Autonomous</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">competitive relationship</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">transportation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">insurance</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">pricing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">customs</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">advertixing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">procermex inc</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Modelo us subsidiary</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Support</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Supervise</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Coordinate</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Modelo had final say on brand image</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">production in Mexico</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Chicago based Barton Beers 1st</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">largest importer in 25 western states</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Gambrinus</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">1986</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">eastern dist</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">The Beer market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">traditionally a clustered market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">many local breweries</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">no means of transport</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">colsolition happened in 1800s</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">different countries had different tastes</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">90s national leaders expanded abroad</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">startup costs high</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">industry supported conectration</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Interbrew</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Belgian</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">aquired breweries in 20 countries</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">sales in 110 countries</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">local managers controlling brands</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">flagship brand: Stella Artois</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">2004 merger</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">#1 Interbrew</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">#5 Am Bev - Brazil</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">largest merge</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">worth 12.8 billion</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">2007</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">inbev</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">SAP Miller</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Heineken</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">produces beer domestically</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">parent of local distributors</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="7">
<Data ss:Type="String">marketing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="7">
<Data ss:Type="String">importing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="8">
<Data ss:Type="String">import taxes passed on to consumer</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="7">
<Data ss:Type="String">distribution</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">marketing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">premium beer</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">premium brand</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">no mythology</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">superior taste</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">2006 aggressive marketing campaign</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="7">
<Data ss:Type="String">Heineken Premium Light</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">reputation of top selling beer in world</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Dutch</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Anh Bush</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">produces in foreign markets</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Beer Marketing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">People drink marketing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Future</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">domestic and foreign threats</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">other merger talks</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Inbev in talks with Anh Bush</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Two biggest companies will create huge company</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Sales were decreasing due to competitive media budgets</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Mexico Industry</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">has most trade agreements in world</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">one of the largest domestic beer markets</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">imported beer only 1% sales</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">half were anh bcsh dist by modelo</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">modelo</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">NAFTA S.A. An Bucsh</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">62.8% of market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">FEMSA</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">domestic market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">37% of domestic market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">production and distribution in Mexico: peso not a threat</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Owns Oxxo C</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">CA largest chain of conv stores</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">leads domestic premium beer market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">997 to 2004 taking domestic market share</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">NAFTA SACoca cola</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">Exclusive distributor</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">foriegn market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Partnership Heiniken</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">Distribution in US</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">90s entry to us market failed</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Recently partnered with Heiniken for US market</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="6">
<Data ss:Type="String">2005 18.7% growth</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 corona
1.1 Modelo in world

View File

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

View File

@ -0,0 +1,191 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">SaberMás</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Utilización de medios de expresión artística, digitales y analógicos</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Precio también limitado: 100-120?</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Talleres temáticos</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Naturaleza</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Animales, Plantas, Piedras</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Arqueología</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Energía</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Astronomía</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Arquitectura</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Cocina</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Poesía</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Culturas Antiguas</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Egipto, Grecia, China...</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Paleontología</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Duración limitada: 5-6 semanas</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Niños y niñas que quieren saber más</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Alternativa a otras actividades de ocio</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Uso de la tecnología durante todo el proceso de aprendizaje</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Estructura PBL: aprendemos cuando buscamos respuestas a nuestras propias preguntas </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Trabajo basado en la experimentación y en la investigación</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">De 8 a 12 años, sin separación por edades</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Máximo 10/1 por taller</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Actividades centradas en el contexto cercano</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Complementamos el trabajo de la escuela</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p>Todos los contenidos de los talleres están relacionados con el currículo de la enseñanza básica.</p>
<p>A diferencia de la práctica tradicional, pretendemos ahondar en el conocimiento partiendo de lo que realmente interesa al niño o niña,</p>
<p>ayudándole a que encuentre respuesta a las preguntas que él o ella se plantea.</p>
<p/>
<p>Por ese motivo, SaberMás proyecta estar al lado de los niños que necesitan una motivación extra para entender la escuela y fluir en ella,</p>
<p>y también al lado de aquellos a quienes la curiosidad y las ganas de saber les lleva más allá.</p>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Cada uno va a su ritmo, y cada cual pone sus límites</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Aprendemos todos de todos</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Valoramos lo que hemos aprendido</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">SaberMás trabaja con, desde y para la motivación</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Trabajamos en equipo en nuestros proyectos </Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 SaberMás
1.1 Utilización de medios de expresión artística, digitales y analógicos

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 Indicator needs

View File

@ -0,0 +1,12 @@
<map version="0.9.0">
<node ID="ID_1" TEXT="Observation">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p>Always ask</p>
</body>
</html>
</richcontent>
</node>
</map>

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">Observation</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p>Always ask</p>
</ss:Data>
</Comment>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -1,85 +1 @@
<?xml version="1.0" encoding="UTF-8"?><office:document-content office:version="1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns="http://www.w3.org/1999/xhtml">
<office:scripts/>
<office:font-face-decls>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans2" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:automatic-styles>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:body>
<office:text>
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Title">Observation</text:p>
<text:p text:style-name="Standard">Always ask</text:p>
</office:text>
</office:body>
</office:document-content>
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Observation"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 Observation

View File

@ -0,0 +1,34 @@
PPM Plan
,
Business Development
,
Backlog Management
,
Freeform IT
,
Client Project Management
,
Governance & Executive
,
Finance
,
Administration
,
Human Resources
,
Freeform Hosting
,
Community Outreach
,
R&D
,
,
Goals
,
,
Formulize
,
Probono
,
,
1 PPM Plan
2 ,
3 Business Development
4 ,
5 Backlog Management
6 ,
7 Freeform IT
8 ,
9 Client Project Management
10 ,
11 Governance & Executive
12 ,
13 Finance
14 ,
15 Administration
16 ,
17 Human Resources
18 ,
19 Freeform Hosting
20 ,
21 Community Outreach
22 ,
23 R&D
24 ,
25 ,
26 Goals
27 ,
28 ,
29 Formulize
30 ,
31 Probono
32 ,
33 ,
34

View File

@ -0,0 +1,427 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?><w:wordDocument xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:o="urn:schemas-microsoft-com:office:office">
<o:DocumentProperties>
<o:Title>PPM Plan</o:Title>
</o:DocumentProperties>
<w:styles>
<w:versionOfBuiltInStylenames w:val="4"/>
<w:latentStyles w:defLockedState="off" w:latentStyleCount="156"/>
<w:style w:type="paragraph" w:default="on" w:styleId="Normal">
<w:name w:val="Normal"/>
<w:rsid w:val="00831C9D"/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:sz w:val="24"/>
<w:sz-cs w:val="24"/>
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading1">
<w:name w:val="heading 1"/>
<wx:uiName wx:val="Heading 1"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading1"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:kern w:val="32"/>
<w:sz w:val="32"/>
<w:sz-cs w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading2">
<w:name w:val="heading 2"/>
<wx:uiName wx:val="Heading 2"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading2"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="1"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:i/>
<w:i-cs/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading3">
<w:name w:val="heading 3"/>
<wx:uiName wx:val="Heading 3"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading3"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="2"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="26"/>
<w:sz-cs w:val="26"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading4">
<w:name w:val="heading 4"/>
<wx:uiName wx:val="Heading 4"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading4"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="3"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading5">
<w:name w:val="heading 5"/>
<wx:uiName wx:val="Heading 5"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading5"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="4"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:i/>
<w:i-cs/>
<w:sz w:val="26"/>
<w:sz-cs w:val="26"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading6">
<w:name w:val="heading 6"/>
<wx:uiName wx:val="Heading 6"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading6"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="5"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="22"/>
<w:sz-cs w:val="22"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading7">
<w:name w:val="heading 7"/>
<wx:uiName wx:val="Heading 7"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading7"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="6"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading8">
<w:name w:val="heading 8"/>
<wx:uiName wx:val="Heading 8"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading8"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="7"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:i/>
<w:i-cs/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading9">
<w:name w:val="heading 9"/>
<wx:uiName wx:val="Heading 9"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading9"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="8"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:sz w:val="22"/>
<w:sz-cs w:val="22"/>
</w:rPr>
</w:style>
<w:style w:type="character" w:default="on" w:styleId="DefaultParagraphFont">
<w:name w:val="Default Paragraph Font"/>
<w:semiHidden/>
</w:style>
<w:style w:type="table" w:default="on" w:styleId="TableNormal">
<w:name w:val="Normal Table"/>
<wx:uiName wx:val="Table Normal"/>
<w:semiHidden/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa"/>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="list" w:default="on" w:styleId="NoList">
<w:name w:val="No List"/>
<w:semiHidden/>
</w:style>
<w:style w:type="paragraph" w:styleId="Title">
<w:name w:val="Title"/>
<w:basedOn w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Title"/>
<w:spacing w:before="240" w:after="60"/>
<w:jc w:val="center"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:kern w:val="28"/>
<w:sz w:val="32"/>
<w:sz-cs w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="BodyText">
<w:name w:val="Body Text"/>
<w:basedOn w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="BodyText"/>
<w:spacing w:after="120"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
</w:style>
</w:styles>
<w:body>
<wx:sect>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Title"/>
</w:pPr>
<w:r>
<w:t>PPM Plan</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Business Development</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Backlog Management</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Freeform IT</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Client Project Management</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Governance &amp; Executive</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Finance</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Administration</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Human Resources</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="BodyText"/>
</w:pPr>
<w:r>
<w:t>
</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Freeform Hosting</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Community Outreach</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>R&amp;D</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Goals</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Formulize</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Probono</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t/>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
</wx:sub-section>
</wx:sect>
</w:body>
</w:wordDocument>

View File

@ -0,0 +1,17 @@
\chapter{PPM Plan}\label{ID_1}
\section{Business Development }\label{ID_4}
\section{Backlog Management}\label{ID_18}Siehe auch \url{https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit}
\section{Freeform IT}\label{ID_10}
\section{Client Project Management}\label{ID_204}
\section{Governance &amp; Executive}\label{ID_206}
\section{Finance}\label{ID_5}
\section{Administration}\label{ID_3}
\section{Human Resources}\label{ID_154}
\section{Freeform Hosting}\label{ID_16}
\section{Community Outreach}\label{ID_247}
\section{R&amp;D}\label{ID_261}
\subsection{Goals}\label{ID_263}
\subsection{Formulize}\label{ID_264}
\section{Probono}\label{ID_268}
\subsection{}\label{ID_269}

View File

@ -0,0 +1,50 @@
<map version="0.9.0">
<node BACKGROUND_COLOR="#32e36a" ID="ID_1" TEXT="PPM Plan">
<node ID="ID_4" POSITION="right" TEXT="Business Development ">
<font BOLD="true"/>
</node>
<node ID="ID_18" LINK="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit" POSITION="right" TEXT="Backlog Management">
<font BOLD="true"/>
</node>
<node ID="ID_10" POSITION="left" TEXT="Freeform IT">
<font BOLD="true"/>
</node>
<node ID="ID_204" POSITION="left" TEXT="Client Project Management">
<font BOLD="true"/>
</node>
<node ID="ID_206" POSITION="left" TEXT="Governance &amp; Executive">
<font BOLD="true"/>
</node>
<node ID="ID_5" POSITION="right" TEXT="Finance">
<font BOLD="true"/>
</node>
<node ID="ID_3" POSITION="right" TEXT="Administration">
<font BOLD="true"/>
</node>
<node ID="ID_154" POSITION="right" TEXT="Human Resources">
<font BOLD="true"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
</node>
<node ID="ID_16" POSITION="left" TEXT="Freeform Hosting">
<font BOLD="true"/>
</node>
<node ID="ID_247" POSITION="right" TEXT="Community Outreach">
<font BOLD="true"/>
</node>
<node ID="ID_261" POSITION="right" TEXT="R&amp;D">
<font BOLD="true"/>
<node ID="ID_263" POSITION="right" TEXT="Goals"/>
<node ID="ID_264" POSITION="right" TEXT="Formulize"/>
</node>
<node ID="ID_268" POSITION="left" TEXT="Probono">
<node ID="ID_269" POSITION="left"/>
</node>
</node>
</map>

View File

@ -0,0 +1,111 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">PPM Plan</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Business Development </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Backlog Management</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Freeform IT</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Client Project Management</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Governance &amp; Executive</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Finance</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Administration</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Human Resources</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Freeform Hosting</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Community Outreach</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">R&amp;D</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Goals</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Formulize</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Probono</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String"/>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="4W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Business Development "><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1854nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Backlog Management"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/><ap:Hyperlink Url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/></ap:Topic><ap:Topic OId="1054nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Freeform IT"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2044nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Client Project Management"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2064nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Governance &amp; Executive"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="5W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Finance"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="3W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Administration"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1544nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Human Resources"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="1654nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Freeform Hosting"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2474nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Community Outreach"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2614nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="2634nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Goals"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2644nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Formulize"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="R&amp;D"><ap:Font Bold="true"/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2684nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="2694nezC90m8NYAi2fjQvw=="><ap:Text PlainText=""><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Probono"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="PPM Plan"><ap:Font/></ap:Text><ap:Color FillColor="ff32e36a"/><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -0,0 +1,49 @@
1 PPM Plan
1.1 Business Development
1.2 Backlog Management
1.3 Freeform IT
1.4 Client Project Management
1.5 Governance & Executive
1.6 Finance
1.7 Administration
1.8 Human Resources
1.9 Freeform Hosting
1.10 Community Outreach
1.11 R&D
1.11.1 Goals
1.11.2 Formulize
1.12 Probono
1.12.1

View File

@ -0,0 +1,352 @@
<map name="66634" version="pela">
<topic central="true" text="PPM Plan" id="1" bgColor="#32e36a">
<topic position="241,250" order="10" text="Business Development " id="4" fontStyle=";;;bold;;"/>
<topic position="226,-100" order="3" text="Backlog Management" shape="line" id="18" fontStyle=";;;bold;;">
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/>
</topic>
<topic position="-193,50" order="2" text="Freeform IT" id="10" fontStyle=";;;bold;;"/>
<topic position="-271,-50" order="1" text="Client Project Management" id="204" fontStyle=";;;bold;;"/>
<topic position="-183,-150" order="5" text="Governance &amp; Executive" id="206" fontStyle=";;;bold;;"/>
<topic position="124,-200" order="7" text="Finance" id="5" fontStyle=";;;bold;;"/>
<topic position="176,-150" order="5" text="Administration" id="3" fontStyle=";;;bold;;"/>
<topic position="222,100" order="4" text="Human Resources" id="154" fontStyle=";;;bold;;">
<note text="HR%20Vision%3A%20Freeform%20Solutions%20is%20successful%20at%20its%20mission%2C%20sustainable%20as%20an%20organization%20AND%20is%20a%20great%20place%20to%20work.%0AHR%20Mission%3A%20To%20provide%20a%20positive%20HR%20service%20experience%20for%20applicants%20and%20employees%2C%20and%20%20collaborate%20with%20departments%20to%20recruit%2C%20develop%2C%20support%2C%20and%20retain%20diverse%20and%20talented%20employees%20who%20are%20the%20key%20to%20Freeform%u2019s%20%20reputation%20and%20success."/>
</topic>
<topic position="-202,150" order="6" text="Freeform Hosting" id="16" fontStyle=";;;bold;;"/>
<topic position="197,50" order="2" text="Community Outreach" id="247" fontStyle=";;;bold;;"/>
<topic position="124,300" order="12" text="R&amp;D" id="261" fontStyle=";;;bold;;">
<topic position="230,289" order="0" text="Goals" id="263"/>
<topic position="239,313" order="1" text="Formulize" id="264"/>
</topic>
<topic position="-158,0" order="0" text="Probono" id="268">
<topic position="-273,1" order="0" id="269"/>
</topic>
</topic>
<topic position="1558,-249" text="Strategy 2: Talent Development" id="31">
<note text="Strategy%20%232%3A%20Support%20the%20talent%20development%20of%20our%20employees%20through%20professional%20development%20and%20learning%20and%20through%20improved%20performance%20management."/>
<topic position="1817,-260" order="0" text="Strategic Priority 2a: Personal Plans" id="113">
<note text="Each%20employee%20will%20have%20a%20personal%20Professional%20Development%20Plan.%20%20"/>
</topic>
<topic position="1869,-236" order="1" text="Strategic Priority 2b: External learning matches organ. goals"
id="114">
<note text="Each%20department%20of%20Freeform%20will%20identify%20areas%20that%20need%20development%20to%20meet%20overall%20FS%20goals.%20%20Eg.%20%20Project%20Manager%20may%20identify%20needed%20improvement%20in%20a%20development%20tool.%20%20Or...%20Bus.%20Dev.%20may%20identify%20a%20new%20need%20in%20NFP%20that%20FS%20could%20fill%20within%20mandate%2C%20if%20training%20were%20provided.%20%20Professional%20Dev.%20priority%20will%20be%20given%20to%20proposals%20for%20development%20with%20clear%20ROIs."/>
</topic>
<topic position="1831,-212" order="2" text="Strategic Priority 2c: Learning Environment" id="116">
<note text="Learning%20and%20innovation%20are%20an%20essential%20part%20of%20providing%20the%20best%20solutions%20to%20NFPs.%20%20Cost%20effective%20internal%20learning%20and%20time%20to%20explore%20innovation%20will%20be%20encouraged%2C%20provided%20they%20conform%20with%20organization%20goal%20and%20clear%20ROI%20is%20demonstrated."/>
</topic>
<topic position="1766,-188" order="3" text="So That..." id="112">
<icon id="object_rainbow"/>
<note text="%28So%20that...%20our%20employees%20have%20improved%20skills%20and%20knowledge%2C%20So%20that...%20they%20are%20highly%20competent%20and%20can%20work%20well%20in%20agile%20teams%20and%20feel%20fulfilled%20and%20self%20actualized...%20So%20that%20we%20can%20so%20the%20best%20work%20possible%2C%20for%20the%20least%20cost%2C%20in%20the%20shortest%20time%20for%20other%20NFPs%2C%20So%20that...%20NFPs%20can%20help%20those%20who%20need%20it.%29"/>
</topic>
</topic>
<topic position="1952,168" text="Strategy 4: Inclusive, Positive Environment" id="105">
<note text="Strategy%20%234%3A%20Foster%20a%20diverse%2C%20inclusive%20community%20with%20a%20positive%20work%20environment."/>
<topic position="2229,142" order="0" text="Strategic Priority 4a:Feedback" id="119">
<note text="Conduct%20regular%20organizational%20feedback%20assessments%20and%20collaborate%20to%20improve%20the%20work%20climate"/>
</topic>
<topic position="2246,166" order="1" text="Strategic Priority 4b: Anti Harassment" id="120">
<note text="Educate%20employees%20on%20the%20prevention%20of%20harassment%20and%20discrimination%20and%20productive%20ways%20to%20resolve%20conflict"/>
</topic>
<topic position="2228,190" order="2" text="Strategic Priority 4c: Diversity" id="121">
<note text="Insure%20we%20promote%20our%20commitment%20to%20diversity%20and%20non-discrimination%20through%20our%20actions%20and%20in%20our%20outreach%20and%20employee%20recruitment%20efforts"/>
</topic>
<topic position="2178,214" order="3" id="253"/>
<topic position="2191,238" order="4" text="So That..." id="118">
<icon id="object_rainbow"/>
<note text="%28So%20that...%20we%20can%20reflect%20the%20diverse%20populations%20we%20serve%20AND%20ensure%20everyone%20feels%20safe%2C%20respected%20%20and%20%20included%2C%20So%20that...%20we%20better%20serve%20our%20diverse%20client%20organizations%20AND%20we%20are%20a%20great%20place%20to%20work%20%29"/>
</topic>
</topic>
<topic position="1326,-642" text="Strategy 1: Recruit &amp; Retain" id="29">
<note text="Recruit%20and%20retain%20top%20talent%20commensurate%20with%20identified%20organizational%20capacity%20requirements%20"/>
<topic position="1444,-781" order="0" text="So that..." id="28">
<note text="%28So%20that...%20we%20find%20and%20keep%20good%20people%2C%20So%20that...%20they%20are%20highly%20competent%20and%20can%20work%20well%20in%20agile%20teams...%20So%20that%20we%20can%20so%20the%20best%20work%20possible%2C%20for%20the%20least%20cost%2C%20in%20the%20shortest%20time%20for%20other%20NFPs%2C%20So%20that...%20NFPs%20can%20help%20those%20who%20need%20it.%29"/>
</topic>
<topic position="1539,-742" order="1" text="Strategic Priority 1a: Recruitment" id="37">
<note text="1.%20Identify%20and%20use%20proactive%20and%20effective%20recruitment%20strategies%2C%20"/>
<topic position="1573,-752" order="0" text="Modify App Form" shrink="true" id="238">
<note text="Recently%2C%20I%20saw%20a%20few%20job%20posts%20sent%20through%20different%20community%0Agroups%20and%20they%20seem%20to%20be%20taking%20our%20idea%20of%20screening%20candidates%0Ato%20a%20next%20level.%20Not%20only%20they%20ask%20candidates%20to%20provide%20resume%20and%0Acover%20letter%20+%20some%20project%20related%20information%20but%20also%20request%0Awritten%20answers%20to%20questions%20like%20%22Why%20are%20you%20interested%20in%20this%0Aposition%22%20etc.%20That%20allows%20to%20screen%20out%20people%20who%20just%20submit%0Amultiple%20resumes%20to%20multiple%20organizations%20without%20really%20applying%0Afor%20that%20particular%20job%20and%20it%20would%20make%20our%20interview%20process%20more%0Astraightforward%2C%20knowing%20answers%20to%20some%20questions.%0A%0AFor%20example%2C%20we%20may%20want%20to%20always%20include%20in%20the%20screening%0Aquestions%3A%0A-%20Why%20do%20you%20want%20to%20work%20for%20Freeform%20Solutions%3F%0A-%20Why%20are%20you%20interested%20in%20this%20position%3F%0A-%20What%27s%20your%20experience%20working%20with%20NFP%3F%0A-%20What%27s%20your%20experience%20working%20with%20Open%20Source%20software%3F%0Aetc.%0A%0AI%20also%20saw%20that%20people%20ask%20for%20references%20up%20front%2C%20in%20that%0Asubmissions%20form.%20We%20could%20include%20the%20HR%20requirement%20that%20Heather%0Abrought%20recently%20for%20%22permissions%20to%20ask%20your%20references%20about%20you%22%0Ain%20the%20online%20form%20so%20that%20we%20don%27t%20have%20to%20follow%20up%20with%20this%0Alater.%0A%0AAttached%20below%20a%20sample%20of%20such%20screening%20questions"/>
</topic>
<topic position="1614,-728" order="1" text="Strategy integrated with hiring plan" id="299">
<note text="Hiring%20plan%20should%20be%20comprehensive...%20not%20Agile%20or%20Iterative%2C%20in%20the%20sense%20that%20staff%20capacity%20and%20skill%20needs%20should%20be%20met%20within%20at%20least%20a%20six%20month%20plan.%20%20If%20three%20Drupal%20developers%20are%20needed%2C%20the%20hiring%20should%20be%20done%20concurrently%20to%20minimize%20HR%20costs%20and%20time."/>
</topic>
</topic>
<topic position="1477,-700" order="2" text="Strategic Priority 1b: Hiring" id="39">
<note text="2.%20Continue%20to%20practice%20our%20unique%20Freeform%20hiring%20process%20that%20balances%20fit%20with%20the%20Freeform%20culture%20and%20best%20talent%20"/>
</topic>
<topic position="1487,-647" order="3" text="Strategic Priority 1c: Onboarding" id="41">
<note text=""/>
<topic position="1592,-674" order="0" text="3 Month Onboarding Process" shape="elipse" id="275"
bgColor="#adddf0"/>
<topic position="1570,-650" order="1" text="Tools &amp; Guidelines" id="277"/>
<topic position="1552,-626" order="2" text="Mentoring" id="276"/>
</topic>
<topic position="1484,-569" order="4" text="Strategic Priority 1d: Incentives" id="43">
<note text="5.%20Explore%20incentives%20-%20monetary%2C%20benefits%2C%20fulfilment%20-%20needed%20to%20encourage%20top%20talent%20to%20work%20for%20and%20remain%20working%20for%20an%20NFP"/>
<topic position="1544,-596" order="0" text="Raises" id="274"/>
<topic position="1548,-572" order="1" text="Benefits" shape="elipse" id="270" bgColor="#adddf0"/>
<topic position="1577,-548" order="2" text="Rewards Message" id="45">
<note text="Create%20a%20total%20rewards%20message%20to%20encourage%20prospective%20and%20current%20employees%20to%20understand%20the%20full%20value%20of%20working%20for%20Freeform"/>
</topic>
</topic>
<topic position="1487,-518" order="5" text="Strategic Priority 1e: Offboarding" shrink="true" id="123">
<note text="Assess%20and%20address%20reasons%20why%20talented%20people%20leave%20Freeform"/>
</topic>
</topic>
<topic position="726,413" text="Business Development Plan" shape="rounded rectagle" id="156"
fontStyle=";;#0d0826;;;" bgColor="#32e36a">
<topic position="894,401" order="0" text="Goals" id="164">
<topic position="975,422" order="0" text="Increase new clients" id="168">
<topic position="1138,409" order="0" text="Academic Research" id="171"/>
<topic position="1118,433" order="1" id="177"/>
</topic>
<topic position="978,488" order="1" text="Support New Products" id="172">
<topic position="1125,463" order="0" text="Formulize" id="179"/>
<topic position="1125,487" order="1" id="180"/>
<topic position="1125,511" order="2" id="181"/>
</topic>
<topic position="966,539" order="2" text="Support CiviCRM" id="255"/>
<topic position="976,602" order="3" text="Identify Opportunites" id="182">
<topic position="1121,565" order="0" id="183"/>
<topic position="1121,589" order="1" id="184"/>
<topic position="1121,613" order="2" id="185"/>
<topic position="1121,637" order="3" id="186"/>
</topic>
</topic>
</topic>
<topic position="-621,395" text="Hosting NG Plan" shape="rounded rectagle" id="162" fontStyle=";;#0d0826;;;"
bgColor="#32e36a"/>
<topic position="-613,99" text="Freeform IT Plan" shape="rounded rectagle" id="163" bgColor="#52e380">
<topic position="-753,68" order="0" text="Fragile" id="17" fontStyle=";;;bold;;"/>
<topic position="-749,92" order="1" text="Tools" id="259"/>
<topic position="-760,116" order="2" id="260"/>
</topic>
<topic position="-548,-87" text="Project Teams" shape="rounded rectagle" shrink="true" id="9" bgColor="#52e380">
<topic position="-668,-142" order="0" text="Projects 1-3" id="13"/>
<topic position="-668,-118" order="1" text="Projects 4-6" id="14"/>
<topic position="-672,-94" order="2" text="Projects 7 &amp; 8" id="15"/>
<topic position="-696,-70" order="3" text="General Work" id="12"/>
<topic position="-686,-46" order="4" text="Learning Needs Plan" id="11"/>
</topic>
<topic position="-532,-250" text="Restructure" shape="rounded rectagle" shrink="true" id="33" bgColor="#52e380">
<topic position="-685,-282" order="0" text="Client Centric Process" id="216"/>
<topic position="-692,-258" order="1" text="Freeform Project Process" id="217"/>
<topic position="-693,-234" order="2" text="Supportive Systems Plan" id="218"/>
</topic>
<topic position="-427,-329" text="Board and C Planning" shape="rounded rectagle" shrink="true" id="208"
bgColor="#52e380">
<topic position="-614,-384" order="0" text="Mission Statements" id="23">
<note text="In%20the%20absence%20of%20one%20clearly%20defined%20mission%20statement%2C%20we%20have%20reviewed%20various%20expressed%20mission%20statement%20as%20following%0A%0A%20%20%20%20Objects%20of%20Incorporation%20in%20Letters%20Patent%0A%20%20%20%20%20%20%20%20The%20objects%20of%20the%20Corporation%20are%3ATo%20provide%20solutions%20that%20facilitate%20the%20effective%20use%20of%20information%20technology%20in%20not-for-profit%2C%20non-governmental%2C%20and%20charitable%20organizations%20throughout%20Canada%2C%20to%20support%20and%20improve%20their%20mission%20delivery.%0A%20%20%20%202006%20Strategic%20Business%20Plan%20-%20Brand%20Positioning%0A%20%20%20%20%20%20%20%20We%20are%20a%20nonprofit%20dedicated%20to%20helping%20other%20nonprofits%20understand%20and%20employ%20technology%20appropriately%20and%20effectively%20to%20support%20their%20mission.%20Our%20mission%20is%20to%20provide%20flexible%20consulting%2C%20website%20development%2C%20and%20Internet%20hosting%20solutions%20that%20give%20you%20peace%20of%20mind%20and%20help%20you%20stay%20focused%20on%20your%20mission.%0A%20%20%20%20Freeform%20One%20Page%20%28Freeform%20Wiki%29%0A%20%20%20%20%20%20%20%20About%20Freeform%20Solutions%3A%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization.%20Our%20mission%20is%20help%20%28sic%29%20other%20not-for-profits%20organizations%20to%20build%20their%20capacity%20and%20increase%20their%20effectiveness.%0A%20%20%20%20Result%20of%20Google%20search%20for%20%u201CFreeform%20Solutions%20mission%u201D%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization.%20Our%20mission%20is%20to%20help%20other%20not-for-profits%20use%20technology%20to%20build%20their%20capacity%20and%20increase%20their%20effectiveness.%20%28www.freeformsolutions.ca/en/files/AboutFreeformSolutions.pdf%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20%28www.freeformsolutions.ca%29%20is%20a%20non%20profit%20organization.%20Our%20mission%20is%20to%20help%20other%20non-profit%20organizations%20to%20realize%20their%20missions%20through%20the%20appropriate%20deployment%20of%20information%20and%20knowledge%20management%20systems.www.freeformsolutions.ca/en/sites/default/.../virtual.volunteering.pdf%0A%20%20%20%20%20%20%20%20We%20are%20a%20not-for-profit%20organization%20%28NFP%29%20that%20helps%20other%20NFPs%20use%20IT%20to%20achieve%20their%20organizational%20goals%20and%20better%20serve%20their%20communities.%20Freeform%20Solutions%20is%20a%20nonprofit%20organization%20dedicated%20to%20helping%20other%20nonprofit%20organizations%20understand%20and%20employ%20technology%20appropriately%20and%20effectively%20to%20support%20their%20missions.%20Our%20mission%20is%20to%20provide%20flexible%20consulting%2C%20website%20development%2C%20and%20hosting%20solutions%20%20http%3A//socialinnovation.ca/community/organizations/freeform-solutions%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization%2C%20with%20a%20mission%20to%20help%20other%20not-for-profits%20use%20technology%20more%20effectively%20to%20meet%20their%20own%20missions.%20http%3A//timreview.ca/article/387%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20%u2013%20their%20mission%3A%20%u201Cwe%20help%20not-for-profit%20organisations%20use%20technology%20to%20build%20their%20capacity%20and%20increase%20their%20effectiveness.%20http%3A//www.warnerlaw.ca/links/community-organisations-and-local-businesses/%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization%20with%20a%20mission%20to%20help%20other%20not-for-profits%20use%20technology%20to%20meet%20their%20goals.%20http%3A//xoops.org/modules/news/article.php%3Fstoryid%3D3860%0A%20%20%20%20%20%20%20%20At%20Freeform%20Solutions%2C%20we%20have%20a%20mission%20to%20help%20not-for-profit%20and%20public%20sector%20organizations%20use%20technology%20more%20effectively.%20http%3A//osbrca.blogspot.ca/2010/07/development-commons-approach.html%0A%20%20%20%20Freeform%20Solutions%20Facebook%20Page%0A%20%20%20%20%20%20%20%20Mission%3A%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization%20%28NFP%29%20that%20helps%20other%20NFPs%20use%20IT%20to%20achieve%20their%20organizational%20goals%20and%20better%20serve%20their%20communities.%0A%20%20%20%20The%20current%20Freeform%20Solutions%20website%0A%20%20%20%20%20%20%20%20We%20started%20Freeform%20to%20help%20NFPs%20use%20IT%20to%20achieve%20their%20organizational%20goals%20and%20better%20serve%20their%20communities%20-%20to%20support%20and%20improve%20their%20mission%20delivery.%20Our%20mission%20is%20to%20strengthen%20the%20capacity%20of%20NFPs%20and%20the%20voluntary%20sector%2C%20and%20to%20help%20build%20a%20civil%20society."/>
</topic>
<topic position="-579,-360" order="1" text="Values" id="25"/>
<topic position="-594,-336" order="2" text="Bylaw Review" id="201"/>
<topic position="-581,-312" order="3" text="Policies" id="202"/>
<topic position="-592,-288" order="4" text="Business Plan" id="203"/>
</topic>
<topic position="1723,-35" text="Strategy 3: Safety and Wellness" id="91">
<note text="Strategy%20%23%203%3A%20Promote%20the%20achievement%20of%20safety%20and%20wellness%20in%20our%20virtual%20employee%20community."/>
<topic position="1995,-81" order="0" text="Strategic Priority 3a: H&amp;S Policies &amp; Practices"
shrink="true" id="108">
<note text="Continuing%20improvement%20in%20Health%20and%20Safety%20policies%20and%20practices%20%26%20compliance%20with%20OHSC%20legislation"/>
<topic position="1948,-83" order="0" id="198"/>
</topic>
<topic position="1984,-38" order="1" text="Strategic Priority 3b: Health Promotion" id="110">
<note text="Promoting%20safety%2C%20work-life%20balance%2C%20self-care%2C%20ergonomics%20and%20other%20factors%20for%20wellness%20and%20productivity%20in%20a%20virtual%20workplace%20environment"/>
<topic position="2003,-51" order="0" text="Health and Wellness Committee" id="195">
<note text="The%20Freeform%20H%26S%20rep%20will%20lead%20a%20Health%20and%20Wellness%20Committee%20to%20%20responsible%20for%20recognizing%20health%20and%20safety%20concerns%20and%20identifying%20solutions."/>
</topic>
<topic position="1992,-27" order="1" text="Work-life Balance Initiative" id="197">
<link url="http://hrcouncil.ca/hr-toolkit/workplaces-health-safety.cfm"/>
</topic>
</topic>
<topic position="1933,0" order="2" text="So that..." id="106">
<icon id="object_rainbow"/>
<note text="%28So%20that...%20our%20employees%20remain%20well%20and%20safe%2C%20So%20that...%20they%20are%20highly%20competent%20and%20can%20work%20well%20in%20agile%20teams%20and%20feel%20fulfilled%20and%20self%20actualized...%20So%20that%20we%20can%20so%20the%20best%20work%20possible%2C%20for%20the%20least%20cost%2C%20in%20the%20shortest%20time%20for%20other%20NFPs%2C%20So%20that...%20NFPs%20can%20help%20those%20who%20need%20it.%29"/>
</topic>
</topic>
<topic position="2267,-485" text="Benefits" shape="elipse" id="130" bgColor="#c2eaf0">
<note text="As%20Freeform%20Employees%20we%20will%20have%20benefits%20reviewed%20in%20light%20of%20our%20priorities%20and%20cost%20to%20Freeform"/>
<topic position="2419,-579" order="0" text="As Freeform Staff" id="144">
<icon id="people_group"/>
</topic>
<topic position="2421,-553" order="1" text="Responsibility: HZ, JC" id="131"/>
<topic position="2403,-527" order="2" text="Release 3" id="141">
<icon id="time_calendar"/>
</topic>
<topic position="2514,-503" order="3" text="Have Heather create list benefits against Best Practice &amp; cost"
shape="rounded rectagle" id="132">
<icon id="tick_tick"/>
</topic>
<topic position="2430,-479" order="4" text="Have Jason review list" id="133">
<icon id="tag_green"/>
</topic>
<topic position="2449,-455" order="5" text="Have JC &amp; HZ consult with staff" id="134">
<icon id="tag_orange"/>
</topic>
<topic position="2453,-431" order="6" text="Have best benefits we can afford" id="140">
<icon id="tag_red"/>
</topic>
<topic position="2408,-407" order="7" text="So that..." id="142">
<icon id="object_rainbow"/>
<note text="%20so%20that%20our%20efforts%20to%20excel%20are%20rewarded."/>
</topic>
</topic>
<topic position="607,-489" text="Community Outreach Plan" shape="rounded rectagle" id="248" fontStyle=";8;;bold;;"
bgColor="#51e898">
<topic position="775,-545" order="0" text="Goals" id="285"/>
<topic position="770,-521" order="1" text="CSI" id="249"/>
<topic position="802,-497" order="2" text="Drupal Community" id="250"/>
<topic position="780,-473" order="3" text="CiviCRM" id="251"/>
<topic position="774,-449" order="4" text="Other" id="252"/>
</topic>
<topic position="469,-596" text="Backlog Plan" shape="rounded rectagle" id="215" fontStyle=";;;bold;;"
bgColor="#2ee668">
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/>
<topic position="645,-605" order="0" text="Go To Backlog Plan " shape="rectagle" id="286" bgColor="#e8da6d">
<icon id="funy_glasses"/>
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/>
</topic>
</topic>
<topic position="1460,394" text="Strategy Prospecting" id="167">
<topic position="1617,372" order="0" id="170"/>
<topic position="1617,396" order="1" id="175"/>
<topic position="1617,420" order="2" id="176"/>
</topic>
<topic position="1459,314" text="Stategies: Forecasting" id="166">
<topic position="1620,292" order="0" id="169"/>
<topic position="1620,316" order="1" id="173"/>
<topic position="1620,340" order="2" id="174"/>
</topic>
<topic position="1461,480" text="Strategies Marketing" id="2" fontStyle=";;;normal;;"/>
<topic position="-460,698" id="267"/>
<topic position="1867,-359" text="Exit Interviews" shape="elipse" id="220" fontStyle=";6;;;;">
<topic position="2010,-416" order="0" text="As Freeform" id="232">
<icon id="people_group"/>
</topic>
<topic position="2022,-392" order="1" text="Responsiblity: HZ, KS" id="233"/>
<topic position="2001,-368" order="2" text="Release" id="234">
<icon id="time_hourglass"/>
</topic>
<topic position="2100,-344" order="3" text="Have Heather write procedures for exit interview process" id="235"/>
<topic position="2006,-320" order="4" text="So that" id="236">
<icon id="object_rainbow"/>
<note text="We%20learn%20from%20our%20mistakes%20and%20missed%20opportunities%20in%20future%20with%20the%20goal%20of%20keeping%20the%20best%20talent."/>
</topic>
</topic>
<topic position="2250,-634" text="3 Month Onboarding Process" shape="elipse" id="298" bgColor="#adddf0"/>
<topic position="558,-26" text="Human Resources Plan" shape="rounded rectagle" id="6" fontStyle=";;#0d0826;bold;;"
bgColor="#32e36a">
<topic position="694,-284" order="0" text="Related Org Objectives" id="287" fontStyle=";;;bold;;">
<topic position="772,-321" order="0" text="1" id="288">
<note text="Attract%2C%20build%20and%20retain%20a%20motivated%2C%20agile%2C%20knowledgeable%20team%20of%20Top%20Talent%20that%20loves%20to%20%u201Ccome%u201D%20to%20work"/>
</topic>
<topic position="772,-297" order="1" text="2" id="289">
<note text="Maintain%20level%20of%20human%20resource%20capacity%20and%20skill%20to%20meet%20planned%20growth%20and%20client%20contractual%20commitments"/>
</topic>
<topic position="772,-273" order="2" text="3" id="290">
<note text="Conform%20to%20all%20legislated%20requirements"/>
</topic>
<topic position="772,-249" order="3" text="4" id="291">
<note text="Minimize%20and%20mitigate%20risk%20to%20the%20organization"/>
</topic>
</topic>
<topic position="695,-221" order="1" text="Related Documents" id="294" fontStyle=";;;bold;;">
<note text="MIssion%2C%20Values%2C%20Principles%2C%20Org%20Business%20Plan%2C%20Human%20Resources%20Policy%20Manual"/>
</topic>
<topic position="663,29" order="2" text="Goals" id="30" fontStyle=";;;bold;;">
<topic position="844,-153" order="0" text="Goal:Staff=Optimal Bus. Growth" id="104">
<icon id="sport_football"/>
<note text="Human%20resource%20capacity%20will%20remain%20at%20a%20level%20to%20%20meet%20planned%20growth%20growth%20objectives%20and%20client%20contractual%20commitments"/>
<topic position="1030,-193" order="0" text="So that..." id="124">
<icon id="object_rainbow"/>
</topic>
<topic position="1062,-169" order="1" text="Related Strategic Priorities: " id="125"/>
<topic position="1090,-145" order="2" text="KPI: HR Level equals Planned Growth" id="126">
<icon id="chart_bar"/>
</topic>
<topic position="1038,-118" order="3" text="Methodology" id="99">
<note text="Schedule%20of%20required%20HR%20capacity%20vs.%20actual%20HR%20capacity.%20%20Variance%20+%20or%20-%201"/>
<topic position="1172,-119" order="0" text="Target" id="100">
<note text="%3D%20+%20or%20-%201"/>
</topic>
</topic>
</topic>
<topic position="835,-38" order="1" text="Goal: Increase Job Satisfaction" id="49">
<icon id="sport_football"/>
<topic position="1016,-85" order="0" text="So That" id="59">
<icon id="object_rainbow"/>
<note text="%20%20%20%20Establish%20better%20relationships.%0A%20%20%20%20Identify%20with%20the%20new%20employer.%0A%20%20%20%20Build%20a%20great%20attitude%20with%20the%20company."/>
</topic>
<topic position="1043,-57" order="1" text="Related Strategic Priorities" shrink="true" id="86">
<topic position="1199,-59" order="0" id="90"/>
</topic>
<topic position="1051,-26" order="2" text="KPI: Employee Satisfaction" id="50">
<icon id="chart_bar"/>
<topic position="1214,-27" order="0" id="303"/>
</topic>
<topic position="1021,4" order="3" text="Methodology" id="128">
<note text="Percentage%20of%20improvement%20in%20employee%20reported%20job%20satisfaction%20based%20on%20survey%20vs%20previous%20year.%20%20Base%20level%20to%20be%20established%20in%20first%20year.%20"/>
<topic position="1155,3" order="0" text="Target" id="129">
<note text="Base%20level%201st%20%20year"/>
</topic>
</topic>
</topic>
<topic position="834,77" order="2" text="Goal: Improve Performance" id="51">
<icon id="sport_football"/>
<note text="To%20increase%20knowledge%2C%20skills%20and%20experience%20of%20the%20Freeform%20staff%20relevant%20to%20organizational%20priorities."/>
<topic position="1013,37" order="0" text="So That" id="60">
<icon id="object_rainbow"/>
<note text="%20%20%20%20Clarify%20expectations.%0A%20%20%20%20Understand%20values%20and%20priorities.%0A%20%20%20%20Decrease%20the%20learning%20curve."/>
</topic>
<topic position="1047,61" order="1" text="Related Strategic Priorities" id="87">
<note text="1"/>
</topic>
<topic position="1050,85" order="2" text="KPI: Employee Performance" id="61">
<icon id="chart_bar"/>
</topic>
<topic position="1011,112" order="3" text="Methodology" id="80">
<topic position="1131,111" order="0" text="Target" id="102"/>
</topic>
</topic>
<topic position="824,186" order="3" text="Goal: Reduce Turnover" id="52">
<icon id="sport_football"/>
<note text="To%20reduce%20turnover%20of%20Top%20Talent."/>
<topic position="994,145" order="0" text="So That" id="62">
<icon id="object_rainbow"/>
<note text="%20%20%20%20Provide%20support%20through%20feedback.%0A%20%20%20%20Help%20the%20employee%20feel%20valued.%0A%20%20%20%20Again%2C%20decrease%20the%20learning%20curve."/>
</topic>
<topic position="1021,169" order="1" text="Related Strategic Priorities" id="88"/>
<topic position="1014,193" order="2" text="KPI: Retention Rate" id="63">
<icon id="chart_bar"/>
</topic>
<topic position="992,221" order="3" text="Methodology" shrink="true" id="98">
<topic position="1112,219" order="0" text="Target" id="101"/>
</topic>
</topic>
<topic position="814,253" order="4" text="Risk &amp; Compliance" id="246">
<icon id="sport_football"/>
<note text="To%20eliminate%20or%20minimize%20risk%20and%20to%20comply%20with%20all%20legislated%20requirements.%20%20"/>
</topic>
</topic>
</topic>
<relationship srcTopicId="154" destTopicId="6" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="4" destTopicId="156" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="16" destTopicId="162" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="31" destTopicId="91" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="91" destTopicId="105" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="10" destTopicId="163" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="204" destTopicId="9" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="204" destTopicId="33" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="206" destTopicId="208" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="18" destTopicId="215" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="91" destTopicId="105" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="91" destTopicId="105" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="247" destTopicId="248" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="156" destTopicId="166" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="166" destTopicId="167" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="167" destTopicId="2" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="270" destTopicId="130" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="275" destTopicId="298" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="123" destTopicId="220" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="6" destTopicId="29" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="29" destTopicId="31" lineType="3" endArrow="true" startArrow="false"/>
</map>

View File

@ -0,0 +1,111 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">PPM Plan</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Business Development </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Backlog Management</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Freeform IT</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Client Project Management</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Governance &amp; Executive</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Finance</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Administration</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Human Resources</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Freeform Hosting</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Community Outreach</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">R&amp;D</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Goals</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Formulize</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Probono</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String"/>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,301 @@
,
objectifs journée
,
,
"business plan" associatif ?
,
,
modèle / activités responsabilités
,
,
articulations / LOG
,
SWOT
,
,
,
,
,
l'entreprise a aujourd'hui un potentiel important
,
,
,
,
compétences professionnel
,
,
,
,
citoyen
,
,
,
,
forte chance de réussite
,
,
,
apporter des idées et propsitions à des questions sociétales
,
,
,
notre manière d"y répondre avec notamment les technlogies
,
,
,
l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"
,
,
,
ensemble de ressources "rares"
,
,
,
capacités de recherche et innovation
,
,
,
motivation du groupe et sens partagé entre membres
,
,
,
professionnellement : expérience collective et partage d'outils en pratique
,
,
,
ouverture vers mode de vie attractif perso / pro
,
,
,
potentiel humain, humaniste et citoyen
,
,
,
assemblage entre atelier et outillage
,
,
,
capacité de réponder en local et en global
,
,
,
associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages
,
,
,
réseau régional et mondial de l'économie de la ,connaisance
,
,
,
asso prend pied dans le monde de la recherche
,
,
,
labo de l'innovation sociopolitique
,
,
,
acteur valable avec pouvoirs et acteurs en place
,
,
,
autonomie par prestations et services
,
,
,
triptique
,
,
,
,
éthique de la discussion
,
,
,
,
pari de la délégation
,
,
,
,
art de la décision
,
,
,
réussir à caler leprojet en adéquation avec le contexte actuel
,
,
,
assoc : grouper des personnes qui développent le concept
,
,
,
traduire les belles pensées au niveau du citoyen
,
,
,
,
compréhension
,
,
,
,
adhésion
,
,
,
ressources contributeurs réfréents
,
,
,
reconnaissance et référence exemplaires
,
,
,
financeements suffisants pour bien exister
,
,
,
notre organisation est claire
,
,
,
prendre des "marchés émergent"
,
,
,
double stratup avec succes-story
,
,
,
engageons une activité présentielle forte, conviviale et exemplaire
,
,
,
attirer de nouveaux membres locomotives
,
,
,
pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve
,
,
Risques : cauchemars, dangers
,
,
,
disparition des forces vives, départ de membres actuels
,
,
,
opportunités atteignables mais difficile
,
,
,
difficultés de travailler ensemble dans la durée
,
,
,
risque de rater le train
,
,
,
sauter dans le dernier wagon et rester à la traîne
,
,
,
manquer de professionnalisme
,
,
,
,
perte de crédibilité
,
,
,
s'isoler entre nous et perdre le contact avec les autres acteurs
,
,
,
perdre la capacité de réponse au global
,
,
,
manque de concret, surdimension des reflexions
,
,
,
manque d'utilité socioplolitique
,
,
,
manque de nouveaux membres actifs, fidéliser
,
,
,
faire du surplace et
,
,
,
,
manque innovation
,
,
,
,
,
,
,
ne pas vivre ce que nous affirmons
,
,
,
,
cohérence entre langage gouvernance et la pratique
,
,
,
groupe de base insuffisant
,
,
,
non attractifs / nouveaux
,
,
,
,
pas ennuyants
,
,
,
pas efficaces en com
,
,
,
trop lent, rater l'opportunité actuelle
,
,
,
débordés par "concurrences"
,
,
,
départs de didier, micvhel, rené, corinne MCD etc
,
,
,
conclits de personnes et schisme entre 2 groupes ennemis
,
,
,
groupe amicale mais très merdique
,
,
,
système autocratique despotique ou sectaire
,
,
,
Can't render this file because it contains an unexpected character in line 6 and column 13.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,117 @@
<map version="0.9.0">
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_0" TEXT="">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
<p/>
</body>
</html>
</richcontent>
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_1" POSITION="right" STYLE="bubble" TEXT="objectifs journ&#233;e">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_2" POSITION="right" STYLE="bubble" TEXT="&quot;business plan&quot; associatif ?">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
</node>
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_3" POSITION="right" STYLE="bubble" TEXT="mod&#232;le / activit&#233;s responsabilit&#233;s">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
</node>
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_4" POSITION="right" STYLE="bubble" TEXT="articulations / LOG">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
</node>
</node>
<node BACKGROUND_COLOR="#ffcc33" COLOR="#0000cc" ID="ID_5" POSITION="right" STYLE="bubble" TEXT="SWOT">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_6" POSITION="right" STYLE="bubble" TEXT="">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
<node ID="ID_7" POSITION="right" TEXT="l'entreprise a aujourd'hui un potentiel important">
<node ID="ID_8" POSITION="right" TEXT="comp&#233;tences professionnel"/>
<node ID="ID_9" POSITION="right" TEXT="citoyen"/>
<node ID="ID_10" POSITION="right" TEXT="forte chance de r&#233;ussite"/>
</node>
<node ID="ID_11" POSITION="right" TEXT="apporter des id&#233;es et propsitions &#224; des questions soci&#233;tales"/>
<node ID="ID_12" POSITION="right" TEXT="notre mani&#232;re d&quot;y r&#233;pondre avec notamment les technlogies"/>
<node ID="ID_13" POSITION="right" TEXT="l'opportunit&#233; et la demande sont fortes aujourd'hui, avec peu de &quot;concurrence&quot;"/>
<node ID="ID_14" POSITION="right" TEXT="ensemble de ressources &quot;rares&quot;"/>
<node ID="ID_15" POSITION="right" TEXT="capacit&#233;s de recherche et innovation"/>
<node ID="ID_16" POSITION="right" TEXT="motivation du groupe et sens partag&#233; entre membres"/>
<node ID="ID_17" POSITION="right" TEXT="professionnellement : exp&#233;rience collective et partage d'outils en pratique"/>
<node ID="ID_18" POSITION="right" TEXT="ouverture vers mode de vie attractif perso / pro"/>
<node ID="ID_19" POSITION="right" TEXT="potentiel humain, humaniste et citoyen"/>
<node ID="ID_20" POSITION="right" TEXT="assemblage entre atelier et outillage"/>
<node ID="ID_21" POSITION="right" TEXT="capacit&#233; de r&#233;ponder en local et en global"/>
<node ID="ID_22" POSITION="right" TEXT="associatif : contxte de crise multimorphologique / positionne r&#233;f&#233;rence en r&#233;flexion et usages"/>
<node ID="ID_23" POSITION="right" TEXT="r&#233;seau r&#233;gional et mondial de l'&#233;conomie de la ,connaisance"/>
<node ID="ID_24" POSITION="right" TEXT="asso prend pied dans le monde de la recherche"/>
<node ID="ID_25" POSITION="right" TEXT="labo de l'innovation sociopolitique"/>
<node ID="ID_26" POSITION="right" TEXT="acteur valable avec pouvoirs et acteurs en place"/>
<node ID="ID_27" POSITION="right" TEXT="autonomie par prestations et services"/>
<node ID="ID_28" POSITION="right" TEXT="triptique">
<node ID="ID_29" POSITION="right" TEXT="&#233;thique de la discussion"/>
<node ID="ID_30" POSITION="right" TEXT="pari de la d&#233;l&#233;gation"/>
<node ID="ID_31" POSITION="right" TEXT="art de la d&#233;cision"/>
</node>
<node ID="ID_32" POSITION="right" TEXT="r&#233;ussir &#224; caler leprojet en ad&#233;quation avec le contexte actuel"/>
<node ID="ID_33" POSITION="right" TEXT="assoc : grouper des personnes qui d&#233;veloppent le concept"/>
<node ID="ID_34" POSITION="right" TEXT="traduire les belles pens&#233;es au niveau du citoyen">
<node ID="ID_35" POSITION="right" TEXT="compr&#233;hension"/>
<node ID="ID_36" POSITION="right" TEXT="adh&#233;sion"/>
</node>
<node ID="ID_37" POSITION="right" TEXT="ressources contributeurs r&#233;fr&#233;ents"/>
<node ID="ID_38" POSITION="right" TEXT="reconnaissance et r&#233;f&#233;rence exemplaires"/>
<node ID="ID_39" POSITION="right" TEXT="financeements suffisants pour bien exister"/>
<node ID="ID_40" POSITION="right" TEXT="notre organisation est claire"/>
<node ID="ID_41" POSITION="right" TEXT="prendre des &quot;march&#233;s &#233;mergent&quot;"/>
<node ID="ID_42" POSITION="right" TEXT="double stratup avec succes-story"/>
<node ID="ID_43" POSITION="right" TEXT="engageons une activit&#233; pr&#233;sentielle forte, conviviale et exemplaire"/>
<node ID="ID_44" POSITION="right" TEXT="attirer de nouveaux membres locomotives"/>
<node ID="ID_45" POSITION="right" TEXT="pratiquons en interne et externe une gouvernance explaire etune citoyennt&#233; de r&#234;ve"/>
</node>
<node BACKGROUND_COLOR="#ffff33" COLOR="#0000cc" ID="ID_46" POSITION="right" STYLE="bubble" TEXT="Risques : cauchemars, dangers">
<font BOLD="true" NAME="Arial"/>
<edge COLOR="#808080"/>
<node ID="ID_47" POSITION="right" TEXT="disparition des forces vives, d&#233;part de membres actuels"/>
<node ID="ID_48" POSITION="right" TEXT="opportunit&#233;s atteignables mais difficile"/>
<node ID="ID_49" POSITION="right" TEXT="difficult&#233;s de travailler ensemble dans la dur&#233;e"/>
<node ID="ID_50" POSITION="right" TEXT="risque de rater le train"/>
<node ID="ID_51" POSITION="right" TEXT="sauter dans le dernier wagon et rester &#224; la tra&#238;ne"/>
<node ID="ID_52" POSITION="right" TEXT="manquer de professionnalisme">
<node ID="ID_53" POSITION="right" TEXT="perte de cr&#233;dibilit&#233;"/>
</node>
<node ID="ID_54" POSITION="right" TEXT="s'isoler entre nous et perdre le contact avec les autres acteurs"/>
<node ID="ID_55" POSITION="right" TEXT="perdre la capacit&#233; de r&#233;ponse au global"/>
<node ID="ID_56" POSITION="right" TEXT="manque de concret, surdimension des reflexions"/>
<node ID="ID_57" POSITION="right" TEXT="manque d'utilit&#233; socioplolitique"/>
<node ID="ID_58" POSITION="right" TEXT="manque de nouveaux membres actifs, fid&#233;liser"/>
<node ID="ID_59" POSITION="right" TEXT="faire du surplace et">
<node ID="ID_60" POSITION="right" TEXT="manque innovation"/>
<node ID="ID_61" POSITION="right" TEXT=""/>
</node>
<node ID="ID_62" POSITION="right" TEXT="ne pas vivre ce que nous affirmons">
<node ID="ID_63" POSITION="right" TEXT="coh&#233;rence entre langage gouvernance et la pratique"/>
</node>
<node ID="ID_64" POSITION="right" TEXT="groupe de base insuffisant"/>
<node ID="ID_65" POSITION="right" TEXT="non attractifs / nouveaux">
<node ID="ID_66" POSITION="right" TEXT="pas ennuyants"/>
</node>
<node ID="ID_67" POSITION="right" TEXT="pas efficaces en com"/>
<node ID="ID_68" POSITION="right" TEXT="trop lent, rater l'opportunit&#233; actuelle"/>
<node ID="ID_69" POSITION="right" TEXT="d&#233;bord&#233;s par &quot;concurrences&quot;"/>
<node ID="ID_70" POSITION="right" TEXT="d&#233;parts de didier, micvhel, ren&#233;, corinne MCD etc"/>
<node ID="ID_71" POSITION="right" TEXT="conclits de personnes et schisme entre 2 groupes ennemis"/>
<node ID="ID_72" POSITION="right" TEXT="groupe amicale mais tr&#232;s merdique"/>
<node ID="ID_73" POSITION="right" TEXT="syst&#232;me autocratique despotique ou sectaire"/>
<node ID="ID_74" POSITION="right" TEXT=""/>
</node>
</node>
</node>
</map>

View File

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String"/>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
<p/>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">objectifs journée</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">"business plan" associatif ?</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">modèle / activités responsabilités</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">articulations / LOG</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">SWOT</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String"/>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">l'entreprise a aujourd'hui un potentiel important</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">compétences professionnel</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">citoyen</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">forte chance de réussite</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">apporter des idées et propsitions à des questions sociétales</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">notre manière d"y répondre avec notamment les technlogies</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ensemble de ressources "rares"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">capacités de recherche et innovation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">motivation du groupe et sens partagé entre membres</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">professionnellement : expérience collective et partage d'outils en pratique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ouverture vers mode de vie attractif perso / pro</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">potentiel humain, humaniste et citoyen</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">assemblage entre atelier et outillage</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">capacité de réponder en local et en global</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">réseau régional et mondial de l'économie de la ,connaisance</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">asso prend pied dans le monde de la recherche</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">labo de l'innovation sociopolitique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">acteur valable avec pouvoirs et acteurs en place</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">autonomie par prestations et services</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">triptique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">éthique de la discussion</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">pari de la délégation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">art de la décision</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">réussir à caler leprojet en adéquation avec le contexte actuel</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">assoc : grouper des personnes qui développent le concept</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">traduire les belles pensées au niveau du citoyen</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">compréhension</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">adhésion</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ressources contributeurs réfréents</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">reconnaissance et référence exemplaires</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">financeements suffisants pour bien exister</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">notre organisation est claire</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">prendre des "marchés émergent"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">double stratup avec succes-story</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">engageons une activité présentielle forte, conviviale et exemplaire</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">attirer de nouveaux membres locomotives</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Risques : cauchemars, dangers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">disparition des forces vives, départ de membres actuels</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">opportunités atteignables mais difficile</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">difficultés de travailler ensemble dans la durée</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">risque de rater le train</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">sauter dans le dernier wagon et rester à la traîne</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manquer de professionnalisme</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">perte de crédibilité</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">s'isoler entre nous et perdre le contact avec les autres acteurs</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">perdre la capacité de réponse au global</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manque de concret, surdimension des reflexions</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manque d'utilité socioplolitique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manque de nouveaux membres actifs, fidéliser</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">faire du surplace et</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">manque innovation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String"/>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ne pas vivre ce que nous affirmons</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">cohérence entre langage gouvernance et la pratique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">groupe de base insuffisant</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">non attractifs / nouveaux</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">pas ennuyants</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">pas efficaces en com</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">trop lent, rater l'opportunité actuelle</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">débordés par "concurrences"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">départs de didier, micvhel, rené, corinne MCD etc</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">conclits de personnes et schisme entre 2 groupes ennemis</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">groupe amicale mais très merdique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">système autocratique despotique ou sectaire</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String"/>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,116 @@
1
1.1 objectifs journée
1.1.1 "business plan" associatif ?
1.1.2 modèle / activités responsabilités
1.1.3 articulations / LOG
1.2 SWOT
1.2.1
1.2.1.1 l'entreprise a aujourd'hui un potentiel important
1.2.1.1.1 compétences professionnel
1.2.1.1.2 citoyen
1.2.1.1.3 forte chance de réussite
1.2.1.2 apporter des idées et propsitions à des questions sociétales
1.2.1.3 notre manière d"y répondre avec notamment les technlogies
1.2.1.4 l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"
1.2.1.5 ensemble de ressources "rares"
1.2.1.6 capacités de recherche et innovation
1.2.1.7 motivation du groupe et sens partagé entre membres
1.2.1.8 professionnellement : expérience collective et partage d'outils en pratique
1.2.1.9 ouverture vers mode de vie attractif perso / pro
1.2.1.10 potentiel humain, humaniste et citoyen
1.2.1.11 assemblage entre atelier et outillage
1.2.1.12 capacité de réponder en local et en global
1.2.1.13 associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages
1.2.1.14 réseau régional et mondial de l'économie de la ,connaisance
1.2.1.15 asso prend pied dans le monde de la recherche
1.2.1.16 labo de l'innovation sociopolitique
1.2.1.17 acteur valable avec pouvoirs et acteurs en place
1.2.1.18 autonomie par prestations et services
1.2.1.19 triptique
1.2.1.19.1 éthique de la discussion
1.2.1.19.2 pari de la délégation
1.2.1.19.3 art de la décision
1.2.1.20 réussir à caler leprojet en adéquation avec le contexte actuel
1.2.1.21 assoc : grouper des personnes qui développent le concept
1.2.1.22 traduire les belles pensées au niveau du citoyen
1.2.1.22.1 compréhension
1.2.1.22.2 adhésion
1.2.1.23 ressources contributeurs réfréents
1.2.1.24 reconnaissance et référence exemplaires
1.2.1.25 financeements suffisants pour bien exister
1.2.1.26 notre organisation est claire
1.2.1.27 prendre des "marchés émergent"
1.2.1.28 double stratup avec succes-story
1.2.1.29 engageons une activité présentielle forte, conviviale et exemplaire
1.2.1.30 attirer de nouveaux membres locomotives
1.2.1.31 pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve
1.2.2 Risques : cauchemars, dangers
1.2.2.1 disparition des forces vives, départ de membres actuels
1.2.2.2 opportunités atteignables mais difficile
1.2.2.3 difficultés de travailler ensemble dans la durée
1.2.2.4 risque de rater le train
1.2.2.5 sauter dans le dernier wagon et rester à la traîne
1.2.2.6 manquer de professionnalisme
1.2.2.6.1 perte de crédibilité
1.2.2.7 s'isoler entre nous et perdre le contact avec les autres acteurs
1.2.2.8 perdre la capacité de réponse au global
1.2.2.9 manque de concret, surdimension des reflexions
1.2.2.10 manque d'utilité socioplolitique
1.2.2.11 manque de nouveaux membres actifs, fidéliser
1.2.2.12 faire du surplace et
1.2.2.12.1 manque innovation
1.2.2.12.2
1.2.2.13 ne pas vivre ce que nous affirmons
1.2.2.13.1 cohérence entre langage gouvernance et la pratique
1.2.2.14 groupe de base insuffisant
1.2.2.15 non attractifs / nouveaux
1.2.2.15.1 pas ennuyants
1.2.2.16 pas efficaces en com
1.2.2.17 trop lent, rater l'opportunité actuelle
1.2.2.18 débordés par "concurrences"
1.2.2.19 départs de didier, micvhel, rené, corinne MCD etc
1.2.2.20 conclits de personnes et schisme entre 2 groupes ennemis
1.2.2.21 groupe amicale mais très merdique
1.2.2.22 système autocratique despotique ou sectaire
1.2.2.23

View File

@ -0,0 +1,239 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="tango" name="120724 ATG Business plan">
<topic id="0" central="true" position="0,0" brColor="#808080"
bgColor="#ffcc33" fontStyle="Arial;16;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[]]></text>
<note>
<text><![CDATA[]]></text>
</note>
<topic id="1" position="200,0" order="0" brColor="#808080"
bgColor="#ffcc33" fontStyle="Arial;16;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[objectifs journée]]></text>
<topic id="2" position="290,-50" order="0" brColor="#808080"
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA["business plan" associatif ?]]></text>
</topic>
<topic id="3" position="290,-25" order="1" brColor="#808080"
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[modèle / activités responsabilités]]></text>
</topic>
<topic id="4" position="290,0" order="2" brColor="#808080"
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[articulations / LOG]]></text>
</topic>
</topic>
<topic id="5" position="200,100" order="4" brColor="#808080"
bgColor="#ffcc33" fontStyle="Arial;16;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[SWOT]]></text>
<topic id="6" position="290,50" order="0" brColor="#808080"
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[]]></text>
<topic id="7" position="380,-375" order="0" shape="line">
<text><![CDATA[l'entreprise a aujourd'hui un potentiel important]]></text>
<topic id="8" position="470,-400" order="0" shape="line">
<text><![CDATA[compétences professionnel]]></text>
</topic>
<topic id="9" position="470,-375" order="1" shape="line">
<text><![CDATA[citoyen]]></text>
</topic>
<topic id="10" position="470,-350" order="2" shape="line">
<text><![CDATA[forte chance de réussite]]></text>
</topic>
</topic>
<topic id="11" position="380,-350" order="1" shape="line">
<text><![CDATA[apporter des idées et propsitions à des questions sociétales]]></text>
</topic>
<topic id="12" position="380,-325" order="2" shape="line">
<text><![CDATA[notre manière d"y répondre avec notamment les technlogies]]></text>
</topic>
<topic id="13" position="380,-300" order="3" shape="line">
<text><![CDATA[l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"]]></text>
</topic>
<topic id="14" position="380,-275" order="4" shape="line">
<text><![CDATA[ensemble de ressources "rares"]]></text>
</topic>
<topic id="15" position="380,-250" order="5" shape="line">
<text><![CDATA[capacités de recherche et innovation]]></text>
</topic>
<topic id="16" position="380,-225" order="6" shape="line">
<text><![CDATA[motivation du groupe et sens partagé entre membres]]></text>
</topic>
<topic id="17" position="380,-200" order="7" shape="line">
<text><![CDATA[professionnellement : expérience collective et partage d'outils en pratique]]></text>
</topic>
<topic id="18" position="380,-175" order="8" shape="line">
<text><![CDATA[ouverture vers mode de vie attractif perso / pro]]></text>
</topic>
<topic id="19" position="380,-150" order="9" shape="line">
<text><![CDATA[potentiel humain, humaniste et citoyen]]></text>
</topic>
<topic id="20" position="380,-125" order="10" shape="line">
<text><![CDATA[assemblage entre atelier et outillage]]></text>
</topic>
<topic id="21" position="380,-100" order="11" shape="line">
<text><![CDATA[capacité de réponder en local et en global]]></text>
</topic>
<topic id="22" position="380,-75" order="12" shape="line">
<text><![CDATA[associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages]]></text>
</topic>
<topic id="23" position="380,-50" order="13" shape="line">
<text><![CDATA[réseau régional et mondial de l'économie de la ,connaisance]]></text>
</topic>
<topic id="24" position="380,-25" order="14" shape="line">
<text><![CDATA[asso prend pied dans le monde de la recherche]]></text>
</topic>
<topic id="25" position="380,0" order="15" shape="line">
<text><![CDATA[labo de l'innovation sociopolitique]]></text>
</topic>
<topic id="26" position="380,25" order="16" shape="line">
<text><![CDATA[acteur valable avec pouvoirs et acteurs en place]]></text>
</topic>
<topic id="27" position="380,50" order="17" shape="line">
<text><![CDATA[autonomie par prestations et services]]></text>
</topic>
<topic id="28" position="380,75" order="18" shape="line">
<text><![CDATA[triptique]]></text>
<topic id="29" position="470,50" order="0" shape="line">
<text><![CDATA[éthique de la discussion]]></text>
</topic>
<topic id="30" position="470,75" order="1" shape="line">
<text><![CDATA[pari de la délégation]]></text>
</topic>
<topic id="31" position="470,100" order="2" shape="line">
<text><![CDATA[art de la décision]]></text>
</topic>
</topic>
<topic id="32" position="380,100" order="19" shape="line">
<text><![CDATA[réussir à caler leprojet en adéquation avec le contexte actuel]]></text>
</topic>
<topic id="33" position="380,125" order="20" shape="line">
<text><![CDATA[assoc : grouper des personnes qui développent le concept]]></text>
</topic>
<topic id="34" position="380,150" order="21" shape="line">
<text><![CDATA[traduire les belles pensées au niveau du citoyen]]></text>
<topic id="35" position="470,125" order="0" shape="line">
<text><![CDATA[compréhension]]></text>
</topic>
<topic id="36" position="470,150" order="1" shape="line">
<text><![CDATA[adhésion]]></text>
</topic>
</topic>
<topic id="37" position="380,175" order="22" shape="line">
<text><![CDATA[ressources contributeurs réfréents]]></text>
</topic>
<topic id="38" position="380,200" order="23" shape="line">
<text><![CDATA[reconnaissance et référence exemplaires]]></text>
</topic>
<topic id="39" position="380,225" order="24" shape="line">
<text><![CDATA[financeements suffisants pour bien exister]]></text>
</topic>
<topic id="40" position="380,250" order="25" shape="line">
<text><![CDATA[notre organisation est claire]]></text>
</topic>
<topic id="41" position="380,275" order="26" shape="line">
<text><![CDATA[prendre des "marchés émergent"]]></text>
</topic>
<topic id="42" position="380,300" order="27" shape="line">
<text><![CDATA[double stratup avec succes-story]]></text>
</topic>
<topic id="43" position="380,325" order="28" shape="line">
<text><![CDATA[engageons une activité présentielle forte, conviviale et exemplaire]]></text>
</topic>
<topic id="44" position="380,350" order="29" shape="line">
<text><![CDATA[attirer de nouveaux membres locomotives]]></text>
</topic>
<topic id="45" position="380,375" order="30" shape="line">
<text><![CDATA[pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve]]></text>
</topic>
</topic>
<topic id="46" position="290,75" order="1" brColor="#808080"
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
<text><![CDATA[Risques : cauchemars, dangers]]></text>
<topic id="47" position="380,-225" order="0" shape="line">
<text><![CDATA[disparition des forces vives, départ de membres actuels]]></text>
</topic>
<topic id="48" position="380,-200" order="1" shape="line">
<text><![CDATA[opportunités atteignables mais difficile]]></text>
</topic>
<topic id="49" position="380,-175" order="2" shape="line">
<text><![CDATA[difficultés de travailler ensemble dans la durée]]></text>
</topic>
<topic id="50" position="380,-150" order="3" shape="line">
<text><![CDATA[risque de rater le train]]></text>
</topic>
<topic id="51" position="380,-125" order="4" shape="line">
<text><![CDATA[sauter dans le dernier wagon et rester à la traîne]]></text>
</topic>
<topic id="52" position="380,-100" order="5" shape="line">
<text><![CDATA[manquer de professionnalisme]]></text>
<topic id="53" position="470,-100" order="0" shape="line">
<text><![CDATA[perte de crédibilité]]></text>
</topic>
</topic>
<topic id="54" position="380,-75" order="6" shape="line">
<text><![CDATA[s'isoler entre nous et perdre le contact avec les autres acteurs]]></text>
</topic>
<topic id="55" position="380,-50" order="7" shape="line">
<text><![CDATA[perdre la capacité de réponse au global]]></text>
</topic>
<topic id="56" position="380,-25" order="8" shape="line">
<text><![CDATA[manque de concret, surdimension des reflexions]]></text>
</topic>
<topic id="57" position="380,0" order="9" shape="line">
<text><![CDATA[manque d'utilité socioplolitique]]></text>
</topic>
<topic id="58" position="380,25" order="10" shape="line">
<text><![CDATA[manque de nouveaux membres actifs, fidéliser]]></text>
</topic>
<topic id="59" position="380,50" order="11" shape="line">
<text><![CDATA[faire du surplace et]]></text>
<topic id="60" position="470,25" order="0" shape="line">
<text><![CDATA[manque innovation]]></text>
</topic>
<topic id="61" position="470,50" order="1" shape="line">
<text><![CDATA[]]></text>
</topic>
</topic>
<topic id="62" position="380,75" order="12" shape="line">
<text><![CDATA[ne pas vivre ce que nous affirmons]]></text>
<topic id="63" position="470,75" order="0" shape="line">
<text><![CDATA[cohérence entre langage gouvernance et la pratique]]></text>
</topic>
</topic>
<topic id="64" position="380,100" order="13" shape="line">
<text><![CDATA[groupe de base insuffisant]]></text>
</topic>
<topic id="65" position="380,125" order="14" shape="line">
<text><![CDATA[non attractifs / nouveaux]]></text>
<topic id="66" position="470,125" order="0" shape="line">
<text><![CDATA[pas ennuyants]]></text>
</topic>
</topic>
<topic id="67" position="380,150" order="15" shape="line">
<text><![CDATA[pas efficaces en com]]></text>
</topic>
<topic id="68" position="380,175" order="16" shape="line">
<text><![CDATA[trop lent, rater l'opportunité actuelle]]></text>
</topic>
<topic id="69" position="380,200" order="17" shape="line">
<text><![CDATA[débordés par "concurrences"]]></text>
</topic>
<topic id="70" position="380,225" order="18" shape="line">
<text><![CDATA[départs de didier, micvhel, rené, corinne MCD etc]]></text>
</topic>
<topic id="71" position="380,250" order="19" shape="line">
<text><![CDATA[conclits de personnes et schisme entre 2 groupes ennemis]]></text>
</topic>
<topic id="72" position="380,275" order="20" shape="line">
<text><![CDATA[groupe amicale mais très merdique]]></text>
</topic>
<topic id="73" position="380,300" order="21" shape="line">
<text><![CDATA[système autocratique despotique ou sectaire]]></text>
</topic>
<topic id="74" position="380,325" order="22" shape="line">
<text><![CDATA[]]></text>
</topic>
</topic>
</topic>
</topic>
</map>

View File

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String"/>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
<p/>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">objectifs journée</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">"business plan" associatif ?</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">modèle / activités responsabilités</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">articulations / LOG</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">SWOT</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String"/>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">l'entreprise a aujourd'hui un potentiel important</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">compétences professionnel</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">citoyen</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">forte chance de réussite</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">apporter des idées et propsitions à des questions sociétales</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">notre manière d"y répondre avec notamment les technlogies</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ensemble de ressources "rares"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">capacités de recherche et innovation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">motivation du groupe et sens partagé entre membres</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">professionnellement : expérience collective et partage d'outils en pratique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ouverture vers mode de vie attractif perso / pro</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">potentiel humain, humaniste et citoyen</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">assemblage entre atelier et outillage</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">capacité de réponder en local et en global</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">réseau régional et mondial de l'économie de la ,connaisance</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">asso prend pied dans le monde de la recherche</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">labo de l'innovation sociopolitique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">acteur valable avec pouvoirs et acteurs en place</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">autonomie par prestations et services</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">triptique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">éthique de la discussion</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">pari de la délégation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">art de la décision</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">réussir à caler leprojet en adéquation avec le contexte actuel</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">assoc : grouper des personnes qui développent le concept</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">traduire les belles pensées au niveau du citoyen</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">compréhension</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">adhésion</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ressources contributeurs réfréents</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">reconnaissance et référence exemplaires</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">financeements suffisants pour bien exister</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">notre organisation est claire</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">prendre des "marchés émergent"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">double stratup avec succes-story</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">engageons une activité présentielle forte, conviviale et exemplaire</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">attirer de nouveaux membres locomotives</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Risques : cauchemars, dangers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">disparition des forces vives, départ de membres actuels</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">opportunités atteignables mais difficile</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">difficultés de travailler ensemble dans la durée</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">risque de rater le train</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">sauter dans le dernier wagon et rester à la traîne</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manquer de professionnalisme</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">perte de crédibilité</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">s'isoler entre nous et perdre le contact avec les autres acteurs</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">perdre la capacité de réponse au global</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manque de concret, surdimension des reflexions</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manque d'utilité socioplolitique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">manque de nouveaux membres actifs, fidéliser</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">faire du surplace et</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">manque innovation</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String"/>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ne pas vivre ce que nous affirmons</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">cohérence entre langage gouvernance et la pratique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">groupe de base insuffisant</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">non attractifs / nouveaux</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">pas ennuyants</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">pas efficaces en com</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">trop lent, rater l'opportunité actuelle</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">débordés par "concurrences"</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">départs de didier, micvhel, rené, corinne MCD etc</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">conclits de personnes et schisme entre 2 groupes ennemis</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">groupe amicale mais très merdique</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">système autocratique despotique ou sectaire</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String"/>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,290 @@
<map version="0.9.0">
<node ID="ID_1" TEXT="Artigos GF coment&#225;rios interessantes">
<node BACKGROUND_COLOR="#cccccc" ID="ID_5" POSITION="left" STYLE="rectagle" TEXT="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities">
<edge COLOR="#cccccc"/>
<node ID="ID_6" POSITION="left">
<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 ID="ID_7" POSITION="left">
<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 ID="ID_8" POSITION="left">
<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 ID="ID_9" POSITION="left" 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."/>
<node ID="ID_12" POSITION="left" 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"/>
<node ID="ID_13" POSITION="left" TEXT="Intensas amostragens de experimentos simples tem maior retorno em acur&#225;cia de estimativa e de custo tb."/>
<node ID="ID_14" POSITION="left">
<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>
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
<p>Isso significa que estudos de caracter&#237;stica de hist&#243;ria de vida compensam? Ver nos m&amp;m.</p>
</body>
</html>
</richcontent>
</node>
<node ID="ID_15" POSITION="left">
<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>
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
<p>Falar que isso corrobora nossa sugest&#227;o de utilizar poucas medidas, mas que elas sejam confi&#225;veis.</p>
</body>
</html>
</richcontent>
</node>
</node>
<node BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_17" POSITION="right" STYLE="rectagle" TEXT="Chazdon 2010. Biotropica. 42(1): 31&#8211;40">
<font/>
<edge COLOR="#cccccc"/>
<node ID="ID_22" POSITION="right">
<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 ID="ID_23" POSITION="right">
<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 ID="ID_24" POSITION="right" TEXT="Falar no artigo que esse trabalho fala que &#233; inadequada a divis&#227;o entre pioneira e n&#227;o pioneira devido a grande varia&#231;&#227;o que h&#225; entre elas. Al&#233;m de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma esp&#233;cie. Por&#233;m recomendar que essa classifica&#231;&#227;o continue sendo usada em curto prazo enquanto n&#227;o h&#225; informa&#231;&#245;es confi&#225;veis suficiente para esta simples classifica&#231;&#227;o. Outras classifica&#231;&#245;es como esta do artigo s&#227;o bem vinda, contanto que tenham dados confi&#225;veis. Por&#233;m dados est&#225;ticos j&#225; s&#227;o dif&#237;ceis de se obter, dados temporais, como taxa de crescimento em di&#226;metro ou altura, s&#227;o mais dif&#237;ceis ainda. Falar que v&#225;rios tipos de classifica&#231;&#245;es podem ser utilizadas e quanto mais detalhe melhor, por&#233;m os dados &#233; que s&#227;o mais limitantes. Se focarmos em dados de germina&#231;&#227;o e crescimento limitantes, como sugerem sainete e whitmore, da uma id&#233;ia maismr&#225;pida e a curto prazo da classifica&#231;&#227;o destas esp&#233;cies. Depois com o tempo conseguiremos construir classifica&#231;&#245;es mais detalhadas e com mais dados confi&#225;veis. "/>
<node ID="ID_25" POSITION="right">
<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 ID="ID_26" POSITION="right">
<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 ID="ID_27" POSITION="right">
<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 ID="ID_28" POSITION="right">
<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 ID="ID_29" POSITION="right">
<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 ID="ID_30" POSITION="right">
<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 ID="ID_31" POSITION="right">
<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 BACKGROUND_COLOR="#cccccc" COLOR="#000000" ID="ID_2" POSITION="left" STYLE="rectagle" TEXT="Poorter 1999. Functional Ecology. 13:396-410">
<font/>
<edge COLOR="#cccccc"/>
<node ID="ID_3" POSITION="left" TEXT="Esp&#233;cies pioneiras crescem mais r&#225;pido do que as n&#227;o pioneiras">
<node ID="ID_4" POSITION="left" TEXT="Toler&#226;ncia a sombra est&#225; relacionada com persist&#234;ncia e n&#227;o com crescimento"/>
</node>
</node>
</node>
</map>

View File

@ -0,0 +1,296 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">Artigos GF comentários interessantes</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">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.</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">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</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb.</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
<p>Isso significa que estudos de característica de história de vida compensam? Ver nos m&amp;m.</p>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
<p>Falar que isso corrobora nossa sugestão de utilizar poucas medidas, mas que elas sejam confiáveis.</p>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Chazdon 2010. Biotropica. 42(1): 3140</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">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. </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Our classification of colonization groups defies the traditional</p>
<p>dichotomy between late successional shade-tolerant and early successional</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 2030 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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<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: 405416.</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: 557568.</p>
<p>FINEGAN, B. 1996. Pattern and process in neotropical secondary forests: The first</p>
<p>100 years of succession. Trends Ecol. Evol. 11: 119124.</p>
<p>POORTER, L., S. J. WRIGHT, H. PAZ, D. D. ACKERLY, R. CONDIT, G.</p>
<p>IBARRA-MANRI´QUEZ, K. E. HARMS, J. C. LICONA, M.MARTI´NEZ-RAMOS,</p>
<p>S. J. MAZER, H. C. MULLER-LANDAU, M. PEN˜ 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>19081920.</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: 547558.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Poorter 1999. Functional Ecology. 13:396-410</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Espécies pioneiras crescem mais rápido do que as não pioneiras</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Tolerância a sombra está relacionada com persistência e não com crescimento</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 Artigos GF comentários interessantes
1.1 Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities

View File

@ -0,0 +1,907 @@
I Care
,
veiligheid
,
,
verkeer
,
,
,
filevorming
,
,
,
,
preventie
,
,
,
,
Omleiding zoeken
,
,
,
Openbaar vervoer
,
,
,
Openbare fietsen
,
,
,
,
Trackingsysteem, # fietsen op 1 plaats
,
,
,
,
Fiets bestellen in grote steden
,
,
,
ongevallen
,
,
,
,
preventie
,
,
,
,
,
roekeloos rijgedrag opsporen
,
,
,
,
,
,
via sensoren aan boord versnelling, manouvres, snelheid,... registreren
,
,
,
,
,
bestraffen van chauffeurs?
,
,
,
,
oorzaak
,
,
,
,
,
nagaan van de oorzaak
,
,
,
,
,
Automatisch opbellen van hulpdiensten
,
,
,
,
,
opsporen van vluchtmisdrijf
,
,
,
,
info over de staat van het wegdek
,
,
,
,
,
wegenwerken
,
,
,
,
,
waarschuwingen
,
,
,
,
,
aanpassing van max. snelheid
,
,
criminaliteit
,
,
,
drugs
,
,
,
,
opsporen
,
,
,
,
,
individuele tests
,
,
,
,
,
testen per woonregio (via afvoerstelsels)
,
,
,
wapenhandel
,
,
,
,
opsporen
,
,
,
diefstal
,
,
,
,
tracking via gps
,
,
,
Aantal ongevallen/criminele feiten registreren
,
,
,
,
Mapping van probleemsituaties
,
,
,
,
Meer controle
,
,
,
,
Terugkoppeling naar politie/verkeersdienst
,
De markt
,
,
kleding
,
,
,
informatiebronnen per merk
,
,
,
,
slimme kledij
,
,
,
kwaliteitsinfo bij aankoop
,
,
,
,
info uit cloud
,
,
,
,
reviews
,
,
,
monitoring
,
,
,
stijlen
,
,
,
,
begeleiding bij het winkelen naar gelijkaardige kleding
,
,
voeding
,
,
,
zie bij handelingen -->winkelen
,
,
electronica
,
,
,
eigendomsverificatie
,
,
,
,
GPS tracking
,
,
,
,
koop-verkoop
,
,
,
,
afdanking (sluikstorten)
,
,
,
monitoring
,
,
,
,
kwaliteit
,
,
,
,
,
rechtstreekse link naar producent bij falen
,
,
,
,
,
reparatieservice
,
,
,
,
levensloop
,
,
,
,
,
gebruikscycli
,
,
,
,
productie verloop
,
,
,
,
,
door wie
,
,
,
,
,
wat/wanneer
,
,
,
,
,
testfasen
,
,
medicijnen
,
,
,
kwaliteit
,
,
,
werking
,
,
,
neveneffecten
,
,
,
alternatieven
,
,
inrichting (woning)
,
,
,
monitoring
,
,
,
,
kwaliteit
,
,
,
,
eigendomsverificatie
,
,
,
advies
,
,
,
,
kleuren en stijlen
,
,
energie
,
,
,
automatische lichten
,
,
,
kamer herkent gebruiker
,
,
diensten
,
,
hygiëne
,
handelingen
,
,
winkelen
,
,
,
winkelhulp
,
,
,
,
productinfo
,
,
,
,
,
allergie
,
,
,
,
,
,
Gezondheidscontrole
,
,
,
,
,
,
Sensor voor vers fruit en vlees
,
,
,
,
,
,
Salmonella sensor
,
,
,
,
,
prijs
,
,
,
,
,
kwaliteit
,
,
,
,
,
,
via cloud
,
,
,
,
,
,
databases v. reviews
,
,
,
,
,
,
bio
,
,
,
,
,
,
voedingstoffen
,
,
,
,
,
diëet checker
,
,
,
,
,
alternatieve producten
,
,
,
,
digitale portemonnee
,
,
,
,
bestellingen op afstand
,
,
,
,
recepten generator
,
,
,
,
boodschappenlijst
,
,
,
,
,
dichtste bij bovenaan
,
,
,
,
,
alternatieven indien uitverkocht
,
milieu
,
,
bosbouw
,
,
,
ziektes bij bomen
,
,
,
parasieten
,
,
,
bodemvervuiling
,
,
,
,
onderzoek
,
,
mag ik dit door mijn gootsteen kappen
,
,
pollutie
,
,
afval
,
,
,
verwerking
,
,
,
riolen
,
,
,
cradle 2 cradle
,
,
,
,
,
dioxines
,
,
eco systemen
,
,
,
diversiteit
,
,
waterreserves
,
,
,
reserves
,
,
,
vervuiling
,
,
alternatieve energie
,
,
,
wind
,
,
,
zon
,
,
,
kernenergie
,
industrie
,
cultuur
,
,
festival
,
bouw
,
,
opvolging zoals plannen zijn getekend
,
,
,
isolatie
,
,
,
,
warmtemetingen
,
,
,
juistheid van materialen
,
,
,
nameten
,
aandoeningen en situaties
,
,
zwangerschap
,
,
,
baby monitoren
,
,
,
info over voeding
,
,
,
,
wat is gezond
,
,
,
,
via cloud info over voeding
,
,
,
geboortetimer
,
,
dementen
,
,
,
wegloopdetectie
,
,
,
wassen
,
,
,
eten
,
sport
,
,
opvolging van de sporter
,
,
,
hartslag
,
,
,
bloeddruk
,
,
,
energieverbruik
,
,
,
cadans
,
,
,
gps
,
ziektes
,
,
verschillende ziektes
,
,
,
feedback van de lichaamsconditie
,
,
,
,
aan de patiënt
,
,
,
,
,
waarschuwingen
,
,
,
,
link
,
,
,
,
,
naar ziekenhuis
,
,
,
,
,
naar hulpdiensten
,
,
,
,
,
naar behandelend arts
,
,
,
,
aan dokter
,
,
,
,
,
contacteert patient indien nodig
,
,
,
,
,
volledig overzicht
,
,
,
,
,
op afstand consulatie
,
,
,
MS
,
,
,
,
bevorderen van communicatie tijdens de aftakeling
,
,
,
,
,
naar de dokters toe
,
,
,
,
,
naar familie en vrienden toe
,
,
,
mucoviscidose
,
,
,
,
longcapaciteit meten
,
,
,
,
alert voor donor
,
,
,
aids
,
,
,
,
vergroten van de database aan info
,
,
,
diabetes
,
,
,
,
suikerspiegel meten
,
,
,
,
,
alert indien te laag
,
,
,
,
,
automatische inspuiting
,
,
,
epilepsie
,
,
,
,
aanval voorspellen??
,
,
,
astma
,
,
,
,
detectie van luchtkwaliteit
,
,
,
,
,
in kaart brengen van
,
,
,
,
,
,
vervuiling
,
,
,
,
,
,
pollen
,
,
,
,
,
,
allergie veroorzakende deeltjes
,
,
,
anorexia
,
,
,
,
nagaan of ze eten
,
,
,
,
eten ze voldoende
,
,
thuisverzorging
,
,
,
meting van de symptomen
,
,
,
,
toevoeging van eigen waarneming
,
,
,
,
objectieve metingen
,
,
,
link naar dokter
,
,
,
link naar ziekenhuis
,
,
stress
,
,
,
afreageren
,
,
,
monitoring
,
,
,
,
in welke afdeling een probleem
,
,
,
,
,
aan welke factoren ligt dat
,
,
,
,
,
aanpak
1 I Care
2 ,
3 veiligheid
4 ,
5 ,
6 verkeer
7 ,
8 ,
9 ,
10 filevorming
11 ,
12 ,
13 ,
14 ,
15 preventie
16 ,
17 ,
18 ,
19 ,
20 Omleiding zoeken
21 ,
22 ,
23 ,
24 Openbaar vervoer
25 ,
26 ,
27 ,
28 Openbare fietsen
29 ,
30 ,
31 ,
32 ,
33 Trackingsysteem, # fietsen op 1 plaats
34 ,
35 ,
36 ,
37 ,
38 Fiets bestellen in grote steden
39 ,
40 ,
41 ,
42 ongevallen
43 ,
44 ,
45 ,
46 ,
47 preventie
48 ,
49 ,
50 ,
51 ,
52 ,
53 roekeloos rijgedrag opsporen
54 ,
55 ,
56 ,
57 ,
58 ,
59 ,
60 via sensoren aan boord versnelling, manouvres, snelheid,... registreren
61 ,
62 ,
63 ,
64 ,
65 ,
66 bestraffen van chauffeurs?
67 ,
68 ,
69 ,
70 ,
71 oorzaak
72 ,
73 ,
74 ,
75 ,
76 ,
77 nagaan van de oorzaak
78 ,
79 ,
80 ,
81 ,
82 ,
83 Automatisch opbellen van hulpdiensten
84 ,
85 ,
86 ,
87 ,
88 ,
89 opsporen van vluchtmisdrijf
90 ,
91 ,
92 ,
93 ,
94 info over de staat van het wegdek
95 ,
96 ,
97 ,
98 ,
99 ,
100 wegenwerken
101 ,
102 ,
103 ,
104 ,
105 ,
106 waarschuwingen
107 ,
108 ,
109 ,
110 ,
111 ,
112 aanpassing van max. snelheid
113 ,
114 ,
115 criminaliteit
116 ,
117 ,
118 ,
119 drugs
120 ,
121 ,
122 ,
123 ,
124 opsporen
125 ,
126 ,
127 ,
128 ,
129 ,
130 individuele tests
131 ,
132 ,
133 ,
134 ,
135 ,
136 testen per woonregio (via afvoerstelsels)
137 ,
138 ,
139 ,
140 wapenhandel
141 ,
142 ,
143 ,
144 ,
145 opsporen
146 ,
147 ,
148 ,
149 diefstal
150 ,
151 ,
152 ,
153 ,
154 tracking via gps
155 ,
156 ,
157 ,
158 Aantal ongevallen/criminele feiten registreren
159 ,
160 ,
161 ,
162 ,
163 Mapping van probleemsituaties
164 ,
165 ,
166 ,
167 ,
168 Meer controle
169 ,
170 ,
171 ,
172 ,
173 Terugkoppeling naar politie/verkeersdienst
174 ,
175 De markt
176 ,
177 ,
178 kleding
179 ,
180 ,
181 ,
182 informatiebronnen per merk
183 ,
184 ,
185 ,
186 ,
187 slimme kledij
188 ,
189 ,
190 ,
191 kwaliteitsinfo bij aankoop
192 ,
193 ,
194 ,
195 ,
196 info uit cloud
197 ,
198 ,
199 ,
200 ,
201 reviews
202 ,
203 ,
204 ,
205 monitoring
206 ,
207 ,
208 ,
209 stijlen
210 ,
211 ,
212 ,
213 ,
214 begeleiding bij het winkelen naar gelijkaardige kleding
215 ,
216 ,
217 voeding
218 ,
219 ,
220 ,
221 zie bij handelingen -->winkelen
222 ,
223 ,
224 electronica
225 ,
226 ,
227 ,
228 eigendomsverificatie
229 ,
230 ,
231 ,
232 ,
233 GPS tracking
234 ,
235 ,
236 ,
237 ,
238 koop-verkoop
239 ,
240 ,
241 ,
242 ,
243 afdanking (sluikstorten)
244 ,
245 ,
246 ,
247 monitoring
248 ,
249 ,
250 ,
251 ,
252 kwaliteit
253 ,
254 ,
255 ,
256 ,
257 ,
258 rechtstreekse link naar producent bij falen
259 ,
260 ,
261 ,
262 ,
263 ,
264 reparatieservice
265 ,
266 ,
267 ,
268 ,
269 levensloop
270 ,
271 ,
272 ,
273 ,
274 ,
275 gebruikscycli
276 ,
277 ,
278 ,
279 ,
280 productie verloop
281 ,
282 ,
283 ,
284 ,
285 ,
286 door wie
287 ,
288 ,
289 ,
290 ,
291 ,
292 wat/wanneer
293 ,
294 ,
295 ,
296 ,
297 ,
298 testfasen
299 ,
300 ,
301 medicijnen
302 ,
303 ,
304 ,
305 kwaliteit
306 ,
307 ,
308 ,
309 werking
310 ,
311 ,
312 ,
313 neveneffecten
314 ,
315 ,
316 ,
317 alternatieven
318 ,
319 ,
320 inrichting (woning)
321 ,
322 ,
323 ,
324 monitoring
325 ,
326 ,
327 ,
328 ,
329 kwaliteit
330 ,
331 ,
332 ,
333 ,
334 eigendomsverificatie
335 ,
336 ,
337 ,
338 advies
339 ,
340 ,
341 ,
342 ,
343 kleuren en stijlen
344 ,
345 ,
346 energie
347 ,
348 ,
349 ,
350 automatische lichten
351 ,
352 ,
353 ,
354 kamer herkent gebruiker
355 ,
356 ,
357 diensten
358 ,
359 ,
360 hygiëne
361 ,
362 handelingen
363 ,
364 ,
365 winkelen
366 ,
367 ,
368 ,
369 winkelhulp
370 ,
371 ,
372 ,
373 ,
374 productinfo
375 ,
376 ,
377 ,
378 ,
379 ,
380 allergie
381 ,
382 ,
383 ,
384 ,
385 ,
386 ,
387 Gezondheidscontrole
388 ,
389 ,
390 ,
391 ,
392 ,
393 ,
394 Sensor voor vers fruit en vlees
395 ,
396 ,
397 ,
398 ,
399 ,
400 ,
401 Salmonella sensor
402 ,
403 ,
404 ,
405 ,
406 ,
407 prijs
408 ,
409 ,
410 ,
411 ,
412 ,
413 kwaliteit
414 ,
415 ,
416 ,
417 ,
418 ,
419 ,
420 via cloud
421 ,
422 ,
423 ,
424 ,
425 ,
426 ,
427 databases v. reviews
428 ,
429 ,
430 ,
431 ,
432 ,
433 ,
434 bio
435 ,
436 ,
437 ,
438 ,
439 ,
440 ,
441 voedingstoffen
442 ,
443 ,
444 ,
445 ,
446 ,
447 diëet checker
448 ,
449 ,
450 ,
451 ,
452 ,
453 alternatieve producten
454 ,
455 ,
456 ,
457 ,
458 digitale portemonnee
459 ,
460 ,
461 ,
462 ,
463 bestellingen op afstand
464 ,
465 ,
466 ,
467 ,
468 recepten generator
469 ,
470 ,
471 ,
472 ,
473 boodschappenlijst
474 ,
475 ,
476 ,
477 ,
478 ,
479 dichtste bij bovenaan
480 ,
481 ,
482 ,
483 ,
484 ,
485 alternatieven indien uitverkocht
486 ,
487 milieu
488 ,
489 ,
490 bosbouw
491 ,
492 ,
493 ,
494 ziektes bij bomen
495 ,
496 ,
497 ,
498 parasieten
499 ,
500 ,
501 ,
502 bodemvervuiling
503 ,
504 ,
505 ,
506 ,
507 onderzoek
508 ,
509 ,
510 mag ik dit door mijn gootsteen kappen
511 ,
512 ,
513 pollutie
514 ,
515 ,
516 afval
517 ,
518 ,
519 ,
520 verwerking
521 ,
522 ,
523 ,
524 riolen
525 ,
526 ,
527 ,
528 cradle 2 cradle
529 ,
530 ,
531 ,
532
533 ,
534 ,
535 dioxines
536 ,
537 ,
538 eco systemen
539 ,
540 ,
541 ,
542 diversiteit
543 ,
544 ,
545 waterreserves
546 ,
547 ,
548 ,
549 reserves
550 ,
551 ,
552 ,
553 vervuiling
554 ,
555 ,
556 alternatieve energie
557 ,
558 ,
559 ,
560 wind
561 ,
562 ,
563 ,
564 zon
565 ,
566 ,
567 ,
568 kernenergie
569 ,
570 industrie
571 ,
572 cultuur
573 ,
574 ,
575 festival
576 ,
577 bouw
578 ,
579 ,
580 opvolging zoals plannen zijn getekend
581 ,
582 ,
583 ,
584 isolatie
585 ,
586 ,
587 ,
588 ,
589 warmtemetingen
590 ,
591 ,
592 ,
593 juistheid van materialen
594 ,
595 ,
596 ,
597 nameten
598 ,
599 aandoeningen en situaties
600 ,
601 ,
602 zwangerschap
603 ,
604 ,
605 ,
606 baby monitoren
607 ,
608 ,
609 ,
610 info over voeding
611 ,
612 ,
613 ,
614 ,
615 wat is gezond
616 ,
617 ,
618 ,
619 ,
620 via cloud info over voeding
621 ,
622 ,
623 ,
624 geboortetimer
625 ,
626 ,
627 dementen
628 ,
629 ,
630 ,
631 wegloopdetectie
632 ,
633 ,
634 ,
635 wassen
636 ,
637 ,
638 ,
639 eten
640 ,
641 sport
642 ,
643 ,
644 opvolging van de sporter
645 ,
646 ,
647 ,
648 hartslag
649 ,
650 ,
651 ,
652 bloeddruk
653 ,
654 ,
655 ,
656 energieverbruik
657 ,
658 ,
659 ,
660 cadans
661 ,
662 ,
663 ,
664 gps
665 ,
666 ziektes
667 ,
668 ,
669 verschillende ziektes
670 ,
671 ,
672 ,
673 feedback van de lichaamsconditie
674 ,
675 ,
676 ,
677 ,
678 aan de patiënt
679 ,
680 ,
681 ,
682 ,
683 ,
684 waarschuwingen
685 ,
686 ,
687 ,
688 ,
689 link
690 ,
691 ,
692 ,
693 ,
694 ,
695 naar ziekenhuis
696 ,
697 ,
698 ,
699 ,
700 ,
701 naar hulpdiensten
702 ,
703 ,
704 ,
705 ,
706 ,
707 naar behandelend arts
708 ,
709 ,
710 ,
711 ,
712 aan dokter
713 ,
714 ,
715 ,
716 ,
717 ,
718 contacteert patient indien nodig
719 ,
720 ,
721 ,
722 ,
723 ,
724 volledig overzicht
725 ,
726 ,
727 ,
728 ,
729 ,
730 op afstand consulatie
731 ,
732 ,
733 ,
734 MS
735 ,
736 ,
737 ,
738 ,
739 bevorderen van communicatie tijdens de aftakeling
740 ,
741 ,
742 ,
743 ,
744 ,
745 naar de dokters toe
746 ,
747 ,
748 ,
749 ,
750 ,
751 naar familie en vrienden toe
752 ,
753 ,
754 ,
755 mucoviscidose
756 ,
757 ,
758 ,
759 ,
760 longcapaciteit meten
761 ,
762 ,
763 ,
764 ,
765 alert voor donor
766 ,
767 ,
768 ,
769 aids
770 ,
771 ,
772 ,
773 ,
774 vergroten van de database aan info
775 ,
776 ,
777 ,
778 diabetes
779 ,
780 ,
781 ,
782 ,
783 suikerspiegel meten
784 ,
785 ,
786 ,
787 ,
788 ,
789 alert indien te laag
790 ,
791 ,
792 ,
793 ,
794 ,
795 automatische inspuiting
796 ,
797 ,
798 ,
799 epilepsie
800 ,
801 ,
802 ,
803 ,
804 aanval voorspellen??
805 ,
806 ,
807 ,
808 astma
809 ,
810 ,
811 ,
812 ,
813 detectie van luchtkwaliteit
814 ,
815 ,
816 ,
817 ,
818 ,
819 in kaart brengen van
820 ,
821 ,
822 ,
823 ,
824 ,
825 ,
826 vervuiling
827 ,
828 ,
829 ,
830 ,
831 ,
832 ,
833 pollen
834 ,
835 ,
836 ,
837 ,
838 ,
839 ,
840 allergie veroorzakende deeltjes
841 ,
842 ,
843 ,
844 anorexia
845 ,
846 ,
847 ,
848 ,
849 nagaan of ze eten
850 ,
851 ,
852 ,
853 ,
854 eten ze voldoende
855 ,
856 ,
857 thuisverzorging
858 ,
859 ,
860 ,
861 meting van de symptomen
862 ,
863 ,
864 ,
865 ,
866 toevoeging van eigen waarneming
867 ,
868 ,
869 ,
870 ,
871 objectieve metingen
872 ,
873 ,
874 ,
875 link naar dokter
876 ,
877 ,
878 ,
879 link naar ziekenhuis
880 ,
881 ,
882 stress
883 ,
884 ,
885 ,
886 afreageren
887 ,
888 ,
889 ,
890 monitoring
891 ,
892 ,
893 ,
894 ,
895 in welke afdeling een probleem
896 ,
897 ,
898 ,
899 ,
900 ,
901 aan welke factoren ligt dat
902 ,
903 ,
904 ,
905 ,
906 ,
907 aanpak

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,291 @@
\chapter{I Care}\label{ID_null}
\section{veiligheid}\label{ID_null}
\subsection{verkeer}\label{ID_null}
\subsubsection{filevorming}\label{ID_null}\begin{itemize}
\item \label{ID_null}preventie\par
\item \label{ID_null}Omleiding zoeken\par
\end{itemize}
\subsubsection{Openbaar vervoer}\label{ID_null}
\subsubsection{Openbare fietsen}\label{ID_null}\begin{itemize}
\item \label{ID_null}Trackingsysteem, # fietsen op 1 plaats\par
\item \label{ID_null}Fiets bestellen in grote steden\par
\end{itemize}
\subsubsection{ongevallen}\label{ID_null}\begin{itemize}
\item \label{ID_null}preventie\par
\begin{itemize}
\item \label{ID_null}roekeloos rijgedrag opsporen\par
via sensoren aan boord versnelling, manouvres, snelheid,... registreren\par
\item \label{ID_null}bestraffen van chauffeurs?\par
\end{itemize}
\item \label{ID_null}oorzaak\par
\begin{itemize}
\item \label{ID_null}nagaan van de oorzaak\par
\item \label{ID_null}Automatisch opbellen van hulpdiensten\par
\item \label{ID_null}opsporen van vluchtmisdrijf\par
\end{itemize}
\item \label{ID_null}info over de staat van het wegdek\par
\begin{itemize}
\item \label{ID_null}wegenwerken\par
\item \label{ID_null}waarschuwingen\par
\item \label{ID_null}aanpassing van max. snelheid\par
\end{itemize}
\end{itemize}
\subsection{criminaliteit}\label{ID_null}
\subsubsection{drugs}\label{ID_null}opsporen\par
\begin{itemize}
\item \label{ID_null}individuele tests\par
\item \label{ID_null}testen per woonregio (via afvoerstelsels)\par
\end{itemize}
\subsubsection{wapenhandel}\label{ID_null}opsporen\par
\subsubsection{diefstal}\label{ID_null}tracking via gps\par
\subsubsection{Aantal ongevallen/criminele feiten registreren}\label{ID_null}\begin{itemize}
\item \label{ID_null}Mapping van probleemsituaties\par
\item \label{ID_null}Meer controle\par
\item \label{ID_null}Terugkoppeling naar politie/verkeersdienst\par
\end{itemize}
\section{De markt}\label{ID_null}
\subsection{kleding}\label{ID_null}
\subsubsection{informatiebronnen per merk}\label{ID_null}slimme kledij\par
\subsubsection{kwaliteitsinfo bij aankoop}\label{ID_null}\begin{itemize}
\item \label{ID_null}info uit cloud\par
\item \label{ID_null}reviews\par
\end{itemize}
\subsubsection{monitoring}\label{ID_null}
\subsubsection{stijlen}\label{ID_null}begeleiding bij het winkelen naar gelijkaardige kleding\par
\subsection{voeding}\label{ID_null}
\subsubsection{zie bij handelingen --&gt;winkelen}\label{ID_null}
\subsection{electronica}\label{ID_null}
\subsubsection{eigendomsverificatie}\label{ID_null}\begin{itemize}
\item \label{ID_null}GPS tracking\par
\item \label{ID_null}koop-verkoop\par
\item \label{ID_null}afdanking (sluikstorten)\par
\end{itemize}
\subsubsection{monitoring}\label{ID_null}\begin{itemize}
\item \label{ID_null}kwaliteit\par
\begin{itemize}
\item \label{ID_null}rechtstreekse link naar producent bij falen\par
\item \label{ID_null}reparatieservice\par
\end{itemize}
\item \label{ID_null}levensloop\par
gebruikscycli\par
\item \label{ID_null}productie verloop\par
\begin{itemize}
\item \label{ID_null}door wie\par
\item \label{ID_null}wat/wanneer\par
\item \label{ID_null}testfasen\par
\end{itemize}
\end{itemize}
\subsection{medicijnen}\label{ID_null}
\subsubsection{kwaliteit}\label{ID_null}
\subsubsection{werking}\label{ID_null}
\subsubsection{neveneffecten}\label{ID_null}
\subsubsection{alternatieven}\label{ID_null}
\subsection{inrichting (woning)}\label{ID_null}
\subsubsection{monitoring}\label{ID_null}\begin{itemize}
\item \label{ID_null}kwaliteit\par
\item \label{ID_null}eigendomsverificatie\par
\end{itemize}
\subsubsection{advies}\label{ID_null}kleuren en stijlen\par
\subsection{energie}\label{ID_null}
\subsubsection{automatische lichten}\label{ID_null}
\subsubsection{kamer herkent gebruiker}\label{ID_null}
\subsection{diensten}\label{ID_null}
\subsection{hygiëne}\label{ID_null}
\section{handelingen}\label{ID_null}
\subsection{winkelen}\label{ID_null}
\subsubsection{winkelhulp}\label{ID_null}\begin{itemize}
\item \label{ID_null}productinfo\par
\begin{itemize}
\item \label{ID_null}allergie\par
\begin{itemize}
\item \label{ID_null}Gezondheidscontrole\par
\item \label{ID_null}Sensor voor vers fruit en vlees\par
\item \label{ID_null}Salmonella sensor\par
\end{itemize}
\item \label{ID_null}prijs\par
\item \label{ID_null}kwaliteit\par
\begin{itemize}
\item \label{ID_null}via cloud\par
\item \label{ID_null}databases v. reviews\par
\item \label{ID_null}bio\par
\item \label{ID_null}voedingstoffen\par
\end{itemize}
\item \label{ID_null}diëet checker\par
\item \label{ID_null}alternatieve producten\par
\end{itemize}
\item \label{ID_null}digitale portemonnee\par
\item \label{ID_null}bestellingen op afstand\par
\item \label{ID_null}recepten generator\par
\item \label{ID_null}boodschappenlijst\par
\begin{itemize}
\item \label{ID_null}dichtste bij bovenaan\par
\item \label{ID_null}alternatieven indien uitverkocht\par
\end{itemize}
\end{itemize}
\section{milieu}\label{ID_null}
\subsection{bosbouw}\label{ID_null}
\subsubsection{ziektes bij bomen}\label{ID_null}
\subsubsection{parasieten}\label{ID_null}
\subsubsection{bodemvervuiling}\label{ID_null}onderzoek\par
\subsection{mag ik dit door mijn gootsteen kappen}\label{ID_null}
\subsection{pollutie}\label{ID_null}
\subsection{afval}\label{ID_null}
\subsubsection{verwerking}\label{ID_null}
\subsubsection{riolen}\label{ID_null}
\subsubsection{cradle 2 cradle}\label{ID_null}
\subsubsection{}\label{ID_null}
\subsection{dioxines}\label{ID_null}
\subsection{eco systemen}\label{ID_null}
\subsubsection{diversiteit}\label{ID_null}
\subsection{waterreserves}\label{ID_null}
\subsubsection{reserves}\label{ID_null}
\subsubsection{vervuiling}\label{ID_null}
\subsection{alternatieve energie}\label{ID_null}
\subsubsection{wind}\label{ID_null}
\subsubsection{zon}\label{ID_null}
\subsubsection{kernenergie}\label{ID_null}
\section{industrie}\label{ID_null}
\section{cultuur}\label{ID_null}
\subsection{festival}\label{ID_null}
\section{bouw}\label{ID_null}
\subsection{opvolging zoals plannen zijn getekend}\label{ID_null}
\subsubsection{isolatie}\label{ID_null}warmtemetingen\par
\subsubsection{juistheid van materialen}\label{ID_null}
\subsubsection{nameten}\label{ID_null}
\section{aandoeningen en situaties}\label{ID_null}
\subsection{zwangerschap}\label{ID_null}
\subsubsection{baby monitoren}\label{ID_null}
\subsubsection{info over voeding}\label{ID_null}\begin{itemize}
\item \label{ID_null}wat is gezond\par
\item \label{ID_null}via cloud info over voeding\par
\end{itemize}
\subsubsection{geboortetimer}\label{ID_null}
\subsection{dementen}\label{ID_null}
\subsubsection{wegloopdetectie}\label{ID_null}
\subsubsection{wassen}\label{ID_null}
\subsubsection{eten}\label{ID_null}
\section{sport}\label{ID_null}
\subsection{opvolging van de sporter}\label{ID_null}
\subsubsection{hartslag}\label{ID_null}
\subsubsection{bloeddruk}\label{ID_null}
\subsubsection{energieverbruik}\label{ID_null}
\subsubsection{cadans}\label{ID_null}
\subsubsection{gps}\label{ID_null}
\section{ziektes}\label{ID_null}
\subsection{verschillende ziektes}\label{ID_null}
\subsubsection{feedback van de lichaamsconditie}\label{ID_null}\begin{itemize}
\item \label{ID_null}aan de patiënt\par
waarschuwingen\par
\item \label{ID_null}link\par
\begin{itemize}
\item \label{ID_null}naar ziekenhuis\par
\item \label{ID_null}naar hulpdiensten\par
\item \label{ID_null}naar behandelend arts\par
\end{itemize}
\item \label{ID_null}aan dokter\par
\begin{itemize}
\item \label{ID_null}contacteert patient indien nodig\par
\item \label{ID_null}volledig overzicht\par
\item \label{ID_null}op afstand consulatie\par
\end{itemize}
\end{itemize}
\subsubsection{MS}\label{ID_null}bevorderen van communicatie tijdens de aftakeling\par
\begin{itemize}
\item \label{ID_null}naar de dokters toe\par
\item \label{ID_null}naar familie en vrienden toe\par
\end{itemize}
\subsubsection{mucoviscidose}\label{ID_null}\begin{itemize}
\item \label{ID_null}longcapaciteit meten\par
\item \label{ID_null}alert voor donor\par
\end{itemize}
\subsubsection{aids}\label{ID_null}vergroten van de database aan info\par
\subsubsection{diabetes}\label{ID_null}suikerspiegel meten\par
\begin{itemize}
\item \label{ID_null}alert indien te laag\par
\item \label{ID_null}automatische inspuiting\par
\end{itemize}
\subsubsection{epilepsie}\label{ID_null}aanval voorspellen??\par
\subsubsection{astma}\label{ID_null}detectie van luchtkwaliteit\par
in kaart brengen van\par
\begin{itemize}
\item \label{ID_null}vervuiling\par
\item \label{ID_null}pollen\par
\item \label{ID_null}allergie veroorzakende deeltjes\par
\end{itemize}
\subsubsection{anorexia}\label{ID_null}\begin{itemize}
\item \label{ID_null}nagaan of ze eten\par
\item \label{ID_null}eten ze voldoende\par
\end{itemize}
\subsection{thuisverzorging}\label{ID_null}
\subsubsection{meting van de symptomen}\label{ID_null}\begin{itemize}
\item \label{ID_null}toevoeging van eigen waarneming\par
\item \label{ID_null}objectieve metingen\par
\end{itemize}
\subsubsection{link naar dokter}\label{ID_null}
\subsubsection{link naar ziekenhuis}\label{ID_null}
\subsection{stress}\label{ID_null}
\subsubsection{afreageren}\label{ID_null}
\subsubsection{monitoring}\label{ID_null}in welke afdeling een probleem\par
\begin{itemize}
\item \label{ID_null}aan welke factoren ligt dat\par
\item \label{ID_null}aanpak\par
\end{itemize}

View File

@ -0,0 +1,369 @@
<map version="0.9.0">
<node ID="ID_null" TEXT="I Care">
<edge COLOR="#121110"/>
<node ID="ID_null" POSITION="right" TEXT="veiligheid">
<node ID="ID_null" POSITION="left" TEXT="verkeer">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
<node ID="ID_null" POSITION="left" TEXT="filevorming">
<node ID="ID_null" POSITION="left" TEXT="preventie">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
</node>
<node ID="ID_null" POSITION="left" TEXT="Omleiding zoeken"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Openbaar vervoer"/>
<node ID="ID_null" POSITION="left" TEXT="Openbare fietsen">
<node ID="ID_null" POSITION="left" TEXT="Trackingsysteem, # fietsen op 1 plaats"/>
<node ID="ID_null" POSITION="left" TEXT="Fiets bestellen in grote steden"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="ongevallen">
<node ID="ID_null" POSITION="left" TEXT="preventie">
<node ID="ID_null" POSITION="left" TEXT="roekeloos rijgedrag opsporen">
<node ID="ID_null" POSITION="left" TEXT="via sensoren aan boord versnelling, manouvres, snelheid,... registreren"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="bestraffen van chauffeurs?"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="oorzaak">
<node ID="ID_null" POSITION="left" TEXT="nagaan van de oorzaak"/>
<node ID="ID_null" POSITION="left" TEXT="Automatisch opbellen van hulpdiensten"/>
<node ID="ID_null" POSITION="left" TEXT="opsporen van vluchtmisdrijf"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="info over de staat van het wegdek">
<node ID="ID_null" POSITION="left" TEXT="wegenwerken"/>
<node ID="ID_null" POSITION="left" TEXT="waarschuwingen"/>
<node ID="ID_null" POSITION="left" TEXT="aanpassing van max. snelheid"/>
</node>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="criminaliteit">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
<node ID="ID_null" POSITION="left" TEXT="drugs">
<node ID="ID_null" POSITION="left" TEXT="opsporen">
<node ID="ID_null" POSITION="left" TEXT="individuele tests"/>
<node ID="ID_null" POSITION="left" TEXT="testen per woonregio (via afvoerstelsels)"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="wapenhandel">
<node ID="ID_null" POSITION="left" TEXT="opsporen"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="diefstal">
<node ID="ID_null" POSITION="left" TEXT="tracking via gps"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Aantal ongevallen/criminele feiten registreren">
<node ID="ID_null" POSITION="left" TEXT="Mapping van probleemsituaties"/>
<node ID="ID_null" POSITION="left" TEXT="Meer controle"/>
<node ID="ID_null" POSITION="left" TEXT="Terugkoppeling naar politie/verkeersdienst"/>
</node>
</node>
</node>
<node ID="ID_null" POSITION="left" STYLE="bubble" TEXT="De markt">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
<node ID="ID_null" POSITION="left" STYLE="rectagle" TEXT="kleding">
<node ID="ID_null" POSITION="left" TEXT="informatiebronnen per merk">
<node ID="ID_null" POSITION="left" TEXT="slimme kledij"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="kwaliteitsinfo bij aankoop">
<node ID="ID_null" POSITION="left" TEXT="info uit cloud"/>
<node ID="ID_null" POSITION="left" TEXT="reviews"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="monitoring">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
</node>
<node ID="ID_null" POSITION="left" TEXT="stijlen">
<node ID="ID_null" POSITION="left" TEXT="begeleiding bij het winkelen naar gelijkaardige kleding"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="voeding">
<node ID="ID_null" POSITION="left" TEXT="zie bij handelingen --&gt;winkelen"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="electronica">
<node ID="ID_null" POSITION="left" TEXT="eigendomsverificatie">
<node ID="ID_null" POSITION="left" TEXT="GPS tracking"/>
<node ID="ID_null" POSITION="left" TEXT="koop-verkoop"/>
<node ID="ID_null" POSITION="left" TEXT="afdanking (sluikstorten)"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="monitoring">
<node ID="ID_null" POSITION="left" TEXT="kwaliteit">
<node ID="ID_null" POSITION="left" TEXT="rechtstreekse link naar producent bij falen"/>
<node ID="ID_null" POSITION="left" TEXT="reparatieservice"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="levensloop">
<node ID="ID_null" POSITION="left" TEXT="gebruikscycli"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="productie verloop">
<node ID="ID_null" POSITION="left" TEXT="door wie"/>
<node ID="ID_null" POSITION="left" TEXT="wat/wanneer"/>
<node ID="ID_null" POSITION="left" TEXT="testfasen"/>
</node>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="medicijnen">
<node ID="ID_null" POSITION="left" TEXT="kwaliteit"/>
<node ID="ID_null" POSITION="left" TEXT="werking"/>
<node ID="ID_null" POSITION="left" TEXT="neveneffecten"/>
<node ID="ID_null" POSITION="left" TEXT="alternatieven"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="inrichting (woning)">
<node ID="ID_null" POSITION="left" TEXT="monitoring">
<node ID="ID_null" POSITION="left" TEXT="kwaliteit"/>
<node ID="ID_null" POSITION="left" TEXT="eigendomsverificatie"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="advies">
<node ID="ID_null" POSITION="left" TEXT="kleuren en stijlen"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="energie">
<node ID="ID_null" POSITION="left" TEXT="automatische lichten"/>
<node ID="ID_null" POSITION="left" TEXT="kamer herkent gebruiker"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="diensten"/>
<node ID="ID_null" POSITION="left" TEXT="hygi&#235;ne"/>
</node>
<node BACKGROUND_COLOR="#ffffff" ID="ID_null" POSITION="left" TEXT="handelingen">
<node ID="ID_null" POSITION="left" TEXT="winkelen">
<font BOLD="true"/>
<node ID="ID_null" POSITION="left" TEXT="winkelhulp">
<node ID="ID_null" POSITION="left" TEXT="productinfo">
<node ID="ID_null" POSITION="left" TEXT="allergie">
<node ID="ID_null" POSITION="left" TEXT="Gezondheidscontrole"/>
<node ID="ID_null" POSITION="left" TEXT="Sensor voor vers fruit en vlees"/>
<node ID="ID_null" POSITION="left" TEXT="Salmonella sensor"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="prijs"/>
<node ID="ID_null" POSITION="left" TEXT="kwaliteit">
<node ID="ID_null" POSITION="left" TEXT="via cloud"/>
<node ID="ID_null" POSITION="left" TEXT="databases v. reviews"/>
<node ID="ID_null" POSITION="left" TEXT="bio"/>
<node ID="ID_null" POSITION="left" TEXT="voedingstoffen"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="di&#235;et checker"/>
<node ID="ID_null" POSITION="left" TEXT="alternatieve producten"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="digitale portemonnee"/>
<node ID="ID_null" POSITION="left" TEXT="bestellingen op afstand"/>
<node ID="ID_null" POSITION="left" TEXT="recepten generator">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
</node>
<node ID="ID_null" POSITION="left" TEXT="boodschappenlijst">
<node ID="ID_null" POSITION="left" TEXT="dichtste bij bovenaan"/>
<node ID="ID_null" POSITION="left" TEXT="alternatieven indien uitverkocht"/>
</node>
</node>
</node>
</node>
<node ID="ID_null" POSITION="right" TEXT="milieu">
<node ID="ID_null" POSITION="left" TEXT="bosbouw">
<node ID="ID_null" POSITION="left" TEXT="ziektes bij bomen"/>
<node ID="ID_null" POSITION="left" TEXT="parasieten"/>
<node ID="ID_null" POSITION="left" TEXT="bodemvervuiling">
<node ID="ID_null" POSITION="left" TEXT="onderzoek"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="mag ik dit door mijn gootsteen kappen"/>
<node ID="ID_null" POSITION="left" TEXT="pollutie"/>
<node ID="ID_null" POSITION="left" TEXT="afval">
<node ID="ID_null" POSITION="left" TEXT="verwerking"/>
<node ID="ID_null" POSITION="left" TEXT="riolen"/>
<node ID="ID_null" POSITION="left" TEXT="cradle 2 cradle"/>
<node ID="ID_null" POSITION="left"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="dioxines"/>
<node ID="ID_null" POSITION="left" TEXT="eco systemen">
<node ID="ID_null" POSITION="left" TEXT="diversiteit"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="waterreserves">
<node ID="ID_null" POSITION="left" TEXT="reserves"/>
<node ID="ID_null" POSITION="left" TEXT="vervuiling"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="alternatieve energie">
<node ID="ID_null" POSITION="left" TEXT="wind"/>
<node ID="ID_null" POSITION="left" TEXT="zon"/>
<node ID="ID_null" POSITION="left" TEXT="kernenergie"/>
</node>
</node>
<node ID="ID_null" POSITION="right" TEXT="industrie"/>
<node ID="ID_null" POSITION="right" TEXT="cultuur">
<node ID="ID_null" POSITION="left" TEXT="festival"/>
</node>
<node ID="ID_null" POSITION="right" TEXT="bouw">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
<node ID="ID_null" POSITION="left" TEXT="opvolging zoals plannen zijn getekend">
<node ID="ID_null" POSITION="left" TEXT="isolatie">
<node ID="ID_null" POSITION="left" TEXT="warmtemetingen"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="juistheid van materialen"/>
<node ID="ID_null" POSITION="left" TEXT="nameten"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="aandoeningen en situaties">
<node ID="ID_null" POSITION="left" TEXT="zwangerschap">
<font BOLD="true"/>
<node ID="ID_null" POSITION="left" TEXT="baby monitoren"/>
<node ID="ID_null" POSITION="left" TEXT="info over voeding">
<node ID="ID_null" POSITION="left" TEXT="wat is gezond"/>
<node ID="ID_null" POSITION="left" TEXT="via cloud info over voeding">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="geboortetimer">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="dementen">
<node ID="ID_null" POSITION="left" TEXT="wegloopdetectie"/>
<node ID="ID_null" POSITION="left" TEXT="wassen"/>
<node ID="ID_null" POSITION="left" TEXT="eten"/>
</node>
</node>
<node ID="ID_null" POSITION="right" TEXT="sport">
<node ID="ID_null" POSITION="left" TEXT="opvolging van de sporter">
<node ID="ID_null" POSITION="left" TEXT="hartslag"/>
<node ID="ID_null" POSITION="left" TEXT="bloeddruk"/>
<node ID="ID_null" POSITION="left" TEXT="energieverbruik"/>
<node ID="ID_null" POSITION="left" TEXT="cadans"/>
<node ID="ID_null" POSITION="left" TEXT="gps"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="ziektes">
<node ID="ID_null" POSITION="left" TEXT="verschillende ziektes">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
<node ID="ID_null" POSITION="left" TEXT="feedback van de lichaamsconditie">
<node ID="ID_null" POSITION="left" TEXT="aan de pati&#235;nt">
<node ID="ID_null" POSITION="left" TEXT="waarschuwingen"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="link">
<node ID="ID_null" POSITION="left" TEXT="naar ziekenhuis"/>
<node ID="ID_null" POSITION="left" TEXT="naar hulpdiensten"/>
<node ID="ID_null" POSITION="left" TEXT="naar behandelend arts"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="aan dokter">
<node ID="ID_null" POSITION="left" TEXT="contacteert patient indien nodig"/>
<node ID="ID_null" POSITION="left" TEXT="volledig overzicht"/>
<node ID="ID_null" POSITION="left" TEXT="op afstand consulatie"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="MS">
<node ID="ID_null" POSITION="left" TEXT="bevorderen van communicatie tijdens de aftakeling">
<node ID="ID_null" POSITION="left" TEXT="naar de dokters toe"/>
<node ID="ID_null" POSITION="left" TEXT="naar familie en vrienden toe"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="mucoviscidose">
<node ID="ID_null" POSITION="left" TEXT="longcapaciteit meten"/>
<node ID="ID_null" POSITION="left" TEXT="alert voor donor"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="aids">
<node ID="ID_null" POSITION="left" TEXT="vergroten van de database aan info"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="diabetes">
<node ID="ID_null" POSITION="left" TEXT="suikerspiegel meten">
<node ID="ID_null" POSITION="left" TEXT="alert indien te laag"/>
<node ID="ID_null" POSITION="left" TEXT="automatische inspuiting"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="epilepsie">
<node ID="ID_null" POSITION="left" TEXT="aanval voorspellen??"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="astma">
<node ID="ID_null" POSITION="left" TEXT="detectie van luchtkwaliteit">
<node ID="ID_null" POSITION="left" TEXT="in kaart brengen van">
<node ID="ID_null" POSITION="left" TEXT="vervuiling"/>
<node ID="ID_null" POSITION="left" TEXT="pollen"/>
<node ID="ID_null" POSITION="left" TEXT="allergie veroorzakende deeltjes"/>
</node>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="anorexia">
<node ID="ID_null" POSITION="left" TEXT="nagaan of ze eten"/>
<node ID="ID_null" POSITION="left" TEXT="eten ze voldoende"/>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="thuisverzorging">
<node ID="ID_null" POSITION="left" TEXT="meting van de symptomen">
<node ID="ID_null" POSITION="left" TEXT="toevoeging van eigen waarneming"/>
<node ID="ID_null" POSITION="left" TEXT="objectieve metingen"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="link naar dokter"/>
<node ID="ID_null" POSITION="left" TEXT="link naar ziekenhuis"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="stress">
<node ID="ID_null" POSITION="left" TEXT="afreageren"/>
<node ID="ID_null" POSITION="left" TEXT="monitoring">
<node ID="ID_null" POSITION="left" TEXT="in welke afdeling een probleem">
<node ID="ID_null" POSITION="left" TEXT="aan welke factoren ligt dat"/>
<node ID="ID_null" POSITION="left" TEXT="aanpak"/>
</node>
</node>
</node>
</node>
</node>
</map>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,368 @@
1 I Care
1.1 veiligheid
1.1.1 verkeer
1.1.1.1 filevorming
1.1.1.1.1 preventie
1.1.1.1.2 Omleiding zoeken
1.1.1.2 Openbaar vervoer
1.1.1.3 Openbare fietsen
1.1.1.3.1 Trackingsysteem, # fietsen op 1 plaats
1.1.1.3.2 Fiets bestellen in grote steden
1.1.1.4 ongevallen
1.1.1.4.1 preventie
1.1.1.4.1.1 roekeloos rijgedrag opsporen
1.1.1.4.1.1.1 via sensoren aan boord versnelling, manouvres, snelheid,... registreren
1.1.1.4.1.2 bestraffen van chauffeurs?
1.1.1.4.2 oorzaak
1.1.1.4.2.1 nagaan van de oorzaak
1.1.1.4.2.2 Automatisch opbellen van hulpdiensten
1.1.1.4.2.3 opsporen van vluchtmisdrijf
1.1.1.4.3 info over de staat van het wegdek
1.1.1.4.3.1 wegenwerken
1.1.1.4.3.2 waarschuwingen
1.1.1.4.3.3 aanpassing van max. snelheid
1.1.2 criminaliteit
1.1.2.1 drugs
1.1.2.1.1 opsporen
1.1.2.1.1.1 individuele tests
1.1.2.1.1.2 testen per woonregio (via afvoerstelsels)
1.1.2.2 wapenhandel
1.1.2.2.1 opsporen
1.1.2.3 diefstal
1.1.2.3.1 tracking via gps
1.1.2.4 Aantal ongevallen/criminele feiten registreren
1.1.2.4.1 Mapping van probleemsituaties
1.1.2.4.2 Meer controle
1.1.2.4.3 Terugkoppeling naar politie/verkeersdienst
1.2 De markt
1.2.1 kleding
1.2.1.1 informatiebronnen per merk
1.2.1.1.1 slimme kledij
1.2.1.2 kwaliteitsinfo bij aankoop
1.2.1.2.1 info uit cloud
1.2.1.2.2 reviews
1.2.1.3 monitoring
1.2.1.4 stijlen
1.2.1.4.1 begeleiding bij het winkelen naar gelijkaardige kleding
1.2.2 voeding
1.2.2.1 zie bij handelingen -->winkelen
1.2.3 electronica
1.2.3.1 eigendomsverificatie
1.2.3.1.1 GPS tracking
1.2.3.1.2 koop-verkoop
1.2.3.1.3 afdanking (sluikstorten)
1.2.3.2 monitoring
1.2.3.2.1 kwaliteit
1.2.3.2.1.1 rechtstreekse link naar producent bij falen
1.2.3.2.1.2 reparatieservice
1.2.3.2.2 levensloop
1.2.3.2.2.1 gebruikscycli
1.2.3.2.3 productie verloop
1.2.3.2.3.1 door wie
1.2.3.2.3.2 wat/wanneer
1.2.3.2.3.3 testfasen
1.2.4 medicijnen
1.2.4.1 kwaliteit
1.2.4.2 werking
1.2.4.3 neveneffecten
1.2.4.4 alternatieven
1.2.5 inrichting (woning)
1.2.5.1 monitoring
1.2.5.1.1 kwaliteit
1.2.5.1.2 eigendomsverificatie
1.2.5.2 advies
1.2.5.2.1 kleuren en stijlen
1.2.6 energie
1.2.6.1 automatische lichten
1.2.6.2 kamer herkent gebruiker
1.2.7 diensten
1.2.8 hygiëne
1.3 handelingen
1.3.1 winkelen
1.3.1.1 winkelhulp
1.3.1.1.1 productinfo
1.3.1.1.1.1 allergie
1.3.1.1.1.1.1 Gezondheidscontrole
1.3.1.1.1.1.2 Sensor voor vers fruit en vlees
1.3.1.1.1.1.3 Salmonella sensor
1.3.1.1.1.2 prijs
1.3.1.1.1.3 kwaliteit
1.3.1.1.1.3.1 via cloud
1.3.1.1.1.3.2 databases v. reviews
1.3.1.1.1.3.3 bio
1.3.1.1.1.3.4 voedingstoffen
1.3.1.1.1.4 diëet checker
1.3.1.1.1.5 alternatieve producten
1.3.1.1.2 digitale portemonnee
1.3.1.1.3 bestellingen op afstand
1.3.1.1.4 recepten generator
1.3.1.1.5 boodschappenlijst
1.3.1.1.5.1 dichtste bij bovenaan
1.3.1.1.5.2 alternatieven indien uitverkocht
1.4 milieu
1.4.1 bosbouw
1.4.1.1 ziektes bij bomen
1.4.1.2 parasieten
1.4.1.3 bodemvervuiling
1.4.1.3.1 onderzoek
1.4.2 mag ik dit door mijn gootsteen kappen
1.4.3 pollutie
1.4.4 afval
1.4.4.1 verwerking
1.4.4.2 riolen
1.4.4.3 cradle 2 cradle
1.4.4.4
1.4.5 dioxines
1.4.6 eco systemen
1.4.6.1 diversiteit
1.4.7 waterreserves
1.4.7.1 reserves
1.4.7.2 vervuiling
1.4.8 alternatieve energie
1.4.8.1 wind
1.4.8.2 zon
1.4.8.3 kernenergie
1.5 industrie
1.6 cultuur
1.6.1 festival
1.7 bouw
1.7.1 opvolging zoals plannen zijn getekend
1.7.1.1 isolatie
1.7.1.1.1 warmtemetingen
1.7.1.2 juistheid van materialen
1.7.1.3 nameten
1.8 aandoeningen en situaties
1.8.1 zwangerschap
1.8.1.1 baby monitoren
1.8.1.2 info over voeding
1.8.1.2.1 wat is gezond
1.8.1.2.2 via cloud info over voeding
1.8.1.3 geboortetimer
1.8.2 dementen
1.8.2.1 wegloopdetectie
1.8.2.2 wassen
1.8.2.3 eten
1.9 sport
1.9.1 opvolging van de sporter
1.9.1.1 hartslag
1.9.1.2 bloeddruk
1.9.1.3 energieverbruik
1.9.1.4 cadans
1.9.1.5 gps
1.10 ziektes
1.10.1 verschillende ziektes
1.10.1.1 feedback van de lichaamsconditie
1.10.1.1.1 aan de patiënt
1.10.1.1.1.1 waarschuwingen
1.10.1.1.2 link
1.10.1.1.2.1 naar ziekenhuis
1.10.1.1.2.2 naar hulpdiensten
1.10.1.1.2.3 naar behandelend arts
1.10.1.1.3 aan dokter
1.10.1.1.3.1 contacteert patient indien nodig
1.10.1.1.3.2 volledig overzicht
1.10.1.1.3.3 op afstand consulatie
1.10.1.2 MS
1.10.1.2.1 bevorderen van communicatie tijdens de aftakeling
1.10.1.2.1.1 naar de dokters toe
1.10.1.2.1.2 naar familie en vrienden toe
1.10.1.3 mucoviscidose
1.10.1.3.1 longcapaciteit meten
1.10.1.3.2 alert voor donor
1.10.1.4 aids
1.10.1.4.1 vergroten van de database aan info
1.10.1.5 diabetes
1.10.1.5.1 suikerspiegel meten
1.10.1.5.1.1 alert indien te laag
1.10.1.5.1.2 automatische inspuiting
1.10.1.6 epilepsie
1.10.1.6.1 aanval voorspellen??
1.10.1.7 astma
1.10.1.7.1 detectie van luchtkwaliteit
1.10.1.7.1.1 in kaart brengen van
1.10.1.7.1.1.1 vervuiling
1.10.1.7.1.1.2 pollen
1.10.1.7.1.1.3 allergie veroorzakende deeltjes
1.10.1.8 anorexia
1.10.1.8.1 nagaan of ze eten
1.10.1.8.2 eten ze voldoende
1.10.2 thuisverzorging
1.10.2.1 meting van de symptomen
1.10.2.1.1 toevoeging van eigen waarneming
1.10.2.1.2 objectieve metingen
1.10.2.2 link naar dokter
1.10.2.3 link naar ziekenhuis
1.10.3 stress
1.10.3.1 afreageren
1.10.3.2 monitoring
1.10.3.2.1 in welke afdeling een probleem
1.10.3.2.1.1 aan welke factoren ligt dat
1.10.3.2.1.2 aanpak

View File

@ -0,0 +1,386 @@
<map name="26254">
<topic central="true" text="I Care" shape="rectagle" brColor="#121110">
<topic position="328,-700" text="veiligheid">
<topic order="0" text="verkeer">
<note text="info%20vanuit%20de%20verschillende%20auto%27s%20verzamelen%20en%20voor%20verkeersleiding%20en%20informatie%20naar%20de%20bestuurders%20toe"/>
<topic order="0" text="filevorming">
<topic order="0" text="preventie">
<note text="door%20slimme%2C%20meest%20effici%EBnte%20weg%20te%20kiezen%0A...%0Aof%20euh%2C%20beschrijf%20ik%20nu%20ne%20GPS"/>
</topic>
<topic order="1" text="Omleiding zoeken"/>
</topic>
<topic order="1" text="Openbaar vervoer"/>
<topic order="2" text="Openbare fietsen">
<topic order="0" text="Trackingsysteem, # fietsen op 1 plaats"/>
<topic order="1" text="Fiets bestellen in grote steden"/>
</topic>
<topic order="3" text="ongevallen">
<topic order="0" text="preventie">
<topic order="0" text="roekeloos rijgedrag opsporen">
<topic order="0"
text="via sensoren aan boord versnelling, manouvres, snelheid,... registreren"/>
</topic>
<topic order="1" text="bestraffen van chauffeurs?"/>
</topic>
<topic order="1" text="oorzaak">
<topic order="0" text="nagaan van de oorzaak"/>
<topic order="1" text="Automatisch opbellen van hulpdiensten"/>
<topic order="2" text="opsporen van vluchtmisdrijf"/>
</topic>
<topic order="2" text="info over de staat van het wegdek">
<topic order="0" text="wegenwerken"/>
<topic order="1" text="waarschuwingen"/>
<topic order="2" text="aanpassing van max. snelheid"/>
</topic>
</topic>
</topic>
<topic order="1" text="criminaliteit">
<note text="monitoring%20van%20individuele%20feiten%20en%20deze%20gekoppeld%20gebruiken%20voor%20de%20bestrijding%20van%20criminaliteit"/>
<topic order="0" text="drugs">
<topic order="0" text="opsporen">
<topic order="0" text="individuele tests"/>
<topic order="1" text="testen per woonregio (via afvoerstelsels)"/>
</topic>
</topic>
<topic order="1" text="wapenhandel">
<topic order="0" text="opsporen"/>
</topic>
<topic order="2" text="diefstal">
<topic order="0" text="tracking via gps"/>
</topic>
<topic order="3" text="Aantal ongevallen/criminele feiten registreren">
<topic order="0" text="Mapping van probleemsituaties"/>
<topic order="1" text="Meer controle"/>
<topic order="2" text="Terugkoppeling naar politie/verkeersdienst"/>
</topic>
</topic>
</topic>
<topic position="-457,-750" text="De markt" shape="rounded rectagle">
<note text="monitoring%20van%20de%20markt%20en%20hieruit%20algemene%20info%20verzamelen%20welke%20in%20onderzoeken%20gebruikt%20kan%20worden%0A-%20info%20over%20de%20levensloop%20%28kwaliteit%20van%20een%20merk%20observeren%29%0A-%20info%20over%20eigendom%0A-%20gps%20tracking%0AGekoppeld%20aan%20een%20infoplatform%20dat%20kan%20worden%20geraadpleegd%20door%20de%20consument%20om%20zo%20objectieve%20info%20te%20krijgen%20over%20producten%2C%20merken%2C...%0A"/>
<topic order="0" text="kleding" shape="rectagle">
<topic order="0" text="informatiebronnen per merk">
<topic order="0" text="slimme kledij"/>
</topic>
<topic order="1" text="kwaliteitsinfo bij aankoop">
<topic order="0" text="info uit cloud"/>
<topic order="1" text="reviews"/>
</topic>
<topic order="2" text="monitoring">
<note text="sensoren%20naar%20kleur%2C%20kwaliteit%2C%20levensloop%2C%20aantal%20wasbeurten%2C.."/>
</topic>
<topic order="3" text="stijlen">
<topic order="0" text="begeleiding bij het winkelen naar gelijkaardige kleding"/>
</topic>
</topic>
<topic order="1" text="voeding">
<topic order="0" text="zie bij handelingen --&gt;winkelen"/>
</topic>
<topic order="2" text="electronica">
<topic order="0" text="eigendomsverificatie">
<topic order="0" text="GPS tracking"/>
<topic order="1" text="koop-verkoop"/>
<topic order="2" text="afdanking (sluikstorten)"/>
</topic>
<topic order="1" text="monitoring">
<topic order="0" text="kwaliteit">
<topic order="0" text="rechtstreekse link naar producent bij falen"/>
<topic order="1" text="reparatieservice"/>
</topic>
<topic order="1" text="levensloop">
<topic order="0" text="gebruikscycli"/>
</topic>
<topic order="2" text="productie verloop">
<topic order="0" text="door wie"/>
<topic order="1" text="wat/wanneer"/>
<topic order="2" text="testfasen"/>
</topic>
</topic>
</topic>
<topic order="3" text="medicijnen">
<topic order="0" text="kwaliteit"/>
<topic order="1" text="werking"/>
<topic order="2" text="neveneffecten"/>
<topic order="3" text="alternatieven"/>
</topic>
<topic order="4" text="inrichting (woning)">
<topic order="0" text="monitoring">
<topic order="0" text="kwaliteit"/>
<topic order="1" text="eigendomsverificatie"/>
</topic>
<topic order="1" text="advies">
<topic order="0" text="kleuren en stijlen"/>
</topic>
</topic>
<topic order="5" text="energie">
<topic order="0" text="automatische lichten"/>
<topic order="1" text="kamer herkent gebruiker"/>
</topic>
<topic order="6" text="diensten"/>
<topic order="7" text="hygiëne"/>
</topic>
<topic position="-597,-300" text="handelingen" bgColor="#ffffff">
<topic order="0" text="winkelen" fontStyle=";;;bold;;">
<topic order="0" text="winkelhulp">
<topic order="0" text="productinfo">
<topic order="0" text="allergie">
<topic order="0" text="Gezondheidscontrole"/>
<topic order="1" text="Sensor voor vers fruit en vlees"/>
<topic order="2" text="Salmonella sensor"/>
</topic>
<topic order="1" text="prijs"/>
<topic order="2" text="kwaliteit">
<topic order="0" text="via cloud"/>
<topic order="1" text="databases v. reviews"/>
<topic order="2" text="bio"/>
<topic order="3" text="voedingstoffen"/>
</topic>
<topic order="3" text="diëet checker"/>
<topic order="4" text="alternatieve producten"/>
</topic>
<topic order="1" text="digitale portemonnee"/>
<topic order="2" text="bestellingen op afstand"/>
<topic order="3" text="recepten generator">
<note text="bedenkt%20recepten%20aan%20de%20hand%20van%20de%20aanwezige%20producten%20of%20van%20%E9%E9n%20of%20meerdere%20reeds%20gekozen%20producten%0A"/>
</topic>
<topic order="4" text="boodschappenlijst">
<topic order="0" text="dichtste bij bovenaan"/>
<topic order="1" text="alternatieven indien uitverkocht"/>
</topic>
</topic>
</topic>
</topic>
<topic position="98,700" text="milieu">
<topic order="0" text="bosbouw">
<topic order="0" text="ziektes bij bomen"/>
<topic order="1" text="parasieten"/>
<topic order="2" text="bodemvervuiling">
<topic order="0" text="onderzoek"/>
</topic>
</topic>
<topic order="1" text="mag ik dit door mijn gootsteen kappen"/>
<topic order="2" text="pollutie"/>
<topic order="3" text="afval">
<topic order="0" text="verwerking"/>
<topic order="1" text="riolen"/>
<topic order="2" text="cradle 2 cradle"/>
<topic order="3"/>
</topic>
<topic order="4" text="dioxines"/>
<topic order="5" text="eco systemen">
<topic order="0" text="diversiteit"/>
</topic>
<topic order="6" text="waterreserves">
<topic order="0" text="reserves"/>
<topic order="1" text="vervuiling"/>
</topic>
<topic order="7" text="alternatieve energie">
<topic order="0" text="wind"/>
<topic order="1" text="zon"/>
<topic order="2" text="kernenergie"/>
</topic>
</topic>
<topic position="384,-250" text="industrie"/>
<topic position="310,150" text="cultuur">
<topic order="0" text="festival"/>
</topic>
<topic position="343,400" text="bouw">
<note text="%3D%20zorg%20voor%20milieu"/>
<topic order="0" text="opvolging zoals plannen zijn getekend">
<topic order="0" text="isolatie">
<topic order="0" text="warmtemetingen"/>
</topic>
<topic order="1" text="juistheid van materialen"/>
<topic order="2" text="nameten"/>
</topic>
</topic>
<topic position="-1306,100" text="aandoeningen en situaties">
<topic order="0" text="zwangerschap" fontStyle=";;;bold;;">
<topic order="0" text="baby monitoren"/>
<topic order="1" text="info over voeding">
<topic order="0" text="wat is gezond"/>
<topic order="1" text="via cloud info over voeding">
<note text="effecten%20van%20voeding%20op%20latere%20leeftijd%20door%20informatie%20uit%20database.%20Info%20is%20verzameld%20bij%20alle%20aangesloten%20mensen%20en%20wordt%20verwerkt%20om%20statistieken%20te%20krijgen%20over%20relaties%20voeding-gezondheid"/>
</topic>
</topic>
<topic order="2" text="geboortetimer">
<note text="telt%20af%20naar%20geboorte%0A"/>
</topic>
</topic>
<topic order="1" text="dementen">
<topic order="0" text="wegloopdetectie"/>
<topic order="1" text="wassen"/>
<topic order="2" text="eten"/>
</topic>
</topic>
<topic position="258,100" text="sport">
<topic order="0" text="opvolging van de sporter">
<topic order="0" text="hartslag"/>
<topic order="1" text="bloeddruk"/>
<topic order="2" text="energieverbruik"/>
<topic order="3" text="cadans"/>
<topic order="4" text="gps"/>
</topic>
</topic>
<topic position="-167,550" text="ziektes">
<topic order="0" text="verschillende ziektes">
<note text="verzamelen%20van%20de%20informatie%20over%20verschillende%20ziekten%20en%20directe%20link%20naar%20een%20database%20zodat%20de%20ziekte%20beter%20onderzocht%20kan%20worden%20en%20zodat%20directe%20interventie%20mogelijk%20is"/>
<topic order="0" text="feedback van de lichaamsconditie">
<topic order="0" text="aan de patiënt">
<topic order="0" text="waarschuwingen"/>
</topic>
<topic order="1" text="link">
<topic order="0" text="naar ziekenhuis"/>
<topic order="1" text="naar hulpdiensten"/>
<topic order="2" text="naar behandelend arts"/>
</topic>
<topic order="2" text="aan dokter">
<topic order="0" text="contacteert patient indien nodig"/>
<topic order="1" text="volledig overzicht"/>
<topic order="2" text="op afstand consulatie"/>
</topic>
</topic>
<topic order="1" text="MS">
<topic order="0" text="bevorderen van communicatie tijdens de aftakeling">
<topic order="0" text="naar de dokters toe"/>
<topic order="1" text="naar familie en vrienden toe"/>
</topic>
</topic>
<topic order="2" text="mucoviscidose">
<topic order="0" text="longcapaciteit meten"/>
<topic order="1" text="alert voor donor"/>
</topic>
<topic order="3" text="aids">
<topic order="0" text="vergroten van de database aan info"/>
</topic>
<topic order="4" text="diabetes">
<topic order="0" text="suikerspiegel meten">
<topic order="0" text="alert indien te laag"/>
<topic order="1" text="automatische inspuiting"/>
</topic>
</topic>
<topic order="5" text="epilepsie">
<topic order="0" text="aanval voorspellen??"/>
</topic>
<topic order="6" text="astma">
<topic order="0" text="detectie van luchtkwaliteit">
<topic order="0" text="in kaart brengen van">
<topic order="0" text="vervuiling"/>
<topic order="1" text="pollen"/>
<topic order="2" text="allergie veroorzakende deeltjes"/>
</topic>
</topic>
</topic>
<topic order="7" text="anorexia">
<topic order="0" text="nagaan of ze eten"/>
<topic order="1" text="eten ze voldoende"/>
</topic>
</topic>
<topic order="1" text="thuisverzorging">
<topic order="0" text="meting van de symptomen">
<topic order="0" text="toevoeging van eigen waarneming"/>
<topic order="1" text="objectieve metingen"/>
</topic>
<topic order="1" text="link naar dokter"/>
<topic order="2" text="link naar ziekenhuis"/>
</topic>
<topic order="2" text="stress">
<topic order="0" text="afreageren"/>
<topic order="1" text="monitoring">
<topic order="0" text="in welke afdeling een probleem">
<topic order="0" text="aan welke factoren ligt dat"/>
<topic order="1" text="aanpak"/>
</topic>
</topic>
</topic>
</topic>
</topic>
<topic position="-1156,-977" text="Technologie kledij">
<topic order="0" text="slimme vezels met licht, camera, druk"/>
<topic order="1" text="Luiquid glass">
<topic order="0" text="Kledij steeds proper houden"/>
<topic order="1" text="Afwasbaar"/>
</topic>
<topic order="2" text="Smart fibres">
<topic order="0" text="Geluid door de kledij"/>
</topic>
<topic order="3" text="Nieuwe soort barcodes">
<topic order="0" text="GS1-databar: meer infor opslaan"/>
</topic>
</topic>
<topic position="651,23" text="levensfasen" shape="rounded rectagle">
<topic order="0" text="kinderen en peuters" fontStyle=";;;bold;;">
<topic order="0" text="kinderen steeds asocialer">
<topic order="0" text="sociale networking voor kinderen"/>
</topic>
<topic order="1" text="worden dikker = eetstoornissen">
<topic order="0" text="eethulp applicatie"/>
</topic>
<topic order="2" text="pesten">
<topic order="0" text="pesten tegengaan"/>
<topic order="1" text=" = niet echt mogelijk"/>
</topic>
<topic order="3" text="allergieën"/>
<topic order="4" text="gevoelige kinderen ?"/>
<topic order="5" text="angsten verminderen">
<topic order="0" text="&gt;&lt; nachtmerries"/>
</topic>
<topic order="6" text="stress">
<topic order="0" text="hoe verminderen ?"/>
<topic order="1" text="speel en leerdevice"/>
</topic>
</topic>
<topic order="1" text="Pubers" fontStyle=";;;bold;;">
<topic order="0" text="veiligheid op internet">
<topic order="0" text="bepaalde sites blokkeren"/>
<topic order="1" text="cloud ?"/>
</topic>
<topic order="1" text="buitenspeeldevice">
<topic order="0" text="real life games"/>
</topic>
<topic order="2" text="gezondheidsmonitor"/>
<topic order="3" text="leerhulp">
<topic order="0" text="interactief leren"/>
<topic order="1" text="via cloud"/>
</topic>
</topic>
<topic order="2" text="volwassenen">
<topic order="0" text="social media">
<topic order="0" text="Agebook"/>
</topic>
<topic order="1" text="wife tracker"/>
<topic order="2" text="werk vs ontspanning">
<topic order="0" text="sportcompetities op werk">
<topic order="0" text="via clouds"/>
<topic order="1" text="resultaten"/>
</topic>
<topic order="1" text="gokken"/>
</topic>
</topic>
<topic order="3" text="ouderen">
<topic order="0" text="sociaal contact">
<topic order="0" text="werklast verzorgers verlichten">
<topic order="0" text="meer tijd voor patienten"/>
</topic>
<topic order="1" text="meer sociaal contact"/>
</topic>
<topic order="1" text="time management ">
<note text="want%20op%20%E9%E9n%20of%20andere%20manier%20hebben%20bejaarden%20altijd%20te%20weinig%20tijd"/>
</topic>
<topic order="2" text="gezondheidsmonitor">
<topic order="0" text="cholesterol">
<topic order="0" text="voedingsadvies">
<topic order="0" text="in winkel (--&gt; shop assistent)"/>
<topic order="1" text="vetarm eten"/>
</topic>
</topic>
<topic order="1" text="medicijnen op juiste moment">
<note text="niet%20op%20basis%20van%20tijd%2C%20maar%20op%20basis%20van%20de%20echte%20noodzaak%0A"/>
</topic>
</topic>
<topic order="3" text="hulpjes in dagelijkse leven"/>
<topic order="4" text="huis past zich aan"/>
<topic order="5" text="custom zorg"/>
<topic order="6" text="sport"/>
</topic>
</topic>
</map>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
<map version="0.9.0">
<node ID="ID_0" TEXT="i18n">
<node ID="ID_1" POSITION="right" TEXT="Este es un &#233; con acento"/>
<node ID="ID_2" POSITION="left" TEXT="Este es una &#241;"/>
<node ID="ID_3" POSITION="right" TEXT="&#36889;&#26159;&#19968;&#20491;&#27171;&#26412; Japanise&#12290;"/>
</node>
</map>

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">i18n</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Este es un é con acento</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Este es una ñ</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">這是一個樣本 Japanise。</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -1,87 +1 @@
<?xml version="1.0" encoding="UTF-8"?><office:document-content office:version="1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns="http://www.w3.org/1999/xhtml">
<office:scripts/>
<office:font-face-decls>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans2" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:automatic-styles>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:body>
<office:text>
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Title">i18n</text:p>
<text:h text:style-name="Heading_20_1" text:outline-level="1">Este es un é con acento</text:h>
<text:h text:style-name="Heading_20_1" text:outline-level="1">Este es una ñ</text:h>
<text:h text:style-name="Heading_20_1" text:outline-level="1">這是一個樣本 Japanise。</text:h>
</office:text>
</office:body>
</office:document-content>
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="0W54nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Este es un é con acento"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="Este es una ñ"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="3W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="這是一個樣本 Japanise。"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="i18n"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 i18n
1.1 Este es un é con acento

View File

@ -0,0 +1,25 @@
<map version="0.9.0">
<node ID="ID_0" TEXT="&#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;&#1616;&#1610;&#1614;&#1617;&#1577;">
<node ID="ID_1" POSITION="right" TEXT="&#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;&#1616;">
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p>This is a not in languange &#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;&#1616;</p>
</body>
</html>
</richcontent>
</node>
<node ID="ID_2" POSITION="left">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Long text node:</p>
<p>&#1571;&#1614;&#1576;&#1618;&#1580;&#1614;&#1583;&#1616;&#1610;&#1614;&#1617;&#1577; &#1593;&#1614;&#1585;&#1614;&#1576;</p>
</body>
</html>
</richcontent>
</node>
</node>
</map>

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">أَبْجَدِيَّة عَرَبِيَّة</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">أَبْجَدِيَّة عَرَبِ</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p>This is a not in languange أَبْجَدِيَّة عَرَبِ</p>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Long text node:</p>
<p>أَبْجَدِيَّة عَرَب</p>
</ss:Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -1,87 +1 @@
<?xml version="1.0" encoding="UTF-8"?><office:document-content office:version="1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns="http://www.w3.org/1999/xhtml">
<office:scripts/>
<office:font-face-decls>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans2" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:automatic-styles>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:body>
<office:text>
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Title">أَبْجَدِيَّة عَرَبِيَّة</text:p>
<text:h text:style-name="Heading_20_1" text:outline-level="1">أَبْجَدِيَّة عَرَبِ</text:h>
<text:p text:style-name="Standard">This is a not in languange أَبْجَدِيَّة عَرَبِ</text:p>
<text:h text:style-name="Heading_20_1" text:outline-level="1">Long text node:أَبْجَدِيَّة عَرَب</text:h>
</office:text>
</office:body>
</office:document-content>
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="0W54nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText="أَبْجَدِيَّة عَرَبِ"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="2W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText=""><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="أَبْجَدِيَّة عَرَبِيَّة"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 أَبْجَدِيَّة عَرَبِيَّة
1.1 أَبْجَدِيَّة عَرَبِ

View File

@ -0,0 +1,80 @@
La computadora
,
,
,
,
,
,
,
,
Salida de datos
,
,
,
,
,
Almacenamiento
,
,
,
,
,
,
,
,
,
Microsoft Windows
,
,
,
GNU/LINUX
,
,
,
MAC
,
,
,
,
,
Office
,
,
,
Libre Office
,
,
,
Navegadores
,
,
,
Msn
,
,
,
Tipos de computadora
,
,
Computadora personal de escritorio o Desktop
,
,
,
,
Laptop
,
,
Servidor
,
,
Tablet PC
1 La computadora
2 ,
3
4 ,
5 ,
6
7 ,
8 ,
9 ,
10
11 ,
12 ,
13 Salida de datos
14 ,
15 ,
16 ,
17
18 ,
19 ,
20 Almacenamiento
21 ,
22 ,
23 ,
24
25 ,
26
27 ,
28 ,
29
30 ,
31 ,
32 ,
33 Microsoft Windows
34 ,
35 ,
36 ,
37 GNU/LINUX
38 ,
39 ,
40 ,
41 MAC
42 ,
43 ,
44
45 ,
46 ,
47 ,
48 Office
49 ,
50 ,
51 ,
52 Libre Office
53 ,
54 ,
55 ,
56 Navegadores
57 ,
58 ,
59 ,
60 Msn
61 ,
62 ,
63
64 ,
65 Tipos de computadora
66 ,
67 ,
68 Computadora personal de escritorio o Desktop
69 ,
70 ,
71
72 ,
73 ,
74 Laptop
75 ,
76 ,
77 Servidor
78 ,
79 ,
80 Tablet PC

View File

@ -0,0 +1,507 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?><w:wordDocument xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:o="urn:schemas-microsoft-com:office:office">
<o:DocumentProperties>
<o:Title>La computadora</o:Title>
</o:DocumentProperties>
<w:styles>
<w:versionOfBuiltInStylenames w:val="4"/>
<w:latentStyles w:defLockedState="off" w:latentStyleCount="156"/>
<w:style w:type="paragraph" w:default="on" w:styleId="Normal">
<w:name w:val="Normal"/>
<w:rsid w:val="00831C9D"/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:sz w:val="24"/>
<w:sz-cs w:val="24"/>
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading1">
<w:name w:val="heading 1"/>
<wx:uiName wx:val="Heading 1"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading1"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:kern w:val="32"/>
<w:sz w:val="32"/>
<w:sz-cs w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading2">
<w:name w:val="heading 2"/>
<wx:uiName wx:val="Heading 2"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading2"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="1"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:i/>
<w:i-cs/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading3">
<w:name w:val="heading 3"/>
<wx:uiName wx:val="Heading 3"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading3"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="2"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="26"/>
<w:sz-cs w:val="26"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading4">
<w:name w:val="heading 4"/>
<wx:uiName wx:val="Heading 4"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading4"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="3"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading5">
<w:name w:val="heading 5"/>
<wx:uiName wx:val="Heading 5"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading5"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="4"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:i/>
<w:i-cs/>
<w:sz w:val="26"/>
<w:sz-cs w:val="26"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading6">
<w:name w:val="heading 6"/>
<wx:uiName wx:val="Heading 6"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading6"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="5"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="22"/>
<w:sz-cs w:val="22"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading7">
<w:name w:val="heading 7"/>
<wx:uiName wx:val="Heading 7"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading7"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="6"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading8">
<w:name w:val="heading 8"/>
<wx:uiName wx:val="Heading 8"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading8"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="7"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:i/>
<w:i-cs/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading9">
<w:name w:val="heading 9"/>
<wx:uiName wx:val="Heading 9"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading9"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="8"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:sz w:val="22"/>
<w:sz-cs w:val="22"/>
</w:rPr>
</w:style>
<w:style w:type="character" w:default="on" w:styleId="DefaultParagraphFont">
<w:name w:val="Default Paragraph Font"/>
<w:semiHidden/>
</w:style>
<w:style w:type="table" w:default="on" w:styleId="TableNormal">
<w:name w:val="Normal Table"/>
<wx:uiName wx:val="Table Normal"/>
<w:semiHidden/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa"/>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="list" w:default="on" w:styleId="NoList">
<w:name w:val="No List"/>
<w:semiHidden/>
</w:style>
<w:style w:type="paragraph" w:styleId="Title">
<w:name w:val="Title"/>
<w:basedOn w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Title"/>
<w:spacing w:before="240" w:after="60"/>
<w:jc w:val="center"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:kern w:val="28"/>
<w:sz w:val="32"/>
<w:sz-cs w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="BodyText">
<w:name w:val="Body Text"/>
<w:basedOn w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="BodyText"/>
<w:spacing w:after="120"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
</w:style>
</w:styles>
<w:body>
<wx:sect>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Title"/>
</w:pPr>
<w:r>
<w:t>La computadora</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Hardware (componentes físicos)</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Entrada de datos</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Ratón, Teclado, Joystick, Cámara digital, Micrófono, Escáner.</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Salida de datos</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Monitor, Impresora, Bocinas, Plóter.</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Almacenamiento</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Disquete, Disco compacto, DVD, BD, Disco duro, Memoria flash.</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Software (Programas y datos con los que funciona la computadora)</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Software de Sistema:Permite el entendimiento entre el usuario y la maquina.</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Microsoft Windows</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>GNU/LINUX</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>MAC</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Software de Aplicación: Permite hacer hojas de calculo navegar en internet, base de datos, etc.</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Office</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Libre Office</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Navegadores</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Msn</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Software de Desarrollo</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Tipos de computadora</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Computadora personal de escritorio o Desktop</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>PDA</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Laptop</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Servidor</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Tablet PC</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
</wx:sub-section>
</wx:sect>
</w:body>
</w:wordDocument>

View File

@ -0,0 +1,26 @@
\chapter{La computadora}\label{ID_1}
\section{}\label{ID_21}
\subsection{}\label{ID_25}
\subsubsection{}\label{ID_28}
\subsection{Salida de datos}\label{ID_29}
\subsubsection{}\label{ID_30}
\subsection{Almacenamiento}\label{ID_31}
\subsubsection{}\label{ID_32}
\section{}\label{ID_59}
\subsection{}\label{ID_92}
\subsubsection{Microsoft Windows}\label{ID_101}
\subsubsection{GNU/LINUX}\label{ID_106}
\subsubsection{MAC }\label{ID_107}
\subsection{}\label{ID_93}
\subsubsection{Office}\label{ID_108}
\subsubsection{Libre Office}\label{ID_109}
\subsubsection{Navegadores}\label{ID_110}
\subsubsection{Msn}\label{ID_111}
\subsection{}\label{ID_94}
\section{Tipos de computadora}\label{ID_3}
\subsection{Computadora personal de escritorio o Desktop}\label{ID_8}
\subsection{}\label{ID_10}
\subsection{Laptop}\label{ID_11}
\subsection{Servidor}\label{ID_12}
\subsection{Tablet PC}\label{ID_13}

View File

@ -0,0 +1,182 @@
<map version="0.9.0">
<node BACKGROUND_COLOR="#cc0000" COLOR="#feffff" ID="ID_1" TEXT="La computadora">
<font BOLD="true" NAME="Verdana" SIZE="24"/>
<edge COLOR="#660000"/>
<node BACKGROUND_COLOR="#a64d79" COLOR="#feffff" ID="ID_21" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Hardware</p>
<p>(componentes f&#237;sicos)</p>
</body>
</html>
</richcontent>
<font BOLD="true" SIZE="18"/>
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#c27ba0" COLOR="#feffff" ID="ID_25" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Entrada de datos</p>
</body>
</html>
</richcontent>
<font SIZE="12"/>
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#ead1dc" COLOR="#000000" ID="ID_28" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Rat&#243;n, Teclado, Joystick,</p>
<p>C&#225;mara digital, Micr&#243;fono, Esc&#225;ner.</p>
</body>
</html>
</richcontent>
<font SIZE="12"/>
<edge COLOR="#4c1130"/>
</node>
</node>
<node BACKGROUND_COLOR="#c27ba0" COLOR="#feffff" ID="ID_29" POSITION="right" STYLE="bubble" TEXT="Salida de datos">
<font SIZE="12"/>
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#ead1dc" COLOR="#000000" ID="ID_30" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Monitor, Impresora, Bocinas, Pl&#243;ter.</p>
</body>
</html>
</richcontent>
<font SIZE="12"/>
<edge COLOR="#4c1130"/>
</node>
</node>
<node BACKGROUND_COLOR="#c27ba0" COLOR="#feffff" ID="ID_31" POSITION="right" STYLE="bubble" TEXT="Almacenamiento">
<font SIZE="12"/>
<edge COLOR="#4c1130"/>
<node BACKGROUND_COLOR="#ead1dc" COLOR="#000000" ID="ID_32" POSITION="right" STYLE="bubble">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Disquete, Disco compacto, DVD,</p>
<p>BD, Disco duro, Memoria flash.</p>
</body>
</html>
</richcontent>
<font SIZE="12"/>
<edge COLOR="#4c1130"/>
</node>
</node>
</node>
<node BACKGROUND_COLOR="#bf9000" COLOR="#000000" ID="ID_59" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Software</p>
<p>(Programas y datos con los que funciona la computadora)</p>
</body>
</html>
</richcontent>
<font BOLD="true" SIZE="12"/>
<edge COLOR="#7f6000"/>
<node BACKGROUND_COLOR="#f1c232" COLOR="#000000" ID="ID_92" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Software de Sistema:Permite el entendimiento</p>
<p>entre el usuario y la maquina.</p>
</body>
</html>
</richcontent>
<font BOLD="true" SIZE="12"/>
<edge COLOR="#7f6000"/>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_101" POSITION="left" STYLE="rectagle" TEXT="Microsoft Windows">
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
</node>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_106" POSITION="left" STYLE="rectagle" TEXT="GNU/LINUX">
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
</node>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_107" POSITION="left" STYLE="rectagle" TEXT="MAC ">
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
</node>
</node>
<node BACKGROUND_COLOR="#f1c232" COLOR="#000000" ID="ID_93" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Software de Aplicaci&#243;n: Permite hacer hojas de</p>
<p>calculo navegar en internet, base de datos, etc.</p>
</body>
</html>
</richcontent>
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_108" POSITION="left" STYLE="rectagle" TEXT="Office">
<font SIZE="12"/>
<edge COLOR="#783f04"/>
</node>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_109" POSITION="left" STYLE="rectagle" TEXT="Libre Office">
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
</node>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_110" POSITION="left" STYLE="rectagle" TEXT="Navegadores">
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
</node>
<node BACKGROUND_COLOR="#ffd966" COLOR="#000000" ID="ID_111" POSITION="left" STYLE="rectagle" TEXT="Msn">
<font SIZE="12"/>
<edge COLOR="#783f04"/>
</node>
</node>
<node BACKGROUND_COLOR="#f1c232" COLOR="#000000" ID="ID_94" POSITION="left" STYLE="rectagle">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Software de Desarrollo</p>
</body>
</html>
</richcontent>
<font SIZE="12"/>
<edge COLOR="#7f6000"/>
</node>
</node>
<node ID="ID_3" POSITION="left" STYLE="elipse" TEXT="Tipos de computadora">
<font BOLD="true" SIZE="18"/>
<node ID="ID_8" POSITION="left" STYLE="elipse" TEXT="Computadora personal de escritorio o Desktop">
<font BOLD="true" SIZE="12"/>
</node>
<node ID="ID_10" POSITION="left" STYLE="elipse">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>PDA</p>
</body>
</html>
</richcontent>
<font BOLD="true" SIZE="12"/>
</node>
<node ID="ID_11" POSITION="left" STYLE="elipse" TEXT="Laptop">
<font BOLD="true" SIZE="12"/>
</node>
<node ID="ID_12" POSITION="left" STYLE="elipse" TEXT="Servidor">
<font BOLD="true" SIZE="12"/>
</node>
<node ID="ID_13" POSITION="left" STYLE="elipse" TEXT="Tablet PC">
<font BOLD="true" SIZE="12"/>
</node>
</node>
</node>
</map>

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">La computadora</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Hardware</p>
<p>(componentes físicos)</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Entrada de datos</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Ratón, Teclado, Joystick,</p>
<p>Cámara digital, Micrófono, Escáner.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Salida de datos</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Monitor, Impresora, Bocinas, Plóter.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Almacenamiento</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Disquete, Disco compacto, DVD,</p>
<p>BD, Disco duro, Memoria flash.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software</p>
<p>(Programas y datos con los que funciona la computadora)</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software de Sistema:Permite el entendimiento</p>
<p>entre el usuario y la maquina.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Microsoft Windows</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">GNU/LINUX</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">MAC </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software de Aplicación: Permite hacer hojas de</p>
<p>calculo navegar en internet, base de datos, etc.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Office</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Libre Office</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Navegadores</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Msn</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software de Desarrollo</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Tipos de computadora</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Computadora personal de escritorio o Desktop</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>PDA</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Laptop</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Servidor</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Tablet PC</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,181 @@
1 La computadora
1.1
Hardware
(componentes físicos)
1.1.1
Entrada de datos
1.1.1.1
Ratón, Teclado, Joystick,
Cámara digital, Micrófono, Escáner.
1.1.2 Salida de datos
1.1.2.1
Monitor, Impresora, Bocinas, Plóter.
1.1.3 Almacenamiento
1.1.3.1
Disquete, Disco compacto, DVD,
BD, Disco duro, Memoria flash.
1.2
Software
(Programas y datos con los que funciona la computadora)
1.2.1
Software de Sistema:Permite el entendimiento
entre el usuario y la maquina.
1.2.1.1 Microsoft Windows
1.2.1.2 GNU/LINUX
1.2.1.3 MAC
1.2.2
Software de Aplicación: Permite hacer hojas de
calculo navegar en internet, base de datos, etc.
1.2.2.1 Office
1.2.2.2 Libre Office
1.2.2.3 Navegadores
1.2.2.4 Msn
1.2.3
Software de Desarrollo
1.3 Tipos de computadora
1.3.1 Computadora personal de escritorio o Desktop
1.3.2
PDA
1.3.3 Laptop
1.3.4 Servidor
1.3.5 Tablet PC

View File

@ -0,0 +1,120 @@
<map name="70866" version="tango">
<topic central="true" text="La computadora" shape="rounded rectagle" id="1" fontStyle="Verdana;15;#feffff;bold;;"
bgColor="#cc0000" brColor="#660000">
<topic position="220,0" order="0" shape="rounded rectagle" id="21" fontStyle=";10;#feffff;bold;;"
bgColor="#a64d79" brColor="#4c1130">
<text><![CDATA[Hardware
(componentes físicos)]]></text>
<topic position="386,-29" order="0" shape="rounded rectagle" id="25" fontStyle=";8;#feffff;;;"
bgColor="#c27ba0" brColor="#4c1130">
<text><![CDATA[Entrada de datos
]]></text>
<topic position="558,-34" order="0" shape="rounded rectagle" id="28" fontStyle=";8;#000000;;;"
bgColor="#ead1dc" brColor="#4c1130">
<text><![CDATA[ Ratón, Teclado, Joystick,
Cámara digital, Micrófono, Escáner.]]></text>
</topic>
</topic>
<topic position="383,0" order="1" text="Salida de datos" shape="rounded rectagle" id="29"
fontStyle=";8;#feffff;;;" bgColor="#c27ba0" brColor="#4c1130">
<topic position="554,0" order="0" shape="rounded rectagle" id="30" fontStyle=";8;#000000;;;"
bgColor="#ead1dc" brColor="#4c1130">
<text><![CDATA[Monitor, Impresora, Bocinas, Plóter.
]]></text>
</topic>
</topic>
<topic position="387,40" order="2" text="Almacenamiento" shape="rounded rectagle" id="31"
fontStyle=";8;#feffff;;;" bgColor="#c27ba0" brColor="#4c1130">
<topic position="553,35" order="0" shape="rounded rectagle" id="32" fontStyle=";8;#000000;;;"
bgColor="#ead1dc" brColor="#4c1130">
<text><![CDATA[Disquete, Disco compacto, DVD,
BD, Disco duro, Memoria flash.]]></text>
</topic>
</topic>
</topic>
<topic position="-314,-72" order="1" shape="rectagle" id="59" fontStyle=";8;#000000;bold;;" bgColor="#bf9000"
brColor="#7f6000">
<text><![CDATA[Software
(Programas y datos con los que funciona la computadora)
]]></text>
<topic position="-664,-145" order="0" shape="rectagle" id="92" fontStyle=";8;#000000;normal;;"
bgColor="#f1c232" brColor="#7f6000">
<text><![CDATA[Software de Sistema:Permite el entendimiento
entre el usuario y la maquina.]]></text>
<topic position="-883,-174" order="0" text="Microsoft Windows" shape="rectagle" id="101"
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
<topic position="-864,-145" order="1" text="GNU/LINUX" shape="rectagle" id="106"
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
<topic position="-846,-116" order="2" text="MAC " shape="rectagle" id="107" fontStyle=";8;#000000;;;"
bgColor="#ffd966" brColor="#7f6000"/>
</topic>
<topic position="-667,-43" order="1" shape="rectagle" id="93" fontStyle=";8;#000000;;;" bgColor="#f1c232"
brColor="#7f6000">
<text><![CDATA[Software de Aplicación: Permite hacer hojas de
calculo navegar en internet, base de datos, etc.]]></text>
<topic position="-855,-87" order="0" text="Office" shape="rectagle" id="108" fontStyle=";8;#000000;;;"
bgColor="#ffd966" brColor="#783f04"/>
<topic position="-869,-58" order="1" text="Libre Office" shape="rectagle" id="109"
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
<topic position="-873,-29" order="2" text="Navegadores" shape="rectagle" id="110"
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
<topic position="-851,0" order="3" text="Msn" shape="rectagle" id="111" fontStyle=";8;#000000;;;"
bgColor="#ffd966" brColor="#783f04"/>
</topic>
<topic position="-590,29" order="2" shape="rectagle" id="94" fontStyle=";8;#000000;;;" bgColor="#f1c232"
brColor="#7f6000">
<text><![CDATA[Software de Desarrollo
]]></text>
</topic>
</topic>
<topic position="-218,116" order="3" text="Tipos de computadora" shape="elipse" id="3" fontStyle=";10;;bold;;">
<topic position="-476,58" order="0" text="Computadora personal de escritorio o Desktop" shape="elipse"
id="8" fontStyle=";8;;bold;;"/>
<topic position="-352,87" order="1" shape="elipse" id="10" fontStyle=";8;;bold;;">
<text><![CDATA[PDA
]]></text>
</topic>
<topic position="-360,116" order="2" text="Laptop" shape="elipse" id="11" fontStyle=";8;;bold;;"/>
<topic position="-365,145" order="3" text="Servidor" shape="elipse" id="12" fontStyle=";8;;bold;;"/>
<topic position="-368,174" order="4" text="Tablet PC" shape="elipse" id="13" fontStyle=";8;;bold;;"/>
</topic>
</topic>
<topic position="283,192" text="CPU y sus partes internas" shape="rounded rectagle" id="35"
fontStyle=";10;#feffff;;;" bgColor="#c27ba0" brColor="#4c1130">
<topic position="493,120" order="0" text="Ranuras de expansión o PCI" shape="rounded rectagle" id="36"
fontStyle=";8;#000000;;;" bgColor="#ead1dc" brColor="#4c1130"/>
<topic position="458,149" order="1" shape="rounded rectagle" id="38" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
brColor="#4c1130">
<text><![CDATA[Memoria RAM
]]></text>
</topic>
<topic position="466,178" order="2" shape="rounded rectagle" id="40" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
brColor="#4c1130">
<text><![CDATA[Unidades ópticas
]]></text>
</topic>
<topic position="457,207" order="3" shape="rounded rectagle" id="41" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
brColor="#4c1130">
<text><![CDATA[Tarjeta Madre
]]></text>
</topic>
<topic position="465,236" order="4" shape="rounded rectagle" id="42" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
brColor="#4c1130">
<text><![CDATA[Microprocesador
]]></text>
</topic>
<topic position="450,265" order="5" shape="rounded rectagle" id="43" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
brColor="#4c1130">
<text><![CDATA[Disco Duro
]]></text>
</topic>
</topic>
<topic position="80,-215" shape="rounded rectagle" id="118" fontStyle=";10;#feffff;;;" bgColor="#cc0000"
brColor="#660000">
<text><![CDATA[Máquina electrónica que sirve para: escribir, dibujar, pintar,
escuchar música, ver videos, calcular, comunicarnos con otras personas, etc-]]></text>
</topic>
<relationship srcTopicId="35" destTopicId="21" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="118" destTopicId="1" lineType="3" endArrow="true" startArrow="false"/>
<relationship srcTopicId="118" destTopicId="1" lineType="3" endArrow="true" startArrow="false"/>
</map>

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">La computadora</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Hardware</p>
<p>(componentes físicos)</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Entrada de datos</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Ratón, Teclado, Joystick,</p>
<p>Cámara digital, Micrófono, Escáner.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Salida de datos</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Monitor, Impresora, Bocinas, Plóter.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Almacenamiento</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Disquete, Disco compacto, DVD,</p>
<p>BD, Disco duro, Memoria flash.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software</p>
<p>(Programas y datos con los que funciona la computadora)</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software de Sistema:Permite el entendimiento</p>
<p>entre el usuario y la maquina.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Microsoft Windows</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">GNU/LINUX</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">MAC </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software de Aplicación: Permite hacer hojas de</p>
<p>calculo navegar en internet, base de datos, etc.</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Office</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Libre Office</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Navegadores</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Msn</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Software de Desarrollo</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Tipos de computadora</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Computadora personal de escritorio o Desktop</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>PDA</p>
</ss:Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Laptop</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Servidor</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Tablet PC</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -0,0 +1,18 @@
<map version="0.9.0">
<node ID="ID_0" TEXT="I have HTML In Nodes">
<node ID="ID_1" POSITION="right">
<richcontent TYPE="NODE">
<html>
<head/>
<body>
<p>Here is somefonts&#160;</p>
<p/>
<p>Add color changes ...</p>
<p>Add some bullets: Different Bullets</p>
<p>And all aligned !!!!s</p>
</body>
</html>
</richcontent>
</node>
</node>
</map>

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">I have HTML In Nodes</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<ss:Data xmlns="http://www.w3.org/TR/REC-html40" ss:Type="String">
<p>Here is somefonts </p>
<p/>
<p>Add color changes ...</p>
<p>Add some bullets: Different Bullets</p>
<p>And all aligned !!!!s</p>
</ss:Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -1,85 +1 @@
<?xml version="1.0" encoding="UTF-8"?><office:document-content office:version="1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns="http://www.w3.org/1999/xhtml">
<office:scripts/>
<office:font-face-decls>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans2" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:automatic-styles>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:body>
<office:text>
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Title">I have HTML In Nodes</text:p>
<text:h text:style-name="Heading_20_1" text:outline-level="1">Here is somefonts Add color changes ...Add some bullets: Different BulletsAnd all aligned !!!!s</text:h>
</office:text>
</office:body>
</office:document-content>
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="0W54nezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="1W54nezC90m8NYAi2fjQvw=="><ap:Text PlainText=""><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="I have HTML In Nodes"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 I have HTML In Nodes
1.1

View File

@ -0,0 +1,3 @@
<map version="0.9.0">
<node/>
</map>

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String"/>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -1,84 +1 @@
<?xml version="1.0" encoding="UTF-8"?><office:document-content office:version="1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns="http://www.w3.org/1999/xhtml">
<office:scripts/>
<office:font-face-decls>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans2" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:automatic-styles>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Text_20_body" style:list-style-name="L1"/>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<text:list-style style:name="L1">
<text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="○">
<style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="■">
<style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
<text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="●">
<style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
<style:text-properties style:font-name="StarSymbol"/>
</text:list-level-style-bullet>
</text:list-style>
</office:automatic-styles>
<office:body>
<office:text>
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="Title"/>
</office:text>
</office:body>
</office:document-content>
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="rW54nezC90m8NYAi2fjQvw=="><ap:Text PlainText=""><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -1,4 +1,2 @@
WiseMapping Export
1

View File

@ -0,0 +1,100 @@
<map version="0.9.0">
<node ID="ID_0" TEXT="California">
<node ID="ID_1" POSITION="left" TEXT="Northern California">
<node ID="ID_2" POSITION="left" TEXT="Oakland/Berkeley"/>
<node ID="ID_3" POSITION="left" TEXT="San Mateo"/>
<node ID="ID_4" POSITION="left" TEXT="Other North"/>
<node ID="ID_5" POSITION="left" TEXT="San Francisco"/>
<node ID="ID_6" POSITION="left" TEXT="Santa Clara"/>
<node ID="ID_7" POSITION="left" TEXT="Marin/Napa/Solano"/>
</node>
<node ID="ID_8" POSITION="left" TEXT="Hawaii"/>
<node ID="ID_9" POSITION="left" TEXT="Southern California">
<node ID="ID_10" POSITION="left" TEXT="Los Angeles"/>
<node ID="ID_11" POSITION="left" TEXT="Anaheim/Santa Ana"/>
<node ID="ID_12" POSITION="left" TEXT="Ventura"/>
<node ID="ID_13" POSITION="left" TEXT="Other South"/>
</node>
<node ID="ID_14" POSITION="left" TEXT="Policy Bodies">
<node ID="ID_15" POSITION="left" TEXT="Advocacy">
<node ID="ID_16" POSITION="left" TEXT="AAO"/>
<node ID="ID_17" POSITION="left" TEXT="ASCRS"/>
<node ID="ID_18" POSITION="left" TEXT="EBAA"/>
</node>
<node ID="ID_19" POSITION="left" TEXT="Military"/>
<node ID="ID_20" POSITION="left" TEXT="United Network for Organ Sharing"/>
<node ID="ID_21" POSITION="left" TEXT="Kaiser Hospital System"/>
<node ID="ID_22" POSITION="left" TEXT="University of California System"/>
<node ID="ID_23" POSITION="left" TEXT="CMS">
<node ID="ID_24" POSITION="left" TEXT="Medicare Part A"/>
<node ID="ID_25" POSITION="left" TEXT="Medicare Part B"/>
</node>
</node>
<node ID="ID_26" POSITION="right" TEXT="Corneal Tissue OPS">
<node ID="ID_27" POSITION="right" TEXT="Transplant Bank International">
<node ID="ID_28" POSITION="right" TEXT="Orange County Eye and Transplant Bank"/>
<node BACKGROUND_COLOR="#00ffd5" ID="ID_29" POSITION="right" STYLE="bubble" TEXT="Northern California Transplant Bank">
<node ID="ID_30" POSITION="right" TEXT="In 2010, 2,500 referrals forwarded to OneLegacy"/>
</node>
<node BACKGROUND_COLOR="#00ffd5" ID="ID_31" LINK="http://www.dohenyeyebank.org/" POSITION="right" STYLE="bubble" TEXT="Doheny Eye and Tissue Transplant Bank"/>
<arrowlink DESTINATION="ID_32" ENDARROW="Default"/>
<arrowlink DESTINATION="ID_36" ENDARROW="Default"/>
</node>
<node BACKGROUND_COLOR="#00ffd5" ID="ID_32" POSITION="right" STYLE="bubble" TEXT="OneLegacy">
<node ID="ID_33" POSITION="right" TEXT="In 2010, 11,828 referrals"/>
</node>
<node BACKGROUND_COLOR="#00ffd5" ID="ID_34" POSITION="right" STYLE="bubble" TEXT="San Diego Eye Bank">
<node ID="ID_35" POSITION="right" TEXT="In 2010, 2,555 referrals"/>
</node>
<node ID="ID_36" POSITION="right" TEXT="California Transplant Donor Network"/>
<node ID="ID_37" POSITION="right" TEXT="California Transplant Services">
<node ID="ID_38" POSITION="right" TEXT="In 2010, 0 referrals"/>
</node>
<node ID="ID_39" POSITION="right" TEXT="Lifesharing"/>
<node ID="ID_40" POSITION="right" TEXT="DCI Donor Services">
<node BACKGROUND_COLOR="#00ffd5" ID="ID_41" POSITION="right" STYLE="bubble" TEXT="Sierra Eye and Tissue Donor Services">
<node ID="ID_42" POSITION="right" TEXT="In 2010, 2.023 referrals"/>
</node>
</node>
<node BACKGROUND_COLOR="#00ffd5" ID="ID_43" POSITION="right" STYLE="bubble" TEXT="SightLife"/>
</node>
<node ID="ID_44" POSITION="left" TEXT="Tools">
<node ID="ID_45" POSITION="left" TEXT="Darthmouth Atlas of Health"/>
<node ID="ID_46" POSITION="left" TEXT="HealthLandscape"/>
</node>
<node ID="ID_47" POSITION="right" TEXT="QE Medicare"/>
<node ID="ID_48" POSITION="right" TEXT="CMS Data"/>
<node ID="ID_49" POSITION="right" TEXT="Ambulatory Payment Classification">
<node ID="ID_50" POSITION="right" TEXT="CPT's which don't allow V2785">
<node ID="ID_51" POSITION="right" TEXT="Ocular Reconstruction Transplant">
<node ID="ID_52" POSITION="right" TEXT="65780 (amniotic membrane tranplant"/>
<node ID="ID_53" POSITION="right" TEXT="65781 (limbal stem cell allograft)"/>
<node ID="ID_54" POSITION="right" TEXT="65782 (limbal conjunctiva autograft)"/>
</node>
<node ID="ID_55" POSITION="right" TEXT="Endothelial keratoplasty">
<node ID="ID_56" POSITION="right" TEXT="65756"/>
</node>
<node ID="ID_57" POSITION="right" TEXT="Epikeratoplasty">
<node ID="ID_58" POSITION="right" TEXT="65767"/>
</node>
</node>
<node ID="ID_59" POSITION="right" TEXT="Anterior lamellar keratoplasty">
<node ID="ID_60" POSITION="right" TEXT="65710"/>
</node>
<node ID="ID_61" POSITION="right" TEXT="Processing, preserving, and transporting corneal tissue">
<node ID="ID_62" POSITION="right" TEXT="V2785"/>
<node ID="ID_63" POSITION="right" TEXT="Laser incision in recepient">
<node ID="ID_64" POSITION="right" TEXT="0290T"/>
</node>
</node>
<node ID="ID_65" POSITION="right" TEXT="Laser incision in donor">
<node ID="ID_66" POSITION="right" TEXT="0289T"/>
</node>
<node ID="ID_67" POSITION="right" TEXT="Penetrating keratoplasty">
<node ID="ID_68" POSITION="right" TEXT="65730 (in other)"/>
<node ID="ID_69" POSITION="right" TEXT="65755 (in pseudoaphakia)"/>
<node ID="ID_70" POSITION="right" TEXT="65750 (in aphakia)"/>
</node>
</node>
</node>
</map>

View File

@ -0,0 +1,381 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">California</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Northern California</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Oakland/Berkeley</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">San Mateo</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Other North</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">San Francisco</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Santa Clara</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Marin/Napa/Solano</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Hawaii</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Southern California</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Los Angeles</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Anaheim/Santa Ana</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Ventura</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Other South</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Policy Bodies</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Advocacy</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">AAO</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">ASCRS</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">EBAA</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Military</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">United Network for Organ Sharing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Kaiser Hospital System</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">University of California System</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">CMS</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Medicare Part A</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Medicare Part B</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Corneal Tissue OPS</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Transplant Bank International</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Orange County Eye and Transplant Bank</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Northern California Transplant Bank</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">In 2010, 2,500 referrals forwarded to OneLegacy</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Doheny Eye and Tissue Transplant Bank</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">OneLegacy</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">In 2010, 11,828 referrals</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">San Diego Eye Bank</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">In 2010, 2,555 referrals</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">California Transplant Donor Network</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">California Transplant Services</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">In 2010, 0 referrals</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Lifesharing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">DCI Donor Services</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Sierra Eye and Tissue Donor Services</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">In 2010, 2.023 referrals</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">SightLife</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Tools</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Darthmouth Atlas of Health</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">HealthLandscape</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">QE Medicare</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">CMS Data</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Ambulatory Payment Classification</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">CPT's which don't allow V2785</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Ocular Reconstruction Transplant</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">65780 (amniotic membrane tranplant</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">65781 (limbal stem cell allograft)</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">65782 (limbal conjunctiva autograft)</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Endothelial keratoplasty</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">65756</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Epikeratoplasty</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">65767</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Anterior lamellar keratoplasty</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">65710</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Processing, preserving, and transporting corneal tissue</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">V2785</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Laser incision in recepient</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">0290T</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Laser incision in donor</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">0289T</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Penetrating keratoplasty</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">65730 (in other)</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">65755 (in pseudoaphakia)</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">65750 (in aphakia)</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,3 @@
WiseMapping Export
1 California
1.1 Northern California

View File

@ -0,0 +1,43 @@
Prospace
,
Newspapers
,
,
College Newspapers
,
Third Party
,
,
Thumbshot
,
Partnerships
,
,
Websites
,
,
,
Business Networks
,
,
,
,
Xing
,
,
,
,
konnects.com
,
Career Counseling
,
,
Fraternity
,
,
Professional Associations
,
White-Label
,
,
http://www.harrisconnect.com/
1 Prospace
2 ,
3 Newspapers
4 ,
5 ,
6 College Newspapers
7 ,
8 Third Party
9 ,
10 ,
11 Thumbshot
12 ,
13 Partnerships
14 ,
15 ,
16 Websites
17 ,
18 ,
19 ,
20 Business Networks
21 ,
22 ,
23 ,
24 ,
25 Xing
26 ,
27 ,
28 ,
29 ,
30 konnects.com
31 ,
32 Career Counseling
33 ,
34 ,
35 Fraternity
36 ,
37 ,
38 Professional Associations
39 ,
40 White-Label
41 ,
42 ,
43 http://www.harrisconnect.com/

View File

@ -0,0 +1,417 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?><w:wordDocument xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:o="urn:schemas-microsoft-com:office:office">
<o:DocumentProperties>
<o:Title>Prospace</o:Title>
</o:DocumentProperties>
<w:styles>
<w:versionOfBuiltInStylenames w:val="4"/>
<w:latentStyles w:defLockedState="off" w:latentStyleCount="156"/>
<w:style w:type="paragraph" w:default="on" w:styleId="Normal">
<w:name w:val="Normal"/>
<w:rsid w:val="00831C9D"/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:sz w:val="24"/>
<w:sz-cs w:val="24"/>
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading1">
<w:name w:val="heading 1"/>
<wx:uiName wx:val="Heading 1"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading1"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:kern w:val="32"/>
<w:sz w:val="32"/>
<w:sz-cs w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading2">
<w:name w:val="heading 2"/>
<wx:uiName wx:val="Heading 2"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading2"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="1"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:i/>
<w:i-cs/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading3">
<w:name w:val="heading 3"/>
<wx:uiName wx:val="Heading 3"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading3"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="2"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="26"/>
<w:sz-cs w:val="26"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading4">
<w:name w:val="heading 4"/>
<wx:uiName wx:val="Heading 4"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading4"/>
<w:keepNext/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="3"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="28"/>
<w:sz-cs w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading5">
<w:name w:val="heading 5"/>
<wx:uiName wx:val="Heading 5"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading5"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="4"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:i/>
<w:i-cs/>
<w:sz w:val="26"/>
<w:sz-cs w:val="26"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading6">
<w:name w:val="heading 6"/>
<wx:uiName wx:val="Heading 6"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading6"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="5"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:b/>
<w:b-cs/>
<w:sz w:val="22"/>
<w:sz-cs w:val="22"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading7">
<w:name w:val="heading 7"/>
<wx:uiName wx:val="Heading 7"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading7"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="6"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading8">
<w:name w:val="heading 8"/>
<wx:uiName wx:val="Heading 8"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading8"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="7"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:i/>
<w:i-cs/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="Heading9">
<w:name w:val="heading 9"/>
<wx:uiName wx:val="Heading 9"/>
<w:basedOn w:val="Normal"/>
<w:next w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Heading9"/>
<w:spacing w:before="240" w:after="60"/>
<w:outlineLvl w:val="8"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:sz w:val="22"/>
<w:sz-cs w:val="22"/>
</w:rPr>
</w:style>
<w:style w:type="character" w:default="on" w:styleId="DefaultParagraphFont">
<w:name w:val="Default Paragraph Font"/>
<w:semiHidden/>
</w:style>
<w:style w:type="table" w:default="on" w:styleId="TableNormal">
<w:name w:val="Normal Table"/>
<wx:uiName wx:val="Table Normal"/>
<w:semiHidden/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa"/>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="list" w:default="on" w:styleId="NoList">
<w:name w:val="No List"/>
<w:semiHidden/>
</w:style>
<w:style w:type="paragraph" w:styleId="Title">
<w:name w:val="Title"/>
<w:basedOn w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="Title"/>
<w:spacing w:before="240" w:after="60"/>
<w:jc w:val="center"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:cs="Arial"/>
<wx:font wx:val="Arial"/>
<w:b/>
<w:b-cs/>
<w:kern w:val="28"/>
<w:sz w:val="32"/>
<w:sz-cs w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="BodyText">
<w:name w:val="Body Text"/>
<w:basedOn w:val="Normal"/>
<w:rsid w:val="00BA7540"/>
<w:pPr>
<w:pStyle w:val="BodyText"/>
<w:spacing w:after="120"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
</w:style>
</w:styles>
<w:body>
<wx:sect>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Title"/>
</w:pPr>
<w:r>
<w:t>Prospace</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="BodyText"/>
</w:pPr>
<w:r>
<w:t>
</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Newspapers</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>College Newspapers</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Third Party</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Thumbshot</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Partnerships</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Websites</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading3"/>
</w:pPr>
<w:r>
<w:t>Business Networks</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading4"/>
</w:pPr>
<w:r>
<w:t>Xing</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading4"/>
</w:pPr>
<w:r>
<w:t>konnects.com</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>Career Counseling</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Fraternity</w:t>
</w:r>
</w:p>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>Professional Associations</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading1"/>
</w:pPr>
<w:r>
<w:t>White-Label</w:t>
</w:r>
</w:p>
<wx:sub-section>
<w:p>
<w:pPr>
<w:pStyle w:val="Heading2"/>
</w:pPr>
<w:r>
<w:t>http://www.harrisconnect.com/</w:t>
</w:r>
</w:p>
</wx:sub-section>
</wx:sub-section>
</wx:sub-section>
</wx:sect>
</w:body>
</w:wordDocument>

View File

@ -0,0 +1,19 @@
\chapter{Prospace}\label{ID_null}Siehe auch \url{prospace.com}
\section{Newspapers}\label{ID_null}
\subsection{College Newspapers}\label{ID_null}
\section{Third Party }\label{ID_null}
\subsection{Thumbshot}\label{ID_null}Siehe auch \url{thumbshots.org}
\section{Partnerships}\label{ID_null}
\subsection{Websites}\label{ID_null}
\subsubsection{Business Networks}\label{ID_null}\begin{itemize}
\item \label{ID_null}Xing\par
\item \label{ID_null}konnects.com\par
\end{itemize}
\section{Career Counseling}\label{ID_null}
\subsection{Fraternity}\label{ID_null}
\subsection{Professional Associations}\label{ID_null}
\section{White-Label}\label{ID_null}
\subsection{http://www.harrisconnect.com/}\label{ID_null}

View File

@ -0,0 +1,34 @@
<map version="0.9.0">
<node BACKGROUND_COLOR="#f2981b" ID="ID_null" LINK="prospace.com" TEXT="Prospace">
<edge COLOR="#cc5627"/>
<richcontent TYPE="NOTE">
<html>
<head/>
<body>
<p/>
</body>
</html>
</richcontent>
<node ID="ID_null" POSITION="left" TEXT="Newspapers">
<node ID="ID_null" POSITION="left" TEXT="College Newspapers"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="Third Party ">
<node ID="ID_null" LINK="thumbshots.org" POSITION="left" STYLE="rectagle" TEXT="Thumbshot"/>
</node>
<node ID="ID_null" POSITION="right" TEXT="Partnerships">
<node ID="ID_null" POSITION="left" TEXT="Websites">
<node ID="ID_null" POSITION="left" TEXT="Business Networks">
<node ID="ID_null" POSITION="left" TEXT="Xing"/>
<node ID="ID_null" POSITION="left" TEXT="konnects.com"/>
</node>
</node>
</node>
<node ID="ID_null" POSITION="left" TEXT="Career Counseling">
<node ID="ID_null" POSITION="left" TEXT="Fraternity"/>
<node ID="ID_null" POSITION="left" TEXT="Professional Associations"/>
</node>
<node ID="ID_null" POSITION="left" TEXT="White-Label">
<node ID="ID_null" POSITION="left" TEXT="http://www.harrisconnect.com/"/>
</node>
</node>
</map>

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">Prospace</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Newspapers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">College Newspapers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Third Party </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Thumbshot</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Partnerships</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Websites</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Business Networks</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Xing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">konnects.com</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Career Counseling</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Fraternity</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Professional Associations</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">White-Label</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">http://www.harrisconnect.com/</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><ap:Map xmlns:ap="http://schemas.mindjet.com/MindManager/Application/2003"><ap:OneTopic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="College Newspapers"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Newspapers"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Thumbshot"><ap:Font/></ap:Text><ap:SubTopicShape/><ap:Hyperlink Url="thumbshots.org"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Third Party "><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Xing"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="konnects.com"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Business Networks"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Websites"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Partnerships"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Fraternity"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="Professional Associations"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Career Counseling"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:SubTopics><ap:Topic OId="nullnezC90m8NYAi2fjQvw=="><ap:Text PlainText="http://www.harrisconnect.com/"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="White-Label"><ap:Font/></ap:Text><ap:SubTopicShape SubTopicShape="urn:mindjet:Line"/></ap:Topic></ap:SubTopics><ap:Text PlainText="Prospace"><ap:Font/></ap:Text><ap:Color FillColor="fff2981b"/><ap:SubTopicShape SubTopicShape="urn:mindjet:RoundedRectangle&#10; "/><ap:SubTopicsShape SubTopicsAlignment="urn:mindjet:Center" SubTopicsGrowth="urn:mindjet:Horizontal" SubTopicsGrowthDirection="urn:mindjet:AutomaticHorizontal&#10; " VerticalDistanceBetweenSiblings="150"/><ap:Hyperlink Url="prospace.com"/></ap:Topic></ap:OneTopic><ap:Relationships/></ap:Map>

View File

@ -0,0 +1,33 @@
1 Prospace
1.1 Newspapers
1.1.1 College Newspapers
1.2 Third Party
1.2.1 Thumbshot
1.3 Partnerships
1.3.1 Websites
1.3.1.1 Business Networks
1.3.1.1.1 Xing
1.3.1.1.2 konnects.com
1.4 Career Counseling
1.4.1 Fraternity
1.4.2 Professional Associations
1.5 White-Label
1.5.1 http://www.harrisconnect.com/

View File

@ -0,0 +1,29 @@
<map name="8007">
<topic central="true" text="Prospace" bgColor="#f2981b" brColor="#cc5627">
<link url="prospace.com"/>
<note text="Prospace.com%0A%0A%0AShow%20them%20the%20value%20and%20sell%20them%20a%20product%20that%20is%20much%20lower%20than%20the%20preceived%20value.%0A%0AIdentify%20the%20pain%20in%20the%20industry.%20%0A%0ATrying%20to%20get%20a%20job%20is%20a%20pain.%20%20You%20need%20a%20high%20level%20of%20confidence%20to%20market%20yourself.%20%20Prospace%0Areinforces%20that%20confidence%20by%20allowing%20users%20to%20build%20a%20esteem-building%20portfolio%20on%20oneself.%20%20Getting%20a%0Ajob%20takes%20time.%20%0A%0ACareer%20Centers%20need%20to%20bring%20value%20to%20their%20audience.%20%0A%0A%0A%0AShow%20them%20a%20service%20that%20would%20solve%20that%20pain.%20%20%20First%0Abring%20awareness%20to%20that%20pain.%20%20How%20will%20you%20bring%20awareness%20to%20that%20pain%3F%20%20%20Bring%20awareness%20%0Aof%20a%20service%20that%20would%20solve%20that%20pain%20at%20a%20cost%20that%20can%20fit%20reasonable%20in%20their%20budget.%0A%0A%0A%0A%0A%20How%20are%20competitors%20solving%20that%20pain%20now%3F%20%20%20How%20is%20the%20compeition%0Amaking%20them%20aware%20of%20the%20pain.%20%20%20What%20is%20the%20value%20and%20price%20competitors%20bringing%20to%20their%20customers.%0A%0AWhat%20are%20the%20fears%20of%20the%20competition%3F%20%20What%20do%20they%20think%20they%20need%20to%20do%20in%20the%20next%20five%20years%20to%20%0Astay%20ahead%3F%0A"/>
<topic position="-314,-150" text="Newspapers">
<topic order="0" text="College Newspapers"/>
</topic>
<topic position="-203,-300" text="Third Party ">
<topic order="0" text="Thumbshot" shape="rectagle">
<link url="thumbshots.org"/>
</topic>
</topic>
<topic position="312,0" text="Partnerships">
<topic order="0" text="Websites">
<topic order="0" text="Business Networks">
<topic order="0" text="Xing"/>
<topic order="1" text="konnects.com"/>
</topic>
</topic>
</topic>
<topic position="-209,0" text="Career Counseling">
<topic order="0" text="Fraternity"/>
<topic order="1" text="Professional Associations"/>
</topic>
<topic position="-178,50" text="White-Label">
<topic order="0" text="http://www.harrisconnect.com/"/>
</topic>
</topic>
</map>

View File

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Excel.Sheet"?><Workbook xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:duss="urn:schemas-microsoft-com:office:dummyspreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet">
<Styles>
<Style ss:ID="s16" ss:Name="attribute_cell">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
</Style>
<Style ss:ID="s17" ss:Name="attribute_header">
<Borders>
<Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
<Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
</Borders>
<Font ss:Bold="1"/>
</Style>
</Styles>
<Worksheet ss:Name="FreeMind Sheet">
<Table>
<Row>
<Cell ss:Index="1">
<Data ss:Type="String">Prospace</Data>
<Comment>
<ss:Data xmlns="http://www.w3.org/TR/REC-html40">
<p/>
</ss:Data>
</Comment>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Newspapers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">College Newspapers</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Third Party </Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Thumbshot</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Partnerships</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Websites</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="4">
<Data ss:Type="String">Business Networks</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">Xing</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="5">
<Data ss:Type="String">konnects.com</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">Career Counseling</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Fraternity</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">Professional Associations</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="2">
<Data ss:Type="String">White-Label</Data>
</Cell>
</Row>
<Row>
<Cell ss:Index="3">
<Data ss:Type="String">http://www.harrisconnect.com/</Data>
</Cell>
</Row>
</Table>
</Worksheet>
</Workbook>

View File

@ -0,0 +1 @@
Clickview Overview
1 Clickview Overview

Some files were not shown because too many files have changed in this diff Show More