Add type to font style

This commit is contained in:
Paulo Gustavo Veiga 2023-01-02 18:47:59 -08:00
parent a8b093b43f
commit cf9b935bb1
28 changed files with 530 additions and 486 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -47,7 +47,7 @@ class CentralTopic extends Topic {
// Overwite behaviour ...
}
_updatePositionOnChangeSize() {
_updatePositionOnChangeSize(): void {
// Center main topic ...
const zeroPoint = new Point(0, 0);
this.setPosition(zeroPoint);

View File

@ -37,8 +37,6 @@ import RelationshipPivot from './RelationshipPivot';
import Relationship from './Relationship';
import TopicEventDispatcher, { TopicEvent } from './TopicEventDispatcher';
import TopicFeatureFactory from './TopicFeature';
import TopicFactory from './TopicFactory';
import EventBus from './layout/EventBus';

View File

@ -0,0 +1,18 @@
/*
* Copyright [2021] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export type FontStyleType = 'italic' | 'normal';

View File

@ -0,0 +1,18 @@
/*
* Copyright [2021] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export type FontWeightType = 'bold' | 'normal';

View File

@ -281,8 +281,7 @@ class Relationship extends ConnectionLine {
this._focusShape.updateLine();
}
// @typescript-eslint/ban-types
addEvent(eventType: string, listener) {
addEvent(eventType: string, listener: () => void) {
let type = eventType;
// Translate to web 2d events ...
if (type === 'onfocus') {

View File

@ -22,6 +22,8 @@ import { Rect, Line, Text, Group, ElementClass } from '@wisemapping/web2d';
import NodeGraph, { NodeOption } from './NodeGraph';
import TopicConfig from './TopicConfig';
import TopicStyle from './TopicStyle';
import { FontWeightType } from './FontWeightType';
import { FontStyleType } from './FontStyleType';
import TopicFeatureFactory from './TopicFeature';
import ConnectionLine, { LineType } from './ConnectionLine';
import IconGroup from './IconGroup';
@ -97,9 +99,9 @@ abstract class Topic extends NodeGraph {
this.addEvent('click', (event: Event) => {
event.stopPropagation();
});
const me = this;
this.addEvent('dblclick', (event: Event) => {
me._getTopicEventDispatcher().show(me);
this._getTopicEventDispatcher().show(this);
event.stopPropagation();
});
}
@ -281,7 +283,7 @@ abstract class Topic extends NodeGraph {
}
private getOrBuildIconGroup(): Group {
if (!$defined(this._iconsGroup)) {
if (!this._iconsGroup) {
this._iconsGroup = this._buildIconGroup();
const group = this.get2DElement();
@ -338,7 +340,6 @@ abstract class Topic extends NodeGraph {
return model.findFeatureById(id);
}
/** */
removeFeature(featureModel: FeatureModel): void {
$assert(featureModel, 'featureModel could not be null');
@ -348,9 +349,10 @@ abstract class Topic extends NodeGraph {
// Removing the icon from UI
const iconGroup = this.getIconGroup();
if ($defined(iconGroup)) {
if (iconGroup) {
iconGroup.removeIconByModel(featureModel);
}
this.redraw();
}
@ -396,31 +398,31 @@ abstract class Topic extends NodeGraph {
this.redraw();
}
setFontSize(value: number) {
setFontSize(value: number): void {
const model = this.getModel();
model.setFontSize(value);
this.redraw();
}
setFontStyle(value: string) {
setFontStyle(value: FontStyleType): void {
const model = this.getModel();
model.setFontStyle(value);
this.redraw();
}
setFontWeight(value: string) {
setFontWeight(value: FontWeightType): void {
const model = this.getModel();
model.setFontWeight(value);
this.redraw();
}
getFontWeight() {
getFontWeight(): FontWeightType {
const model = this.getModel();
let result = model.getFontWeight();
if (!$defined(result)) {
if (!result) {
const font = TopicStyle.defaultFontStyle(this);
result = font.weight;
}
@ -609,23 +611,22 @@ abstract class Topic extends NodeGraph {
};
elem.addEvent('mouseout', outout);
const me = this;
// Focus events ...
elem.addEvent('mousedown', (event) => {
elem.addEvent('mousedown', (event: MouseEvent) => {
const isMac = window.navigator.platform.toUpperCase().indexOf('MAC') >= 0;
if (!me.isReadOnly()) {
if (this.isReadOnly()) {
// Disable topic selection of readOnly mode ...
let value = true;
if ((event.metaKey && isMac) || (event.ctrlKey && !isMac)) {
value = !me.isOnFocus();
value = !this.isOnFocus();
event.stopPropagation();
event.preventDefault();
}
topic.setOnFocus(value);
}
const eventDispatcher = me._getTopicEventDispatcher();
eventDispatcher.process(TopicEvent.CLICK, me);
const eventDispatcher = this._getTopicEventDispatcher();
eventDispatcher.process(TopicEvent.CLICK, this);
event.stopPropagation();
});
}

View File

@ -17,15 +17,17 @@
*/
import { $assert } from '@wisemapping/core-js';
import { LineType } from './ConnectionLine';
import { FontStyleType } from './FontStyleType';
import { FontWeightType } from './FontWeightType';
import { $msg } from './Messages';
import { TopicShapeType } from './model/INodeModel';
import Topic from './Topic';
type FontStlye = {
type FontStyle = {
font: string;
size: number;
style: string;
weight: string;
style: FontStyleType;
weight: FontWeightType;
color: string;
};
@ -34,7 +36,7 @@ type TopicStyleType = {
backgroundColor: string;
connectionStyle: LineType;
connectionColor: string;
fontStyle: FontStlye;
fontStyle: FontStyle;
msgKey: string;
shapeType: TopicShapeType;
};
@ -46,8 +48,8 @@ const TopicDefaultStyles = {
fontStyle: {
font: 'Verdana',
size: 10,
style: 'normal',
weight: 'bold',
style: 'normal' as FontStyleType,
weight: 'bold' as FontWeightType,
color: '#ffffff',
},
connectionStyle: LineType.THICK_CURVED,
@ -61,8 +63,8 @@ const TopicDefaultStyles = {
fontStyle: {
font: 'Arial',
size: 8,
style: 'normal',
weight: 'normal',
style: 'normal' as FontStyleType,
weight: 'normal' as FontWeightType,
color: 'rgb(82,92,97)',
},
connectionStyle: LineType.THICK_CURVED,
@ -76,8 +78,8 @@ const TopicDefaultStyles = {
fontStyle: {
font: 'Arial',
size: 6,
style: 'normal',
weight: 'normal',
style: 'normal' as FontStyleType,
weight: 'normal' as FontWeightType,
color: 'rgb(82,92,97)',
},
connectionStyle: LineType.THICK_CURVED,
@ -92,8 +94,8 @@ const TopicDefaultStyles = {
fontStyle: {
font: 'Verdana',
size: 8,
style: 'normal',
weight: 'normal',
style: 'normal' as FontStyleType,
weight: 'normal' as FontWeightType,
color: 'rgb(82,92,97)',
},
msgKey: 'ISOLATED_TOPIC',
@ -130,7 +132,7 @@ class TopicStyle {
return $msg(msgKey);
}
static defaultFontStyle(topic: Topic): FontStlye {
static defaultFontStyle(topic: Topic): FontStyle {
return this._getStyles(topic).fontStyle;
}

View File

@ -57,7 +57,7 @@ class Node {
return this.arrowlinkOrCloudOrEdge;
}
getBackgorundColor(): string {
getBackgroundColor(): string {
return this.BACKGROUND_COLOR;
}

View File

@ -167,8 +167,10 @@ export default class FreemindImporter extends Importer {
}
}
const bgColor: string = freeNode.getBackgorundColor();
if (bgColor) wiseTopic.setBackgroundColor(bgColor);
const bgColor: string = freeNode.getBackgroundColor();
if (bgColor) {
wiseTopic.setBackgroundColor(bgColor);
}
if (centralTopic === false) {
const shape = this.getShapeFromFreeNode(freeNode);
@ -178,8 +180,10 @@ export default class FreemindImporter extends Importer {
}
// Check for style...
const fontStyle = this.generateFontStyle(freeNode, undefined);
if (fontStyle && fontStyle !== ';;;;') wiseTopic.setFontStyle(fontStyle);
// const fontStyle = this.generateFontStyle(freeNode, undefined);
// if (fontStyle && fontStyle !== ';;;;') {
// wiseTopic.setFontStyle(fontStyle);
// }
// Is there any link...
const url: string = freeNode.getLink();
@ -250,13 +254,13 @@ export default class FreemindImporter extends Importer {
currentWiseTopic = wiseChild;
}
if (child instanceof FreemindFont) {
const font: FreemindFont = child as FreemindFont;
const fontStyle: string = this.generateFontStyle(freeParent, font);
if (fontStyle) {
currentWiseTopic.setFontStyle(fontStyle);
}
}
// if (child instanceof FreemindFont) {
// const font: FreemindFont = child as FreemindFont;
// const fontStyle: string = this.generateFontStyle(freeParent, font);
// if (fontStyle) {
// currentWiseTopic.setFontStyle(fontStyle);
// }
// }
if (child instanceof FreemindEdge) {
const edge: FreemindEdge = child as FreemindEdge;
@ -398,7 +402,7 @@ export default class FreemindImporter extends Importer {
let result: TopicShapeType;
if (shape === 'bubble') {
result = 'rounded rectangle';
} else if (node.getBackgorundColor()) {
} else if (node.getBackgroundColor()) {
result = 'rectangle';
} else {
result = 'line';

View File

@ -19,6 +19,8 @@
import { $assert, $defined } from '@wisemapping/core-js';
import { LineType } from '../ConnectionLine';
import PositionType from '../PositionType';
import { FontWeightType } from '../FontWeightType';
import { FontStyleType } from '../FontStyleType';
import FeatureModel from './FeatureModel';
import Mindmap from './Mindmap';
@ -161,20 +163,20 @@ abstract class INodeModel {
return this.getProperty('fontFamily') as string;
}
setFontStyle(fontStyle: string) {
setFontStyle(fontStyle: FontStyleType) {
this.putProperty('fontStyle', fontStyle);
}
getFontStyle(): string {
return this.getProperty('fontStyle') as string;
getFontStyle(): FontStyleType {
return this.getProperty('fontStyle') as FontStyleType;
}
setFontWeight(weight) {
setFontWeight(weight: FontWeightType) {
this.putProperty('fontWeight', weight);
}
getFontWeight() {
return this.getProperty('fontWeight');
getFontWeight(): FontWeightType | undefined {
return this.getProperty('fontWeight') as FontWeightType;
}
setFontColor(color: string): void {

View File

@ -25,6 +25,8 @@ import XMLMindmapSerializer from './XMLMindmapSerializer';
import FeatureType from '../model/FeatureType';
import emojiToIconMap from './iconToEmoji.json';
import { LineType } from '../ConnectionLine';
import { FontWeightType } from '../FontWeightType';
import { FontStyleType } from '../FontStyleType';
class XMLSerializerTango implements XMLMindmapSerializer {
private static MAP_ROOT_NODE = 'map';
@ -319,11 +321,11 @@ class XMLSerializerTango implements XMLMindmapSerializer {
}
if (font[3]) {
topic.setFontWeight(font[3]);
topic.setFontWeight(font[3] as FontWeightType);
}
if (font[4]) {
topic.setFontStyle(font[4]);
topic.setFontStyle(font[4] as FontStyleType);
}
}

View File

@ -22,7 +22,7 @@ import { diff } from 'jest-diff';
import { expect } from '@jest/globals';
import Exporter from '../../../src/components/export/Exporter';
const saveOutputRecord = false;
const saveOutputRecord = true;
export const setupBlob = () => {
// Workaround for partial implementations on Jest:

View File

@ -6,7 +6,7 @@ import { expect } from '@jest/globals';
import { diff } from 'jest-diff';
import Importer from '../../../src/components/import/Importer';
const saveOutputRecord = false;
const saveOutputRecord = true;
export const parseXMLString = (xmlStr: string, mimeType: DOMParserSupportedType) => {
const parser = new DOMParser();

View File

@ -1,59 +1,59 @@
<map name="SQLServer" version="tango">
<topic central="true" text="SQL Server 2000 Programming" id="1997664902" fontStyle=";;;;;;#000000;;;" bgColor="#ffff66">
<topic position="-200,-400" order="1" text="Source" shape="rounded rectangle" id="1594566921" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="200,0" order="0" text="Microsoft Official Course 2073A Workbook" shape="rectangle" id="376713119" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="200,0" order="0" text="Sep 2000" shape="rectangle" id="762876198" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic central="true" text="SQL Server 2000 Programming" id="1997664902" bgColor="#ffff66">
<topic position="-200,-400" order="1" text="Source" shape="rounded rectangle" id="1594566921" bgColor="#ffff66">
<topic position="200,0" order="0" text="Microsoft Official Course 2073A Workbook" shape="rectangle" id="376713119" bgColor="#99ff99">
<topic position="200,0" order="0" text="Sep 2000" shape="rectangle" id="762876198" bgColor="#bbffff"/>
</topic>
</topic>
<topic position="-290,-112" order="0" text="1. SQL Server Overview" shape="rounded rectangle" id="340496299" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-290,-112" order="0" text="1. SQL Server Overview" shape="rounded rectangle" id="340496299" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/a/a5/SQLServer2000_ServerOverview.mm&amp;mm_title=Overview%20of%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-380,-87" order="1" text="2. SQL Server Programming Overview" shape="rounded rectangle" id="1498687089" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-380,-87" order="1" text="2. SQL Server Programming Overview" shape="rounded rectangle" id="1498687089" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/5/55/SQLServer2000_ProgrammingOverview.mm&amp;mm_title=Overview%20of%20T-SQL%20for%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-470,-62" order="2" text="3. Databases" shape="rounded rectangle" id="1853206071" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-470,-62" order="2" text="3. Databases" shape="rounded rectangle" id="1853206071" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/3/36/SQLServer2000_Databases.mm&amp;mm_title=Creating%20and%20Managing%20SQL%20Server%202000%20Databases" urlType="url"/>
</topic>
<topic position="-560,-37" order="3" text="4. Data Types &amp; Tables" shape="rounded rectangle" id="242712646" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-560,-37" order="3" text="4. Data Types &amp; Tables" shape="rounded rectangle" id="242712646" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/1/1f/SQLServer2000_DataTypesTables.mm&amp;mm_title=Data%20Types%20and%20Managing%20Tables%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-650,-12" order="4" text="5. Data Integrity" shape="rounded rectangle" id="720230444" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-650,-12" order="4" text="5. Data Integrity" shape="rounded rectangle" id="720230444" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/9/97/SQLServer2000_DataIntegrity.mm&amp;mm_title=Data%20Integrity%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-740,13" order="5" text="6. Indexes - Planning" shape="rounded rectangle" id="727690975" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-740,13" order="5" text="6. Indexes - Planning" shape="rounded rectangle" id="727690975" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/5/5c/SQLServer2000_IndexPlanning.mm&amp;mm_title=Overview%20of%20Indexes%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-830,38" order="6" text="7. Indexes - Creating / Maintaining" shape="rounded rectangle" id="1377138658" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-830,38" order="6" text="7. Indexes - Creating / Maintaining" shape="rounded rectangle" id="1377138658" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/0/04/SQLServer2000_IndexCreateMaintain.mm&amp;mm_title=Creating%20and%20Maintaining%20Indexes%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-920,63" order="7" text="8. Views" shape="rounded rectangle" id="1121244967" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-920,63" order="7" text="8. Views" shape="rounded rectangle" id="1121244967" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/4/4d/SQLServer2000_Views.mm&amp;mm_title=Views%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1010,88" order="8" text="9. Stored Procedures" shape="rounded rectangle" id="1174228446" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1010,88" order="8" text="9. Stored Procedures" shape="rounded rectangle" id="1174228446" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/c/c5/SQLServer2000_StoredProcs.mm&amp;mm_title=Stored%20Procedures%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1100,113" order="9" text="9.5 Error Handling" shape="rounded rectangle" id="1" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1100,113" order="9" text="9.5 Error Handling" shape="rounded rectangle" id="1" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/3/3a/SQLServer2000_ErrorHandling.mm&amp;mm_title=Error%20Handling%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1190,138" order="10" text="10. User-defined Functions" shape="rounded rectangle" id="307963497" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1190,138" order="10" text="10. User-defined Functions" shape="rounded rectangle" id="307963497" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/f/fb/SQLServer2000_UDFs.mm&amp;mm_title=User-defined%20Functions%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1280,163" order="11" text="11. Triggers" shape="rounded rectangle" id="1540213298" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1280,163" order="11" text="11. Triggers" shape="rounded rectangle" id="1540213298" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/c/cf/SQLServer2000_Triggers.mm&amp;mm_title=Triggers%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1370,188" order="12" text="12. Multiple Servers" shape="rounded rectangle" id="698724146" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1370,188" order="12" text="12. Multiple Servers" shape="rounded rectangle" id="698724146" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/7/77/SQLServer2000_MultipleServers.mm&amp;mm_title=Dealing%20with%20Multiple%20Servers%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1460,213" order="13" text="13. Optimizing Queries" shape="rounded rectangle" id="490181612" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1460,213" order="13" text="13. Optimizing Queries" shape="rounded rectangle" id="490181612" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/0/06/SQLServer2000_Optimising.mm&amp;mm_title=Optimizing%20Queries%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1550,238" order="14" text="14. Analyzing Queries" shape="rounded rectangle" id="205448863" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1550,238" order="14" text="14. Analyzing Queries" shape="rounded rectangle" id="205448863" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/c/c8/SQLServer2000_Analysing.mm&amp;mm_title=Analyzing%20Queries%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1640,263" order="15" text="15. Transactions and Locks" shape="rounded rectangle" id="547751796" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1640,263" order="15" text="15. Transactions and Locks" shape="rounded rectangle" id="547751796" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/6/60/SQLServer2000_TransLocks.mm&amp;mm_title=Transactions%20and%20Locking%20in%20SQL%20Server%202000" urlType="url"/>
</topic>
<topic position="-1730,288" order="16" text="16. Topics in Exam 70-229 Not Covered in MOC2073" shape="rounded rectangle" id="1101701568" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1730,288" order="16" text="16. Topics in Exam 70-229 Not Covered in MOC2073" shape="rounded rectangle" id="1101701568" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/c/c5/SQLServer2000_OtherTopics.mm&amp;mm_title=SQL%20Server%202000%20-%20Topics%20in%20Exam%2070-229%20Not%20Covered%20in%20MOC%202073" urlType="url"/>
</topic>
</topic>

View File

@ -1,6 +1,6 @@
<map name="bug3" version="tango">
<topic central="true" text="Indicator needs" id="1">
<topic position="200,-100" order="0" text="Which new measures" shape="rounded rectangle" id="5" fontStyle=";;;;;8;;;;">
<topic position="200,-100" order="0" text="Which new measures" shape="rounded rectangle" id="5">
<note><![CDATA[Identifying new measures or investments that should be implemented.]]></note>
<topic position="200,-50" order="0" text="Landscape of measures" shape="rounded rectangle" id="56" bgColor="#feffff">
<topic position="200,-50" order="0" text="Diversity index of innovation support instruments in the region" shape="line" id="45">
@ -14,7 +14,7 @@
<topic position="470,-112" order="2" text="Number of specific types of measures per capita" shape="line" id="112"/>
</topic>
</topic>
<topic position="-290,-37" order="0" text="How to design &amp; implement measures" shape="rounded rectangle" id="6" fontStyle=";;;;;8;;;;">
<topic position="-290,-37" order="0" text="How to design &amp; implement measures" shape="rounded rectangle" id="6">
<note><![CDATA[Understanding how to design the details of a particular measure and how to implement them.]]></note>
<topic position="290,-62" order="0" text="Good practices" shape="rounded rectangle" id="41" bgColor="#feffff"/>
<topic position="380,-37" order="1" text="Diagnostics" shape="rounded rectangle" id="80" bgColor="#feffff">
@ -58,7 +58,7 @@
</topic>
</topic>
</topic>
<topic position="-380,-12" order="1" text="How much effort: where &amp; how" shape="rounded rectangle" id="2" fontStyle=";;;;;8;;;;">
<topic position="-380,-12" order="1" text="How much effort: where &amp; how" shape="rounded rectangle" id="2">
<note><![CDATA[Understanding the level of effort the region needs to take to compete on innovation and where to put this effort]]></note>
<topic position="380,-37" order="0" text="The bottom-line" shape="rounded rectangle" id="3" bgColor="#feffff">
<note><![CDATA[This is what policy makers care about in the end]]></note>
@ -358,7 +358,7 @@
</topic>
</topic>
</topic>
<topic position="-470,13" order="2" text="What to do about existing measures" shape="rounded rectangle" id="4" fontStyle=";;;;;8;;;;">
<topic position="-470,13" order="2" text="What to do about existing measures" shape="rounded rectangle" id="4">
<note><![CDATA[Understanding which measures should be strengthened, dropped or improved, and how.]]></note>
<topic position="470,-37" order="0" text="Demand for measure" shape="rounded rectangle" id="42" bgColor="#feffff">
<topic position="-470,-87" order="0" text="Quality of beneficiaries" shape="line" id="50">
@ -459,7 +459,7 @@ international)
</topic>
</topic>
</topic>
<topic position="-560,38" order="3" text="What investments in innovative projects" shape="rounded rectangle" id="7" fontStyle=";;;;;8;;;;">
<topic position="-560,38" order="3" text="What investments in innovative projects" shape="rounded rectangle" id="7">
<note><![CDATA[Understanding what investments should be made in innovative projects.]]></note>
<topic position="560,13" order="0" text="Competitive niches" shape="rounded rectangle" id="61" bgColor="#feffff">
<topic position="-560,-37" order="0" text="Clusters behavior" shape="line" id="59">
@ -507,7 +507,7 @@ international)
<topic position="-650,26" order="0" text="Private investment in innovation" shape="line" id="68"/>
</topic>
</topic>
<topic position="-650,63" order="4" text="How to improve image" shape="rounded rectangle" id="69" fontStyle=";;;;;8;;;;" bgColor="#e0e5ef">
<topic position="-650,63" order="4" text="How to improve image" shape="rounded rectangle" id="69" bgColor="#e0e5ef">
<topic position="650,38" order="0" text="Rankings" shape="rounded rectangle" id="75" bgColor="#feffff">
<topic position="-650,13" order="0" text="macro indicators" shape="line" id="70"/>
<topic position="-740,38" order="1" text="meso-indicators" shape="line" id="71"/>

View File

@ -1,86 +1,86 @@
<map name="coderToDeveloper" version="tango">
<topic central="true" text="CODER TO DEVELOPER" id="959288270" fontStyle=";;;;;;#000000;;;" bgColor="#ffff66">
<topic position="-200,-250" order="1" text="SOURCE" shape="rounded rectangle" id="1341324870" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="200,-400" order="0" shape="rectangle" id="1657607465" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic central="true" text="CODER TO DEVELOPER" id="959288270" bgColor="#ffff66">
<topic position="-200,-250" order="1" text="SOURCE" shape="rounded rectangle" id="1341324870" bgColor="#ffff66">
<topic position="200,-400" order="0" shape="rectangle" id="1657607465" bgColor="#99ff99">
<text><![CDATA[Coder To Developer: Tools and
Strategies for Delivering Your Software]]></text>
</topic>
<topic position="290,-362" order="0" text="Mike Gunderloy" shape="rectangle" id="749024001" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="380,-337" order="1" text="Sybex 2004" shape="rectangle" id="1525405344" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="470,-312" order="2" text="ISBN: 0-7821-4327-X" shape="rectangle" id="1588889674" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="560,-287" order="3" text="See" shape="rectangle" id="1232674158" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-560,-299" order="0" text="www.codertodeveloper.com" shape="rectangle" id="668549681" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="290,-362" order="0" text="Mike Gunderloy" shape="rectangle" id="749024001" bgColor="#99ff99"/>
<topic position="380,-337" order="1" text="Sybex 2004" shape="rectangle" id="1525405344" bgColor="#99ff99"/>
<topic position="470,-312" order="2" text="ISBN: 0-7821-4327-X" shape="rectangle" id="1588889674" bgColor="#99ff99"/>
<topic position="560,-287" order="3" text="See" shape="rectangle" id="1232674158" bgColor="#99ff99">
<topic position="-560,-299" order="0" text="www.codertodeveloper.com" shape="rectangle" id="668549681" bgColor="#bbffff">
<link url="http://www.codertodeveloper.com/" urlType="url"/>
</topic>
</topic>
<topic position="650,-262" order="4" text="Purchasing" shape="rectangle" id="1091969083" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-650,-274" order="0" text="www.sybex.com" shape="rectangle" id="1166338554" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="650,-262" order="4" text="Purchasing" shape="rectangle" id="1091969083" bgColor="#99ff99">
<topic position="-650,-274" order="0" text="www.sybex.com" shape="rectangle" id="1166338554" bgColor="#bbffff">
<link url="http://www.sybex.com/WileyCDA/SybexTitle/productCd-078214327X,navId-290545.html" urlType="url"/>
</topic>
</topic>
<topic position="740,-237" order="5" text="Sample App" shape="rectangle" id="917174317" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-740,-249" order="0" text="Code" shape="rectangle" id="1435167239" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="740,-274" order="0" text="www.codertodeveloper.com" shape="rounded rectangle" id="215997653" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="830,-249" order="1" text="www.sybex.com" shape="rounded rectangle" id="1718130091" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="740,-237" order="5" text="Sample App" shape="rectangle" id="917174317" bgColor="#99ff99">
<topic position="-740,-249" order="0" text="Code" shape="rectangle" id="1435167239" bgColor="#bbffff">
<topic position="740,-274" order="0" text="www.codertodeveloper.com" shape="rounded rectangle" id="215997653" bgColor="#ddddff"/>
<topic position="830,-249" order="1" text="www.sybex.com" shape="rounded rectangle" id="1718130091" bgColor="#ddddff">
<link url="http://www.sybex.com/WileyCDA/SybexTitle/productCd-078214327X,navId-290545,pageCd-resources.html" urlType="url"/>
</topic>
</topic>
</topic>
<topic position="830,-212" order="6" text="Links" shape="rectangle" id="597614255" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-830,-237" order="0" text="From Book" shape="rectangle" id="589116686" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-920,-212" order="1" text="www.codertodeveloper.com" shape="rectangle" id="1420184717" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="830,-212" order="6" text="Links" shape="rectangle" id="597614255" bgColor="#99ff99">
<topic position="-830,-237" order="0" text="From Book" shape="rectangle" id="589116686" bgColor="#bbffff"/>
<topic position="-920,-212" order="1" text="www.codertodeveloper.com" shape="rectangle" id="1420184717" bgColor="#bbffff">
<link url="http://www.codertodeveloper.com/resource_list.htm" urlType="url"/>
</topic>
</topic>
<topic position="920,-187" order="7" text="Tools" shape="rectangle" id="1905535002" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-920,-199" order="0" text="www.larkware.com" shape="rectangle" id="1613874812" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="920,-187" order="7" text="Tools" shape="rectangle" id="1905535002" bgColor="#99ff99">
<topic position="-920,-199" order="0" text="www.larkware.com" shape="rectangle" id="1613874812" bgColor="#bbffff">
<link url="http://www.larkware.com/" urlType="url"/>
</topic>
</topic>
</topic>
<topic position="-290,-75" order="0" text="PLANNING" shape="rounded rectangle" id="1" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-290,-75" order="0" text="PLANNING" shape="rounded rectangle" id="1" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/9/92/CToD_Planning.mm&amp;mm_title=Coder%20To%20Developer%3A%20Planning" urlType="url"/>
</topic>
<topic position="-380,-50" order="1" text="ORGANIZING" shape="rounded rectangle" id="1060251300" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-380,-50" order="1" text="ORGANIZING" shape="rounded rectangle" id="1060251300" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/4/48/CToD_Organizing.mm&amp;mm_title=Coder%20To%20Developer%3A%20Organizing" urlType="url"/>
</topic>
<topic position="-470,-25" order="2" text="SOURCE CODE CONTROL" shape="rounded rectangle" id="1158389225" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-470,-25" order="2" text="SOURCE CODE CONTROL" shape="rounded rectangle" id="1158389225" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/a/a2/CToD_SourceCodeControl.mm&amp;mm_title=Coder%20To%20Developer%3A%20Source%20Code%20Control" urlType="url"/>
</topic>
<topic position="-560,0" order="3" text="DEFENSIVE CODING" shape="rounded rectangle" id="1155248709" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-560,0" order="3" text="DEFENSIVE CODING" shape="rounded rectangle" id="1155248709" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/7/71/CToD_DefensiveCoding.mm&amp;mm_title=Coder%20To%20Developer%3A%20Defensive%20Coding" urlType="url"/>
</topic>
<topic position="-650,25" order="4" text="UNIT TESTING" shape="rounded rectangle" id="1933919293" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-650,25" order="4" text="UNIT TESTING" shape="rounded rectangle" id="1933919293" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/4/4b/CToD_UnitTest.mm&amp;mm_title=Coder%20To%20Developer%3A%20Unit%20Testing" urlType="url"/>
</topic>
<topic position="-740,0" order="5" text="CUSTOMIZING VISUAL STUDIO" shape="rounded rectangle" id="541948911" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-740,0" order="5" text="CUSTOMIZING VISUAL STUDIO" shape="rounded rectangle" id="541948911" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/5/54/CToD_CustomVisStudio.mm&amp;mm_title=Coder%20To%20Developer%3A%20Customising%20Visual%20Studio" urlType="url"/>
</topic>
<topic position="-830,25" order="6" text="SOURCE CODE" shape="rounded rectangle" id="1350092286" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-830,25" order="6" text="SOURCE CODE" shape="rounded rectangle" id="1350092286" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/d/d6/CToD_SourceCode.mm&amp;mm_title=Coder%20To%20Developer%3A%20Source%20Code" urlType="url"/>
</topic>
<topic position="-920,50" order="7" text="CODE GENERATION" shape="rounded rectangle" id="1754489817" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-920,50" order="7" text="CODE GENERATION" shape="rounded rectangle" id="1754489817" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/0/0c/CToD_CodeGeneration.mm&amp;mm_title=Coder%20To%20Developer%3A%20Code%20Generation" urlType="url"/>
</topic>
<topic position="-1010,75" order="8" text="BUG TRACKING AND FIXING" shape="rounded rectangle" id="755597485" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1010,75" order="8" text="BUG TRACKING AND FIXING" shape="rounded rectangle" id="755597485" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/3/39/CToD_Bugs.mm&amp;mm_title=Coder%20To%20Developer%3A%20Bug%20Tracking%20and%20Fixing" urlType="url"/>
</topic>
<topic position="-1100,100" order="9" text="LOGGING" shape="rounded rectangle" id="53404299" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1100,100" order="9" text="LOGGING" shape="rounded rectangle" id="53404299" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/f/ff/CToD_Logging.mm&amp;mm_title=Coder%20To%20Developer%3A%20Logging" urlType="url"/>
</topic>
<topic position="-1190,125" order="10" text="WORKING IN SMALL TEAMS" shape="rounded rectangle" id="1441208135" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1190,125" order="10" text="WORKING IN SMALL TEAMS" shape="rounded rectangle" id="1441208135" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/7/78/CToD_SmallTeams.mm&amp;mm_title=Coder%20To%20Developer%3A%20Working%20in%20Small%20Teams" urlType="url"/>
</topic>
<topic position="-1280,150" order="11" text="DOCUMENTATION" shape="rounded rectangle" id="1087671931" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1280,150" order="11" text="DOCUMENTATION" shape="rounded rectangle" id="1087671931" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/c/ca/CToD_Docs.mm&amp;mm_title=Coder%20To%20Developer%3A%20Documentation" urlType="url"/>
</topic>
<topic position="-1370,175" order="12" text="BUILDING PROJECTS" shape="rounded rectangle" id="1197890915" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1370,175" order="12" text="BUILDING PROJECTS" shape="rounded rectangle" id="1197890915" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/0/05/CToD_Building.mm&amp;mm_title=Coder%20To%20Developer%3A%20Building%20Projects" urlType="url"/>
</topic>
<topic position="-1460,200" order="13" text="INTELLECTUAL PROPERTY" shape="rounded rectangle" id="1185268713" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1460,200" order="13" text="INTELLECTUAL PROPERTY" shape="rounded rectangle" id="1185268713" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/0/01/CToD_IP.mm&amp;mm_title=Coder%20To%20Developer%3A%20Intellectual%20Property" urlType="url"/>
</topic>
<topic position="-1550,225" order="14" text="DEPLOYING PROJECTS" shape="rounded rectangle" id="54793383" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1550,225" order="14" text="DEPLOYING PROJECTS" shape="rounded rectangle" id="54793383" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/a/a1/CToD_Deploying.mm&amp;mm_title=Coder%20To%20Developer%3A%20Deploying%20Projects" urlType="url"/>
</topic>
</topic>

View File

@ -1,21 +1,21 @@
<map name="complex" version="tango">
<topic central="true" text="PPM Plan" id="1">
<topic position="200,-300" order="0" text="Business Development " shape="line" id="4" fontStyle=";;;;;8;;;;"/>
<topic position="-290,-87" order="0" text="Backlog Management" shape="line" id="18" fontStyle=";;;;;8;;;;">
<topic position="200,-300" order="0" text="Business Development " shape="line" id="4"/>
<topic position="-290,-87" order="0" text="Backlog Management" shape="line" id="18">
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit" urlType="url"/>
</topic>
<topic position="-380,-37" order="1" text="Freeform IT" shape="line" id="10" fontStyle=";;;;;8;;;;"/>
<topic position="-470,-12" order="2" text="Client Project Management" shape="line" id="204" fontStyle=";;;;;8;;;;"/>
<topic position="-560,13" order="3" text="Governance &amp; Executive" shape="line" id="206" fontStyle=";;;;;8;;;;"/>
<topic position="-650,13" order="4" text="Finance" shape="line" id="5" fontStyle=";;;;;8;;;;"/>
<topic position="-740,38" order="5" text="Administration" shape="line" id="3" fontStyle=";;;;;8;;;;"/>
<topic position="-830,63" order="6" text="Human Resources" shape="line" id="154" fontStyle=";;;;;8;;;;">
<topic position="-380,-37" order="1" text="Freeform IT" shape="line" id="10"/>
<topic position="-470,-12" order="2" text="Client Project Management" shape="line" id="204"/>
<topic position="-560,13" order="3" text="Governance &amp; Executive" shape="line" id="206"/>
<topic position="-650,13" order="4" text="Finance" shape="line" id="5"/>
<topic position="-740,38" order="5" text="Administration" shape="line" id="3"/>
<topic position="-830,63" order="6" text="Human Resources" shape="line" id="154">
<note><![CDATA[HR Vision: Freeform Solutions is successful at its mission, sustainable as an organization AND is a great place to work.
HR Mission: To provide a positive HR service experience for applicants and employees, and collaborate with departments to recruit, develop, support, and retain diverse and talented employees who are the key to Freeforms reputation and success.]]></note>
</topic>
<topic position="-920,113" order="7" text="Freeform Hosting" shape="line" id="16" fontStyle=";;;;;8;;;;"/>
<topic position="-1010,113" order="8" text="Community Outreach" shape="line" id="247" fontStyle=";;;;;8;;;;"/>
<topic position="-1100,138" order="9" text="R&amp;D" shape="line" id="261" fontStyle=";;;;;8;;;;">
<topic position="-920,113" order="7" text="Freeform Hosting" shape="line" id="16"/>
<topic position="-1010,113" order="8" text="Community Outreach" shape="line" id="247"/>
<topic position="-1100,138" order="9" text="R&amp;D" shape="line" id="261">
<topic position="1100,113" order="0" text="Goals" shape="line" id="263"/>
<topic position="1190,138" order="1" text="Formulize" shape="line" id="264"/>
</topic>

View File

@ -1,12 +1,12 @@
<map name="emptyNodes" version="tango">
<topic central="true" id="0" fontStyle=";;;;;;#0000cc;;;" bgColor="#ffcc33">
<topic position="200,-50" order="0" text="objectifs journée" shape="rounded rectangle" id="1" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
<topic position="200,-100" order="0" text="&quot;business plan&quot; associatif ?" shape="rounded rectangle" id="2" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080"/>
<topic position="-290,-87" order="0" text="modèle / activités responsabilités" shape="rounded rectangle" id="3" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080"/>
<topic position="-380,-62" order="1" text="articulations / LOG" shape="rounded rectangle" id="4" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080"/>
<topic central="true" id="0" bgColor="#ffcc33">
<topic position="200,-50" order="0" text="objectifs journée" shape="rounded rectangle" id="1" bgColor="#808080">
<topic position="200,-100" order="0" text="&quot;business plan&quot; associatif ?" shape="rounded rectangle" id="2" bgColor="#808080"/>
<topic position="-290,-87" order="0" text="modèle / activités responsabilités" shape="rounded rectangle" id="3" bgColor="#808080"/>
<topic position="-380,-62" order="1" text="articulations / LOG" shape="rounded rectangle" id="4" bgColor="#808080"/>
</topic>
<topic position="-290,-25" order="0" text="SWOT" shape="rounded rectangle" id="5" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
<topic position="290,-50" order="0" shape="rounded rectangle" id="6" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
<topic position="-290,-25" order="0" text="SWOT" shape="rounded rectangle" id="5" bgColor="#808080">
<topic position="290,-50" order="0" shape="rounded rectangle" id="6" bgColor="#808080">
<topic position="-290,-437" order="0" text="l'entreprise a aujourd'hui un potentiel important" shape="line" id="7">
<topic position="290,-474" order="0" text="compétences professionnel" shape="line" id="8"/>
<topic position="380,-449" order="1" text="citoyen" shape="line" id="9"/>
@ -50,7 +50,7 @@
<topic position="-2900,288" order="29" text="attirer de nouveaux membres locomotives" shape="line" id="44"/>
<topic position="-2990,313" order="30" text="pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve" shape="line" id="45"/>
</topic>
<topic position="380,-25" order="1" text="Risques : cauchemars, dangers" shape="rounded rectangle" id="46" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
<topic position="380,-25" order="1" text="Risques : cauchemars, dangers" shape="rounded rectangle" id="46" bgColor="#808080">
<topic position="-380,-312" order="0" text="disparition des forces vives, départ de membres actuels" shape="line" id="47"/>
<topic position="-470,-287" order="1" text="opportunités atteignables mais difficile" shape="line" id="48"/>
<topic position="-560,-262" order="2" text="difficultés de travailler ensemble dans la durée" shape="line" id="49"/>

View File

@ -55,7 +55,7 @@ tb.]]></text>
<note><![CDATA[Falar que isso corrobora nossa sugestão de utilizar poucas medidas, mas que elas sejam confiáveis.]]></note>
</topic>
</topic>
<topic position="-290,-12" order="0" text="Chazdon 2010. Biotropica. 42(1): 3140" shape="rectangle" id="17" fontStyle=";;;;;;#000000;;;" bgColor="#cccccc">
<topic position="-290,-12" order="0" text="Chazdon 2010. Biotropica. 42(1): 3140" shape="rectangle" id="17" bgColor="#cccccc">
<topic position="290,-137" order="0" shape="line" id="22">
<text><![CDATA[Here, we develop a new approach that links functional attributes
of tree species with studies of forest recovery and regional
@ -134,7 +134,7 @@ construir classificações mais detalhadas e com mais dados confiáveis.
J. Integr. Plant Biol. 50: 547558.]]></text>
</topic>
</topic>
<topic position="-380,0" order="1" text="Poorter 1999. Functional Ecology. 13:396-410" shape="rectangle" id="2" fontStyle=";;;;;;#000000;;;" bgColor="#cccccc">
<topic position="-380,0" order="1" text="Poorter 1999. Functional Ecology. 13:396-410" shape="rectangle" id="2" bgColor="#cccccc">
<topic position="380,-12" order="0" text="Espécies pioneiras crescem mais rápido do que as não pioneiras" shape="line" id="3">
<topic position="-380,-24" order="0" text="Tolerância a sombra está relacionada com persistência e não com crescimento" shape="line" id="4"/>
</topic>

View File

@ -1,48 +1,48 @@
<map name="freeMind_resources" version="tango">
<topic central="true" text="FreeMind Resources" id="1330730879" fontStyle=";;;;;;#000000;;;">
<topic position="200,-100" order="0" text="Application" shape="line" id="906353570" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="200,-50" order="0" text="What is it?" shape="line" id="293234618" fontStyle=";;;;SansSerif;8;#00b439;italic;;" bgColor="undefined">
<topic position="200,-50" order="0" text="A Freeware (as in free beer) Mindmapping tool coded in Java" shape="line" id="666230517" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-290,-75" order="0" text="Expects Java 1.4 or above on client machine" shape="line" id="339571721" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic central="true" text="FreeMind Resources" id="1330730879">
<topic position="200,-100" order="0" text="Application" shape="line" id="906353570" bgColor="undefined">
<topic position="200,-50" order="0" text="What is it?" shape="line" id="293234618" bgColor="undefined">
<topic position="200,-50" order="0" text="A Freeware (as in free beer) Mindmapping tool coded in Java" shape="line" id="666230517"/>
<topic position="-290,-75" order="0" text="Expects Java 1.4 or above on client machine" shape="line" id="339571721"/>
</topic>
<topic position="-290,-125" order="0" text="How to do?" shape="line" id="39960632" fontStyle=";;;;SansSerif;8;#00b439;italic;;" bgColor="undefined">
<topic position="290,-162" order="0" text="Install it" shape="line" id="904501221" fontStyle=";;;;SansSerif;8;#990000;italic;;">
<topic position="-290,-212" order="0" text="Links" shape="line" id="1911559485" fontStyle=";;;;;;#111111;;;">
<topic position="290,-237" order="0" text="Download the Java Runtime Environment (at least J2RE1.4)" shape="line" id="1031016126" fontStyle=";;;;SansSerif;8;#111111;;;" bgColor="undefined">
<topic position="-290,-125" order="0" text="How to do?" shape="line" id="39960632" bgColor="undefined">
<topic position="290,-162" order="0" text="Install it" shape="line" id="904501221">
<topic position="-290,-212" order="0" text="Links" shape="line" id="1911559485">
<topic position="290,-237" order="0" text="Download the Java Runtime Environment (at least J2RE1.4)" shape="line" id="1031016126" bgColor="undefined">
<link url="http://java.sun.com/j2se" urlType="url"/>
</topic>
<topic position="380,-212" order="1" text="Download the Application" shape="line" id="1612101865" fontStyle=";;;;SansSerif;8;#111111;;;" bgColor="undefined">
<topic position="380,-212" order="1" text="Download the Application" shape="line" id="1612101865" bgColor="undefined">
<link url="http://freemind.sourceforge.net/wiki/index.php/Main_Page#Download_and_install" urlType="url"/>
</topic>
</topic>
<topic position="-380,-187" order="1" shape="line" id="139664576" fontStyle=";;;;;;#111111;;;">
<topic position="-380,-187" order="1" shape="line" id="139664576">
<text><![CDATA[To install FreeMind on Microsoft Windows, install Java from Sun and install FreeMind using FreeMind
installer.]]></text>
</topic>
<topic position="-470,-162" order="2" shape="line" id="1380352758" fontStyle=";;;;;;#111111;;;">
<topic position="-470,-162" order="2" shape="line" id="1380352758">
<text><![CDATA[To install FreeMind on Linux, download Java Runtime Environment and FreeMind application itself.
First install Java, then unpack FreeMind. To run FreeMind, execute
freemind.sh.]]></text>
</topic>
<topic position="-560,-137" order="3" shape="line" id="1808511462" fontStyle=";;;;;;#111111;;;">
<topic position="-560,-137" order="3" shape="line" id="1808511462">
<text><![CDATA[On Microsoft Windows and Mac OS X, you can also simply double click the file freemind.jar located at
the folder lib to run
FreeMind.]]></text>
</topic>
</topic>
<topic position="380,-137" order="1" text="Use it - tutorials" shape="line" id="1" fontStyle=";;;;SansSerif;8;#990000;italic;;">
<topic position="-380,-174" order="0" text="Main Page for FreeMind" shape="line" id="135530020" fontStyle=";;;;;;#111111;;;">
<topic position="380,-137" order="1" text="Use it - tutorials" shape="line" id="1">
<topic position="-380,-174" order="0" text="Main Page for FreeMind" shape="line" id="135530020">
<link url="http://freemind.sourceforge.net/wiki/index.php/Main_Page" urlType="url"/>
</topic>
<topic position="-470,-149" order="1" text="Tutorial effort" shape="line" id="1407703455" fontStyle=";;;;;;#111111;;;">
<topic position="-470,-149" order="1" text="Tutorial effort" shape="line" id="1407703455">
<link url="http://freemind.sourceforge.net/wiki/index.php/Tutorial_effort" urlType="url"/>
</topic>
<topic position="-560,-124" order="2" text="Download chm help file" shape="line" id="291899850" fontStyle=";;;;;;#111111;;;">
<topic position="-560,-124" order="2" text="Download chm help file" shape="line" id="291899850">
<link url="http://members.bellatlantic.net/~vze297k6/freemind/FreemindHelp.zip" urlType="url"/>
</topic>
</topic>
<topic position="470,-112" order="2" text="Got Questions - Forums" shape="line" id="918892336" fontStyle=";;;;SansSerif;8;#990000;italic;;">
<topic position="-470,-149" order="0" text="FAQ" shape="line" id="757376175" fontStyle=";;;;;;#111111;;;">
<topic position="470,-112" order="2" text="Got Questions - Forums" shape="line" id="918892336">
<topic position="-470,-149" order="0" text="FAQ" shape="line" id="757376175">
<link url="http://freemind.sourceforge.net/wiki/index.php/Asked_Questions" urlType="url"/>
<note><![CDATA[Here we collect a list of asked questions and answers
@ -54,45 +54,45 @@ an answer to your question, why don't you just press
Ctrl + F in your browser?]]></note>
</topic>
<topic position="-560,-124" order="1" text="Essays" shape="line" id="457044449" fontStyle=";;;;;;#111111;;;">
<topic position="-560,-124" order="1" text="Essays" shape="line" id="457044449">
<link url="http://freemind.sourceforge.net/wiki/index.php/Essays" urlType="url"/>
</topic>
<topic position="-650,-99" order="2" text="Open Discussion" shape="line" id="1611374194" fontStyle=";;;;;;#111111;;;">
<topic position="-650,-99" order="2" text="Open Discussion" shape="line" id="1611374194">
<link url="http://sourceforge.net/forum/forum.php?forum_id=22101" urlType="url"/>
<note><![CDATA[notes for ehqoei hoi poi joij  joi oi o oipc coimcojoij0dijo;i jd  di doi oid podidpoi podij aoi jpoij poij aoij oij oij oij oij doid jfoij oifj ofij fojf oifj oifjdofi f jfoidf jothe rain in spanin stays mainly]]></note>
</topic>
</topic>
</topic>
</topic>
<topic position="-290,-37" order="0" text="Applet Browser" shape="line" id="1647062097" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="290,-62" order="0" text="What is it?" shape="rounded rectangle" id="287577997" fontStyle=";;;;SansSerif;8;#00b439;italic;;" bgColor="undefined">
<topic position="-290,-87" order="0" text="A Java applet based browser " shape="line" id="1855944960" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-380,-62" order="1" text="Expects Java 1.4 or above on client machine" shape="line" id="300344325" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-290,-37" order="0" text="Applet Browser" shape="line" id="1647062097" bgColor="undefined">
<topic position="290,-62" order="0" text="What is it?" shape="rounded rectangle" id="287577997" bgColor="undefined">
<topic position="-290,-87" order="0" text="A Java applet based browser " shape="line" id="1855944960"/>
<topic position="-380,-62" order="1" text="Expects Java 1.4 or above on client machine" shape="line" id="300344325"/>
</topic>
<topic position="380,-37" order="1" text="How to do?" shape="line" shrink="true" id="1254385465" fontStyle=";;;;SansSerif;8;#00b439;italic;;" bgColor="undefined">
<topic position="-380,-62" order="0" text="See examples" shape="line" id="1491154453" fontStyle=";;;;SansSerif;8;#990000;italic;;">
<topic position="380,-87" order="0" text="Public Maps" shape="line" id="1082166644" fontStyle=";;;;;;#111111;;;">
<topic position="380,-37" order="1" text="How to do?" shape="line" shrink="true" id="1254385465" bgColor="undefined">
<topic position="-380,-62" order="0" text="See examples" shape="line" id="1491154453">
<topic position="380,-87" order="0" text="Public Maps" shape="line" id="1082166644">
<link url="http://freemind.sourceforge.net/PublicMaps.html" urlType="url"/>
<note><![CDATA[Early example of Map (from SF Site)]]></note>
</topic>
<topic position="470,-62" order="1" text="Reagle's Map of Reading Materials" shape="line" id="738085540" fontStyle=";;;;;;#111111;;;">
<topic position="470,-62" order="1" text="Reagle's Map of Reading Materials" shape="line" id="738085540">
<link url="http://reagle.org/joseph/2003/freemindbrowser.html" urlType="url"/>
<note><![CDATA[Multi level Mindmap set of personal reading material covering a variety of topics (useful in itself).]]></note>
</topic>
</topic>
<topic position="-470,-37" order="1" text="Use it" shape="line" id="1088353959" fontStyle=";;;;SansSerif;8;#990000;italic;;">
<topic position="470,-49" order="0" text="Installing FreeMind applet at your web site" shape="line" shrink="true" id="1525986009" fontStyle=";;;;;;#111111;;;">
<topic position="-470,-99" order="0" text="You can install the applet at your website so that other users can browse your mind maps." shape="line" id="1369857212" fontStyle=";;;;Dialog;8;#111111;;;"/>
<topic position="-560,-74" order="1" text="Download the applet, that is freemind-browser." shape="line" id="372008388" fontStyle=";;;;;;#111111;;;">
<topic position="-470,-37" order="1" text="Use it" shape="line" id="1088353959">
<topic position="470,-49" order="0" text="Installing FreeMind applet at your web site" shape="line" shrink="true" id="1525986009">
<topic position="-470,-99" order="0" text="You can install the applet at your website so that other users can browse your mind maps." shape="line" id="1369857212"/>
<topic position="-560,-74" order="1" text="Download the applet, that is freemind-browser." shape="line" id="372008388">
<link url="http://sourceforge.net/project/showfiles.php?group_id=7118" urlType="url"/>
</topic>
<topic position="-650,-49" order="2" shape="line" id="1459732301" fontStyle=";;;;;;#111111;;;">
<topic position="-650,-49" order="2" shape="line" id="1459732301">
<text><![CDATA[The downloaded archive contains freemindbrowser.jar and freemindbrowser.html. Create a link from
your page to freemindbrowser.html. In freemindbrowser.html change the path inside so that it points
to your mind
map.]]></text>
</topic>
<topic position="-740,-24" order="3" shape="line" id="240467473" fontStyle=";;;;;;#111111;;;">
<topic position="-740,-24" order="3" shape="line" id="240467473">
<text><![CDATA[Applet's jar file must be located at the same server as the map itself, for java security reasons.
You have to upload the FreeMind applet jar file and your mind map file to your web
site.]]></text>
@ -101,41 +101,41 @@ site.]]></text>
</topic>
</topic>
</topic>
<topic position="-380,-12" order="1" text="Flash Browser" shape="line" id="866838286" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="380,-37" order="0" text="What is it?" shape="line" id="1079211058" fontStyle=";;;;SansSerif;8;#00b439;italic;;" bgColor="undefined">
<topic position="-380,-74" order="0" text="A browser which uses Shockwave Flash" shape="line" id="1719479201" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-470,-49" order="1" text="Does not require Java 1.4 or above on client machine" shape="line" id="838930706" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-560,-24" order="2" text="Expects Flash Player on client machine" shape="line" id="961870575" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="560,-49" order="0" text="Will work with Flash Player 7" shape="line" id="942059368" fontStyle=";;;;;;#111111;;;"/>
<topic position="650,-24" order="1" text="Recommend Flash Player 8" shape="line" id="913615141" fontStyle=";;;;;;#111111;;;"/>
<topic position="-380,-12" order="1" text="Flash Browser" shape="line" id="866838286" bgColor="undefined">
<topic position="380,-37" order="0" text="What is it?" shape="line" id="1079211058" bgColor="undefined">
<topic position="-380,-74" order="0" text="A browser which uses Shockwave Flash" shape="line" id="1719479201"/>
<topic position="-470,-49" order="1" text="Does not require Java 1.4 or above on client machine" shape="line" id="838930706"/>
<topic position="-560,-24" order="2" text="Expects Flash Player on client machine" shape="line" id="961870575">
<topic position="560,-49" order="0" text="Will work with Flash Player 7" shape="line" id="942059368"/>
<topic position="650,-24" order="1" text="Recommend Flash Player 8" shape="line" id="913615141"/>
</topic>
</topic>
<topic position="470,-12" order="1" text="How to do?" shape="line" id="1824115095" fontStyle=";;;;SansSerif;8;#00b439;italic;;" bgColor="undefined">
<topic position="-470,-37" order="0" text="See examples" shape="line" id="1242194014" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="470,-62" order="0" text="Hardware Support for Linux" shape="line" id="1249980290" fontStyle=";;;;;;#111111;;;">
<topic position="470,-12" order="1" text="How to do?" shape="line" id="1824115095" bgColor="undefined">
<topic position="-470,-37" order="0" text="See examples" shape="line" id="1242194014">
<topic position="470,-62" order="0" text="Hardware Support for Linux" shape="line" id="1249980290">
<link url="http://eric.lavar.de/comp/linux/hw/" urlType="url"/>
</topic>
<topic position="560,-37" order="1" text="Discover" shape="line" id="1089287828" fontStyle=";;;;;;#111111;;;">
<topic position="560,-37" order="1" text="Discover" shape="line" id="1089287828">
<link url="http://www.alaskagold.com/mindmap/mindmaps.html" urlType="url"/>
<note><![CDATA[Good example for "What is it?"
and "How to do?" structure.]]></note>
</topic>
</topic>
<topic position="-560,-12" order="1" text="Use it - tutorials" shape="line" id="605423288" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="560,-37" order="0" text="Installing FreeMind Flash Browser on you web site" shape="line" id="535820358" fontStyle=";;;;;;#111111;;;">
<topic position="-560,-74" order="0" text="You can install the flash files at your website so that other users can browse your mind maps" shape="line" id="1790672015" fontStyle=";;;;;;#111111;;;"/>
<topic position="-650,-49" order="1" text="Download the file pack via this link" shape="line" id="1737732360" fontStyle=";;;;;;#111111;;;">
<topic position="-560,-12" order="1" text="Use it - tutorials" shape="line" id="605423288">
<topic position="560,-37" order="0" text="Installing FreeMind Flash Browser on you web site" shape="line" id="535820358">
<topic position="-560,-74" order="0" text="You can install the flash files at your website so that other users can browse your mind maps" shape="line" id="1790672015"/>
<topic position="-650,-49" order="1" text="Download the file pack via this link" shape="line" id="1737732360">
<link url="http://www.efectokiwano.net/mm/" urlType="url"/>
</topic>
<topic position="-740,-24" order="2" shape="line" id="119084350" fontStyle=";;;;;;#111111;;;">
<topic position="-740,-24" order="2" shape="line" id="119084350">
<text><![CDATA[The downloaded archive contains visorFreemind.swf, flashobject.js and mindmaps.html.
Edit mindmap.html to point to your mm file and create a link from your page to this file. Flash
enabled browsers will then open the file for
browsing.]]></text>
</topic>
</topic>
<topic position="650,-12" order="1" text="Include map in Powerpoint as Flash image" shape="line" id="753859789" fontStyle=";;;;;;#111111;;;">
<topic position="650,-12" order="1" text="Include map in Powerpoint as Flash image" shape="line" id="753859789">
<link url="http://sourceforge.net/forum/forum.php?thread_id=1388840&amp;forum_id=22101" urlType="url"/>
</topic>
</topic>

View File

@ -1,50 +1,50 @@
<map name="issue" version="tango">
<topic central="true" text="La computadora" id="1" fontStyle=";;;;;;#feffff;;;" bgColor="#cc0000">
<topic position="200,0" order="0" shape="rounded rectangle" id="21" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
<topic central="true" text="La computadora" id="1" bgColor="#cc0000">
<topic position="200,0" order="0" shape="rounded rectangle" id="21" bgColor="#4c1130">
<text><![CDATA[Hardware
(componentes físicos)]]></text>
<topic position="200,-100" order="0" text="Entrada de datos" shape="rounded rectangle" id="25" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
<topic position="200,0" order="0" shape="rounded rectangle" id="28" fontStyle=";;;;;8;#000000;;;" bgColor="#4c1130">
<topic position="200,-100" order="0" text="Entrada de datos" shape="rounded rectangle" id="25" bgColor="#4c1130">
<topic position="200,0" order="0" shape="rounded rectangle" id="28" bgColor="#4c1130">
<text><![CDATA[Ratón, Teclado, Joystick,
Cámara digital, Micrófono, Escáner.]]></text>
</topic>
</topic>
<topic position="-290,-37" order="0" text="Salida de datos" shape="rounded rectangle" id="29" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
<topic position="290,-49" order="0" text="Monitor, Impresora, Bocinas, Plóter." shape="rounded rectangle" id="30" fontStyle=";;;;;8;#000000;;;" bgColor="#4c1130"/>
<topic position="-290,-37" order="0" text="Salida de datos" shape="rounded rectangle" id="29" bgColor="#4c1130">
<topic position="290,-49" order="0" text="Monitor, Impresora, Bocinas, Plóter." shape="rounded rectangle" id="30" bgColor="#4c1130"/>
</topic>
<topic position="-380,-12" order="1" text="Almacenamiento" shape="rounded rectangle" id="31" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
<topic position="380,-24" order="0" shape="rounded rectangle" id="32" fontStyle=";;;;;8;#000000;;;" bgColor="#4c1130">
<topic position="-380,-12" order="1" text="Almacenamiento" shape="rounded rectangle" id="31" bgColor="#4c1130">
<topic position="380,-24" order="0" shape="rounded rectangle" id="32" bgColor="#4c1130">
<text><![CDATA[Disquete, Disco compacto, DVD,
BD, Disco duro, Memoria flash.]]></text>
</topic>
</topic>
</topic>
<topic position="-290,-25" order="0" shape="rectangle" id="59" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000">
<topic position="-290,-25" order="0" shape="rectangle" id="59" bgColor="#7f6000">
<text><![CDATA[Software
(Programas y datos con los que funciona la computadora)]]></text>
<topic position="290,-62" order="0" shape="rectangle" id="92" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000">
<topic position="290,-62" order="0" shape="rectangle" id="92" bgColor="#7f6000">
<text><![CDATA[Software de Sistema:Permite el entendimiento
entre el usuario y la maquina.]]></text>
<topic position="-290,-99" order="0" text="Microsoft Windows" shape="rectangle" id="101" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
<topic position="-380,-74" order="1" text="GNU/LINUX" shape="rectangle" id="106" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
<topic position="-470,-49" order="2" text="MAC " shape="rectangle" id="107" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
<topic position="-290,-99" order="0" text="Microsoft Windows" shape="rectangle" id="101" bgColor="#7f6000"/>
<topic position="-380,-74" order="1" text="GNU/LINUX" shape="rectangle" id="106" bgColor="#7f6000"/>
<topic position="-470,-49" order="2" text="MAC " shape="rectangle" id="107" bgColor="#7f6000"/>
</topic>
<topic position="380,-37" order="1" shape="rectangle" id="93" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000">
<topic position="380,-37" order="1" shape="rectangle" id="93" bgColor="#7f6000">
<text><![CDATA[Software de Aplicación: Permite hacer hojas de
calculo navegar en internet, base de datos, etc.]]></text>
<topic position="-380,-87" order="0" text="Office" shape="rectangle" id="108" fontStyle=";;;;;8;#000000;;;" bgColor="#783f04"/>
<topic position="-470,-62" order="1" text="Libre Office" shape="rectangle" id="109" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
<topic position="-560,-37" order="2" text="Navegadores" shape="rectangle" id="110" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
<topic position="-650,-12" order="3" text="Msn" shape="rectangle" id="111" fontStyle=";;;;;8;#000000;;;" bgColor="#783f04"/>
<topic position="-380,-87" order="0" text="Office" shape="rectangle" id="108" bgColor="#783f04"/>
<topic position="-470,-62" order="1" text="Libre Office" shape="rectangle" id="109" bgColor="#7f6000"/>
<topic position="-560,-37" order="2" text="Navegadores" shape="rectangle" id="110" bgColor="#7f6000"/>
<topic position="-650,-12" order="3" text="Msn" shape="rectangle" id="111" bgColor="#783f04"/>
</topic>
<topic position="470,-12" order="2" text="Software de Desarrollo" shape="rectangle" id="94" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
<topic position="470,-12" order="2" text="Software de Desarrollo" shape="rectangle" id="94" bgColor="#7f6000"/>
</topic>
<topic position="-380,0" order="1" text="Tipos de computadora" shape="rounded rectangle" id="3" fontStyle=";;;;;8;;;;">
<topic position="380,-62" order="0" text="Computadora personal de escritorio o Desktop" shape="rounded rectangle" id="8" fontStyle=";;;;;8;;;;"/>
<topic position="470,-37" order="1" text="PDA" shape="rounded rectangle" id="10" fontStyle=";;;;;8;;;;"/>
<topic position="560,-12" order="2" text="Laptop" shape="rounded rectangle" id="11" fontStyle=";;;;;8;;;;"/>
<topic position="650,13" order="3" text="Servidor" shape="rounded rectangle" id="12" fontStyle=";;;;;8;;;;"/>
<topic position="740,38" order="4" text="Tablet PC" shape="rounded rectangle" id="13" fontStyle=";;;;;8;;;;"/>
<topic position="-380,0" order="1" text="Tipos de computadora" shape="rounded rectangle" id="3">
<topic position="380,-62" order="0" text="Computadora personal de escritorio o Desktop" shape="rounded rectangle" id="8"/>
<topic position="470,-37" order="1" text="PDA" shape="rounded rectangle" id="10"/>
<topic position="560,-12" order="2" text="Laptop" shape="rounded rectangle" id="11"/>
<topic position="650,13" order="3" text="Servidor" shape="rounded rectangle" id="12"/>
<topic position="740,38" order="4" text="Tablet PC" shape="rounded rectangle" id="13"/>
</topic>
</topic>
</map>

View File

@ -1,3 +1,3 @@
<map name="npe" version="tango">
<topic central="true" text="NIF (NORMAS DE INFORMACIÓN FINANCIERA)" id="1" fontStyle=";;;;;;#741b47;;;" bgColor="#d5a6bd"/>
<topic central="true" text="NIF (NORMAS DE INFORMACIÓN FINANCIERA)" id="1" bgColor="#d5a6bd"/>
</map>

View File

@ -1,189 +1,189 @@
<map name="python" version="tango">
<topic central="true" text="Python Language" id="839220195" fontStyle=";;;;;;#000000;;;" bgColor="#ffff66">
<topic position="200,-900" order="0" text="Operators" shape="rounded rectangle" id="1297750582" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic central="true" text="Python Language" id="839220195" bgColor="#ffff66">
<topic position="200,-900" order="0" text="Operators" shape="rounded rectangle" id="1297750582" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=1&amp;initLoadFile=/wiki/images/5/5a/Python_Operators.mm&amp;mm_title=Python%20Operators" urlType="url"/>
</topic>
<topic position="-290,-237" order="0" text="Control Flow" shape="rounded rectangle" id="925623560" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-290,-237" order="0" text="Control Flow" shape="rounded rectangle" id="925623560" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/d/d3/Python_ControlFlow2.mm&amp;mm_title=Control%20Flow%20in%20Python" urlType="url"/>
</topic>
<topic position="-380,-212" order="1" text="Functions" shape="rounded rectangle" id="43284047" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-380,-212" order="1" text="Functions" shape="rounded rectangle" id="43284047" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/3/36/Python_Functions2.mm&amp;mm_title=Python%20Functions" urlType="url"/>
</topic>
<topic position="-470,-187" order="2" text="Modules" shape="rounded rectangle" id="941305946" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-470,-187" order="2" text="Modules" shape="rounded rectangle" id="941305946" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/9/9f/Python_Modules_WebLinks.mm&amp;mm_title=Python%20Modules" urlType="url"/>
<topic position="470,-199" order="0" text="Importing" shape="rectangle" id="33365258" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="470,-199" order="0" text="Importing" shape="rectangle" id="33365258" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/a/a7/Python_Modules_Importing.mm&amp;mm_title=Importing%20Python%20Modules" urlType="url"/>
</topic>
</topic>
<topic position="-560,-162" order="3" text="sys.path" shape="rounded rectangle" id="870573867" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-560,-162" order="3" text="sys.path" shape="rounded rectangle" id="870573867" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/e/e3/Python_Path2.mm&amp;mm_title=Python%20sys.path" urlType="url"/>
</topic>
<topic position="-650,-137" order="4" text="Packages" shape="rounded rectangle" id="373733403" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-650,-137" order="4" text="Packages" shape="rounded rectangle" id="373733403" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/e/e9/Python_Packages2.mm&amp;mm_title=Python%20Packages" urlType="url"/>
</topic>
<topic position="-740,-112" order="5" text="Classes" shape="rounded rectangle" id="42563653" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-740,-112" order="5" text="Classes" shape="rounded rectangle" id="42563653" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/6/67/Python_Classes_WebLinks.mm&amp;mm_title=Python%20Classes" urlType="url"/>
<topic position="740,-162" order="0" text="Methods" shape="rounded rectangle" id="248209168" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="740,-162" order="0" text="Methods" shape="rounded rectangle" id="248209168" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/8/89/Python_Classes_Methods.mm&amp;mm_title=Python%20Methods" urlType="url"/>
</topic>
<topic position="830,-137" order="1" text="Inheritance" shape="rounded rectangle" id="162137343" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="830,-137" order="1" text="Inheritance" shape="rounded rectangle" id="162137343" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/4/46/Python_Classes_Inheritance.mm&amp;mm_title=Inheritance%20in%20Python" urlType="url"/>
</topic>
<topic position="920,-112" order="2" text="Attribute Inheritance Search" shape="rounded rectangle" id="314760601" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="920,-112" order="2" text="Attribute Inheritance Search" shape="rounded rectangle" id="314760601" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/4/46/Python_Classes_Inheritance.mm&amp;mm_title=Inheritance%20in%20Python" urlType="url"/>
</topic>
<topic position="1010,-87" order="3" text="New-style Classes" shape="rectangle" id="1014089682" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="1010,-87" order="3" text="New-style Classes" shape="rectangle" id="1014089682" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/e/ef/Python_Classes_Newstyle.mm&amp;mm_title=Python%20New-style%20Classes" urlType="url"/>
</topic>
</topic>
<topic position="-830,-87" order="6" text="Scoping, Namespaces" shape="rounded rectangle" id="137608830" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-830,-87" order="6" text="Scoping, Namespaces" shape="rounded rectangle" id="137608830" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/7/74/Python_Scoping_And_Namespaces2.mm&amp;mm_title=Python%20Scoping%20and%20Namespaces" urlType="url"/>
</topic>
<topic position="-920,-62" order="7" text="Exceptions" shape="rounded rectangle" id="50696333" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-920,-62" order="7" text="Exceptions" shape="rounded rectangle" id="50696333" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=1&amp;initLoadFile=/wiki/images/1/1a/Python_Exceptions2.mm&amp;mm_title=Python%20Exceptions%20and%20Exception%20Handling" urlType="url"/>
</topic>
<topic position="-1010,-37" order="8" text="Iterators and Generators" shape="rounded rectangle" id="1500711771" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1010,-37" order="8" text="Iterators and Generators" shape="rounded rectangle" id="1500711771" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/8/8f/Python_Iterators.mm&amp;mm_title=Python%20Iterators%2C%20Generators%20and%20Generator%20Expressions" urlType="url"/>
</topic>
<topic position="-1100,-12" order="9" text="Special Method Attributes" shape="rounded rectangle" id="1259199925" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1100,-12" order="9" text="Special Method Attributes" shape="rounded rectangle" id="1259199925" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/5/5c/Python_SpecialAttributes_WebLinks.mm&amp;mm_title=Special%20Attributes%20in%20Python" urlType="url"/>
</topic>
<topic position="-1190,13" order="10" text="File System Useful Functions" shape="rounded rectangle" id="1694945670" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1190,13" order="10" text="File System Useful Functions" shape="rounded rectangle" id="1694945670" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/a/a8/Python_FileSystem.mm&amp;mm_title=Useful%20Python%20Functions%20for%20Operating%20on%20the%20File%20System" urlType="url"/>
</topic>
<topic position="-1280,38" order="11" text="File I/O" shape="rounded rectangle" id="1195661090" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1280,38" order="11" text="File I/O" shape="rounded rectangle" id="1195661090" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/2/24/Python_FileIO2.mm&amp;mm_title=Python%20File%20IO" urlType="url"/>
</topic>
<topic position="-1370,63" order="12" text="Data Serialization" shape="rounded rectangle" id="602160149" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1370,63" order="12" text="Data Serialization" shape="rounded rectangle" id="602160149" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/1/17/Python_DataSerialization2.mm&amp;mm_title=Python%20Data%20Serialization" urlType="url"/>
</topic>
<topic position="-1460,88" order="13" text="Delegation, Callbacks and Decorators" shape="rounded rectangle" id="1935675521" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1460,88" order="13" text="Delegation, Callbacks and Decorators" shape="rounded rectangle" id="1935675521" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/1/10/Python_Delegation.mm&amp;mm_title=Python%20Delegation%2C%20Callbacks%20and%20Decorators" urlType="url"/>
</topic>
<topic position="-1550,113" order="14" text="Regular Expressions" shape="rounded rectangle" id="710876781" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1550,113" order="14" text="Regular Expressions" shape="rounded rectangle" id="710876781" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/7/7f/Python_RegularExpressions.mm&amp;mm_title=Python%20Regular%20Expressions" urlType="url"/>
</topic>
<topic position="-1640,138" order="15" text="Windows, COM" shape="rounded rectangle" id="950644393" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="1640,113" order="0" text="Python COM Server" shape="rectangle" id="611860677" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-1640,138" order="15" text="Windows, COM" shape="rounded rectangle" id="950644393" bgColor="#ffff66">
<topic position="1640,113" order="0" text="Python COM Server" shape="rectangle" id="611860677" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/4/45/Python_COMServer.mm&amp;mm_title=Python%20COM%20Server%20%28Windows%20Only%29" urlType="url"/>
</topic>
<topic position="1730,138" order="1" text="Python Client-side COM" shape="rectangle" id="1212768514" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="1730,138" order="1" text="Python Client-side COM" shape="rectangle" id="1212768514" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/f/f3/Python_COMClientSide.mm&amp;mm_title=Python%20Client-side%20COM%20%28Windows%20Only%29" urlType="url"/>
</topic>
</topic>
<topic position="-1730,163" order="16" text="Miscellaneous" shape="rounded rectangle" id="410804486" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="1730,113" order="0" text="Empty Placeholder" shape="rounded rectangle" shrink="true" id="216222883" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-1730,101" order="0" text="pass" shape="rectangle" shrink="true" id="960362756" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#bbffff">
<topic position="1730,76" order="0" text="EG" shape="rectangle" shrink="true" id="1413300827" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-1730,64" order="0" shape="line" id="343426327" fontStyle=";;;;;;#000000;;;">
<topic position="-1730,163" order="16" text="Miscellaneous" shape="rounded rectangle" id="410804486" bgColor="#ffff66">
<topic position="1730,113" order="0" text="Empty Placeholder" shape="rounded rectangle" shrink="true" id="216222883" bgColor="#99ff99">
<topic position="-1730,101" order="0" text="pass" shape="rectangle" shrink="true" id="960362756" bgColor="#bbffff">
<topic position="1730,76" order="0" text="EG" shape="rectangle" shrink="true" id="1413300827" bgColor="#ddddff">
<topic position="-1730,64" order="0" shape="line" id="343426327">
<text><![CDATA[while x < a:
pass]]></text>
</topic>
</topic>
<topic position="1820,101" order="1" text="Useful" shape="rectangle" shrink="true" id="148179241" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-1820,89" order="0" text="Stub Code" shape="line" shrink="true" id="1655738492" fontStyle=";;;;;;#000000;;;">
<topic position="1820,77" order="0" text="To Fill In Later" shape="line" id="722854259" fontStyle=";;;;;;#000000;;;"/>
<topic position="1820,101" order="1" text="Useful" shape="rectangle" shrink="true" id="148179241" bgColor="#ddddff">
<topic position="-1820,89" order="0" text="Stub Code" shape="line" shrink="true" id="1655738492">
<topic position="1820,77" order="0" text="To Fill In Later" shape="line" id="722854259"/>
</topic>
</topic>
</topic>
</topic>
<topic position="1820,138" order="1" text="Future Language Features" shape="rectangle" shrink="true" id="284656157" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-1820,101" order="0" text="__future__ Module" shape="rectangle" id="1074301759" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-1910,126" order="1" text="Will Become" shape="rectangle" shrink="true" id="1968353063" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="1910,114" order="0" text="Standard" shape="rectangle" shrink="true" id="103089226" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-1910,102" order="0" text="In" shape="line" shrink="true" id="1232954476" fontStyle=";;;;;;#000000;;;">
<topic position="1820,138" order="1" text="Future Language Features" shape="rectangle" shrink="true" id="284656157" bgColor="#99ff99">
<topic position="-1820,101" order="0" text="__future__ Module" shape="rectangle" id="1074301759" bgColor="#bbffff"/>
<topic position="-1910,126" order="1" text="Will Become" shape="rectangle" shrink="true" id="1968353063" bgColor="#bbffff">
<topic position="1910,114" order="0" text="Standard" shape="rectangle" shrink="true" id="103089226" bgColor="#ddddff">
<topic position="-1910,102" order="0" text="In" shape="line" shrink="true" id="1232954476">
<topic position="1910,90" order="0" text="Future Edition" shape="line" shrink="true" id="636908811">
<topic position="-1910,78" order="0" text="Python" shape="line" id="1862127571"/>
</topic>
</topic>
</topic>
</topic>
<topic position="-2000,151" order="2" text="from __future__ import &lt;feature name&gt;" shape="rectangle" id="1192405210" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2000,151" order="2" text="from __future__ import &lt;feature name&gt;" shape="rectangle" id="1192405210" bgColor="#bbffff"/>
</topic>
<topic position="1910,163" order="2" text="Executing Code Strings" shape="rounded rectangle" shrink="true" id="171652609" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-1910,151" order="0" text="exec" shape="rectangle" id="493710140" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#bbffff"/>
<topic position="1910,163" order="2" text="Executing Code Strings" shape="rounded rectangle" shrink="true" id="171652609" bgColor="#99ff99">
<topic position="-1910,151" order="0" text="exec" shape="rectangle" id="493710140" bgColor="#bbffff"/>
</topic>
<topic position="2000,188" order="3" text="Printing" shape="rectangle" id="1061642683" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="2000,188" order="3" text="Printing" shape="rectangle" id="1061642683" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/7/78/Python_Print.mm&amp;mm_title=Printing%20in%20Python" urlType="url"/>
</topic>
</topic>
<topic position="-1820,188" order="17" text="Tools" shape="rounded rectangle" id="339808348" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-1820,188" order="17" text="Tools" shape="rounded rectangle" id="339808348" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/5/58/Python_Tools.mm&amp;mm_title=Useful%20Tools%20for%20Python%20Developers" urlType="url"/>
</topic>
<topic position="-1910,300" order="18" text="Sources" shape="rounded rectangle" id="1418013461" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="1910,263" order="0" text="The Quick Python Book" shape="rectangle" shrink="true" id="826312042" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-1910,188" order="0" text="Harms, Daryl D." shape="rounded rectangle" id="1996207289" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2000,213" order="1" text="McDonald, Kenneth" shape="rounded rectangle" id="383517101" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2090,238" order="2" text="Manning Publications Co." shape="rounded rectangle" id="1698437504" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2180,263" order="3" text="1999" shape="rounded rectangle" id="615897615" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2270,288" order="4" text="ISBN 1-884777-74-0" shape="rounded rectangle" id="723474810" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2360,313" order="5" text="Python Version" shape="rounded rectangle" shrink="true" id="1103530142" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2360,301" order="0" text="1.5.2" shape="rounded rectangle" id="180808477" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="-1910,300" order="18" text="Sources" shape="rounded rectangle" id="1418013461" bgColor="#ffff66">
<topic position="1910,263" order="0" text="The Quick Python Book" shape="rectangle" shrink="true" id="826312042" bgColor="#99ff99">
<topic position="-1910,188" order="0" text="Harms, Daryl D." shape="rounded rectangle" id="1996207289" bgColor="#bbffff"/>
<topic position="-2000,213" order="1" text="McDonald, Kenneth" shape="rounded rectangle" id="383517101" bgColor="#bbffff"/>
<topic position="-2090,238" order="2" text="Manning Publications Co." shape="rounded rectangle" id="1698437504" bgColor="#bbffff"/>
<topic position="-2180,263" order="3" text="1999" shape="rounded rectangle" id="615897615" bgColor="#bbffff"/>
<topic position="-2270,288" order="4" text="ISBN 1-884777-74-0" shape="rounded rectangle" id="723474810" bgColor="#bbffff"/>
<topic position="-2360,313" order="5" text="Python Version" shape="rounded rectangle" shrink="true" id="1103530142" bgColor="#bbffff">
<topic position="2360,301" order="0" text="1.5.2" shape="rounded rectangle" id="180808477" bgColor="#ddddff"/>
</topic>
</topic>
<topic position="2000,288" order="1" text="Learning Python, 3rd Edition" shape="rectangle" shrink="true" id="589134829" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2000,226" order="0" text="Lutz, Mark" shape="rectangle" id="1822890051" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2090,251" order="1" text="O'Reilly Media" shape="rectangle" id="568361499" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2180,276" order="2" text="2008" shape="rectangle" id="1839765866" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2270,301" order="3" text="ISBN-10: 0-596-51398-4" shape="rectangle" id="844895767" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="-2360,326" order="4" text="Python Version" shape="rectangle" shrink="true" id="619327232" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2360,314" order="0" text="2.5" shape="rectangle" id="803477492" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="2000,288" order="1" text="Learning Python, 3rd Edition" shape="rectangle" shrink="true" id="589134829" bgColor="#99ff99">
<topic position="-2000,226" order="0" text="Lutz, Mark" shape="rectangle" id="1822890051" bgColor="#bbffff"/>
<topic position="-2090,251" order="1" text="O'Reilly Media" shape="rectangle" id="568361499" bgColor="#bbffff"/>
<topic position="-2180,276" order="2" text="2008" shape="rectangle" id="1839765866" bgColor="#bbffff"/>
<topic position="-2270,301" order="3" text="ISBN-10: 0-596-51398-4" shape="rectangle" id="844895767" bgColor="#bbffff"/>
<topic position="-2360,326" order="4" text="Python Version" shape="rectangle" shrink="true" id="619327232" bgColor="#bbffff">
<topic position="2360,314" order="0" text="2.5" shape="rectangle" id="803477492" bgColor="#ddddff"/>
</topic>
</topic>
<topic position="2090,313" order="2" text="Python Library Reference" shape="rectangle" shrink="true" id="216007275" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2090,301" order="0" text="Python Version" shape="rounded rectangle" shrink="true" id="846688505" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2090,289" order="0" text="2.5" shape="rounded rectangle" id="1966201406" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="2090,313" order="2" text="Python Library Reference" shape="rectangle" shrink="true" id="216007275" bgColor="#99ff99">
<topic position="-2090,301" order="0" text="Python Version" shape="rounded rectangle" shrink="true" id="846688505" bgColor="#bbffff">
<topic position="2090,289" order="0" text="2.5" shape="rounded rectangle" id="1966201406" bgColor="#ddddff"/>
</topic>
</topic>
</topic>
<topic position="-2000,325" order="19" text="Good References" shape="rounded rectangle" id="408691934" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="2000,288" order="0" text="Python 2.5 Quick Reference" shape="rectangle" id="1159506227" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2000,325" order="19" text="Good References" shape="rounded rectangle" id="408691934" bgColor="#ffff66">
<topic position="2000,288" order="0" text="Python 2.5 Quick Reference" shape="rectangle" id="1159506227" bgColor="#99ff99">
<link url="http://rgruet.free.fr/PQR25/PQR2.5.html" urlType="url"/>
</topic>
<topic position="2090,313" order="1" text="Python Library Reference" shape="rectangle" id="403604653" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="2090,313" order="1" text="Python Library Reference" shape="rectangle" id="403604653" bgColor="#99ff99">
<link url="http://www.python.org/doc/current/lib/" urlType="url"/>
</topic>
<topic position="2180,338" order="2" text="Tutorial" shape="rectangle" shrink="true" id="1090520692" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2180,326" order="0" text="Dive Into Python" shape="rectangle" shrink="true" id="1535875895" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2180,338" order="2" text="Tutorial" shape="rectangle" shrink="true" id="1090520692" bgColor="#99ff99">
<topic position="-2180,326" order="0" text="Dive Into Python" shape="rectangle" shrink="true" id="1535875895" bgColor="#bbffff">
<link url="http://diveintopython.org/toc/index.html" urlType="url"/>
<topic position="2180,314" order="0" text="eBook" shape="rectangle" id="530171131" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="2180,314" order="0" text="eBook" shape="rectangle" id="530171131" bgColor="#ddddff"/>
</topic>
</topic>
</topic>
<topic position="-2090,350" order="20" text="Good For" shape="rounded rectangle" id="1119763140" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="2090,275" order="0" text="Internal Logic" shape="rounded rectangle" id="1033376248" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="2180,300" order="1" text="Serialization" shape="rounded rectangle" shrink="true" id="690803073" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2180,275" order="0" text="Via" shape="rectangle" shrink="true" id="1922775420" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2180,263" order="0" text="cPickle" shape="rounded rectangle" id="840960577" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="-2090,350" order="20" text="Good For" shape="rounded rectangle" id="1119763140" bgColor="#ffff66">
<topic position="2090,275" order="0" text="Internal Logic" shape="rounded rectangle" id="1033376248" bgColor="#99ff99"/>
<topic position="2180,300" order="1" text="Serialization" shape="rounded rectangle" shrink="true" id="690803073" bgColor="#99ff99">
<topic position="-2180,275" order="0" text="Via" shape="rectangle" shrink="true" id="1922775420" bgColor="#bbffff">
<topic position="2180,263" order="0" text="cPickle" shape="rounded rectangle" id="840960577" bgColor="#ddddff"/>
</topic>
<topic position="-2270,300" order="1" text="For" shape="rectangle" shrink="true" id="1747246492" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2270,288" order="0" text="Object" shape="rounded rectangle" shrink="true" id="1134905437" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2270,263" order="0" text="Storage" shape="line" id="1461256366" fontStyle=";;;;;;#000000;;;"/>
<topic position="-2360,288" order="1" text="Transmission" shape="line" id="319385397" fontStyle=";;;;;;#000000;;;"/>
<topic position="-2270,300" order="1" text="For" shape="rectangle" shrink="true" id="1747246492" bgColor="#bbffff">
<topic position="2270,288" order="0" text="Object" shape="rounded rectangle" shrink="true" id="1134905437" bgColor="#ddddff">
<topic position="-2270,263" order="0" text="Storage" shape="line" id="1461256366"/>
<topic position="-2360,288" order="1" text="Transmission" shape="line" id="319385397"/>
</topic>
</topic>
</topic>
<topic position="2270,325" order="2" text="Macros" shape="rounded rectangle" id="794590494" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="2360,350" order="3" text="List Manipulation" shape="rounded rectangle" id="1361141366" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="2450,375" order="4" text="Scripting Language" shape="rounded rectangle" shrink="true" id="1265703728" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2450,363" order="0" text="For" shape="rectangle" shrink="true" id="864746490" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2450,351" order="0" text="Applications" shape="rounded rectangle" id="834911546" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="2270,325" order="2" text="Macros" shape="rounded rectangle" id="794590494" bgColor="#99ff99"/>
<topic position="2360,350" order="3" text="List Manipulation" shape="rounded rectangle" id="1361141366" bgColor="#99ff99"/>
<topic position="2450,375" order="4" text="Scripting Language" shape="rounded rectangle" shrink="true" id="1265703728" bgColor="#99ff99">
<topic position="-2450,363" order="0" text="For" shape="rectangle" shrink="true" id="864746490" bgColor="#bbffff">
<topic position="2450,351" order="0" text="Applications" shape="rounded rectangle" id="834911546" bgColor="#ddddff"/>
</topic>
</topic>
<topic position="2540,400" order="5" text="NOT" shape="rounded rectangle" shrink="true" id="478941778" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2540,388" order="0" text="UI" shape="rectangle" id="1073082243" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff"/>
<topic position="2540,400" order="5" text="NOT" shape="rounded rectangle" shrink="true" id="478941778" bgColor="#99ff99">
<topic position="-2540,388" order="0" text="UI" shape="rectangle" id="1073082243" bgColor="#bbffff"/>
</topic>
</topic>
<topic position="-2180,375" order="21" text="Definitions" shape="rounded rectangle" id="1122845804" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="2180,350" order="0" text="Module" shape="rectangle" shrink="true" id="840405826" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2180,325" order="0" text="Text File" shape="rectangle" shrink="true" id="566688799" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2180,313" order="0" text="Containing" shape="rectangle" shrink="true" id="672124937" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2180,301" order="0" text="Python Statements" shape="line" id="1702192141" fontStyle=";;;;;;#000000;;;"/>
<topic position="-2180,375" order="21" text="Definitions" shape="rounded rectangle" id="1122845804" bgColor="#ffff66">
<topic position="2180,350" order="0" text="Module" shape="rectangle" shrink="true" id="840405826" bgColor="#99ff99">
<topic position="-2180,325" order="0" text="Text File" shape="rectangle" shrink="true" id="566688799" bgColor="#bbffff">
<topic position="2180,313" order="0" text="Containing" shape="rectangle" shrink="true" id="672124937" bgColor="#ddddff">
<topic position="-2180,301" order="0" text="Python Statements" shape="line" id="1702192141"/>
</topic>
</topic>
<topic position="-2270,350" order="1" text=".py Extension" shape="rectangle" shrink="true" id="390798590" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2270,338" order="0" text="Allows" shape="rectangle" shrink="true" id="335165396" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2270,326" order="0" text="Importing" shape="line" shrink="true" id="1607129465" fontStyle=";;;;;;#000000;;;">
<topic position="-2270,350" order="1" text=".py Extension" shape="rectangle" shrink="true" id="390798590" bgColor="#bbffff">
<topic position="2270,338" order="0" text="Allows" shape="rectangle" shrink="true" id="335165396" bgColor="#ddddff">
<topic position="-2270,326" order="0" text="Importing" shape="line" shrink="true" id="1607129465">
<topic position="2270,314" order="0" text="Into" shape="line" shrink="true" id="1403960256">
<topic position="-2270,302" order="0" text="Other" shape="line" shrink="true" id="113989320">
<topic position="2270,290" order="0" text="Python" shape="line" shrink="true" id="311927148">
@ -195,89 +195,89 @@
</topic>
</topic>
</topic>
<topic position="2270,375" order="1" text="Script" shape="rectangle" shrink="true" id="395160073" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2270,350" order="0" text="Module" shape="rectangle" shrink="true" id="1329016047" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2270,338" order="0" text="Top-level" shape="rectangle" shrink="true" id="1277010492" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2270,313" order="0" text="With" shape="line" shrink="true" id="1711834777" fontStyle=";;;;;;#000000;;;">
<topic position="2270,301" order="0" text="Entry Point" shape="rectangle" id="1909734320" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff"/>
<topic position="2270,375" order="1" text="Script" shape="rectangle" shrink="true" id="395160073" bgColor="#99ff99">
<topic position="-2270,350" order="0" text="Module" shape="rectangle" shrink="true" id="1329016047" bgColor="#bbffff">
<topic position="2270,338" order="0" text="Top-level" shape="rectangle" shrink="true" id="1277010492" bgColor="#ddddff">
<topic position="-2270,313" order="0" text="With" shape="line" shrink="true" id="1711834777">
<topic position="2270,301" order="0" text="Entry Point" shape="rectangle" id="1909734320" bgColor="#ddddff"/>
</topic>
<topic position="-2360,338" order="1" text="Can Run" shape="line" shrink="true" id="954195369" fontStyle=";;;;;;#000000;;;">
<topic position="-2360,338" order="1" text="Can Run" shape="line" shrink="true" id="954195369">
<topic position="2360,313" order="0" text="Directly" shape="line" id="766218881"/>
<topic position="2450,338" order="1" text="From" shape="rectangle" shrink="true" id="1311896276" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2450,301" order="0" text="Commandline" shape="line" id="732073344" fontStyle=";;;;;;#000000;;;"/>
<topic position="-2540,326" order="1" text="Run Window" shape="line" shrink="true" id="1452833927" fontStyle=";;;;;;#000000;;;">
<topic position="2450,338" order="1" text="From" shape="rectangle" shrink="true" id="1311896276" bgColor="#ddddff">
<topic position="-2450,301" order="0" text="Commandline" shape="line" id="732073344"/>
<topic position="-2540,326" order="1" text="Run Window" shape="line" shrink="true" id="1452833927">
<topic position="2540,314" order="0" text="In" shape="line" shrink="true" id="1357024336">
<topic position="-2540,302" order="0" text="Windows" shape="line" id="1157790742"/>
</topic>
</topic>
<topic position="-2630,351" order="2" text="IDLE" shape="line" id="1185023081" fontStyle=";;;;;;#000000;;;"/>
<topic position="-2630,351" order="2" text="IDLE" shape="line" id="1185023081"/>
</topic>
</topic>
</topic>
</topic>
<topic position="-2360,375" order="1" text="Extension" shape="rectangle" shrink="true" id="1767810300" fontStyle=";;;;;;#000000;;;" bgColor="#bbffff">
<topic position="2360,363" order="0" text="NOT Required" shape="rounded rectangle" shrink="true" id="375617029" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2360,351" order="0" text=".py" shape="line" id="1629169951" fontStyle=";;;;;;#000000;;;"/>
<topic position="-2360,375" order="1" text="Extension" shape="rectangle" shrink="true" id="1767810300" bgColor="#bbffff">
<topic position="2360,363" order="0" text="NOT Required" shape="rounded rectangle" shrink="true" id="375617029" bgColor="#ddddff">
<topic position="-2360,351" order="0" text=".py" shape="line" id="1629169951"/>
</topic>
</topic>
</topic>
</topic>
<topic position="-2270,400" order="22" text="Python Implemenations" shape="rounded rectangle" id="278508781" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2270,400" order="22" text="Python Implemenations" shape="rounded rectangle" id="278508781" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/e/ef/Python_Implementations.mm&amp;mm_title=Different%20Implementations%20of%20Python" urlType="url"/>
</topic>
<topic position="-2360,425" order="23" text="Syntax" shape="rounded rectangle" id="1136447695" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2360,425" order="23" text="Syntax" shape="rounded rectangle" id="1136447695" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/4/4f/Python_Syntax.mm&amp;mm_title=Python%20Syntax" urlType="url"/>
</topic>
<topic position="-2450,450" order="24" text="Executing Python" shape="rounded rectangle" id="332530597" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2450,450" order="24" text="Executing Python" shape="rounded rectangle" id="332530597" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/1/1b/Python_Execution.mm&amp;mm_title=Different%20Ways%20of%20Running%20Python%20Programs" urlType="url"/>
</topic>
<topic position="-2540,475" order="25" text="Getting Informaton" shape="rounded rectangle" id="10" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2540,475" order="25" text="Getting Informaton" shape="rounded rectangle" id="10" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/4/4b/Python_Information.mm&amp;mm_title=How%20to%20Get%20Information%20in%20Python" urlType="url"/>
</topic>
<topic position="-2630,500" order="26" text="Naming Conventions" shape="rounded rectangle" id="1594651750" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2630,500" order="26" text="Naming Conventions" shape="rounded rectangle" id="1594651750" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/2/2f/Python_NamingConventions2.mm&amp;mm_title=Python%20Naming%20Conventions" urlType="url"/>
</topic>
<topic position="-2720,525" order="27" text="Type System" shape="rounded rectangle" id="1547162624" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2720,525" order="27" text="Type System" shape="rounded rectangle" id="1547162624" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/9/95/Python_TypeSystem.mm&amp;mm_title=The%20CPython%20Type%20System" urlType="url"/>
<topic position="2720,513" order="0" text="CPython" shape="rectangle" id="190569951" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99"/>
<topic position="2720,513" order="0" text="CPython" shape="rectangle" id="190569951" bgColor="#99ff99"/>
</topic>
<topic position="-2810,550" order="28" text="Built-in Data Types" shape="rounded rectangle" id="559844936" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2810,550" order="28" text="Built-in Data Types" shape="rounded rectangle" id="559844936" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/b/b0/Python_DataTypes_WebLinks.mm&amp;mm_title=Python%20Data%20Types" urlType="url"/>
<topic position="2810,475" order="0" text="Numeric Types" shape="rounded rectangle" id="154102391" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="2810,475" order="0" text="Numeric Types" shape="rounded rectangle" id="154102391" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/f/fd/Python_DataTypes_Numeric2.mm&amp;mm_title=Python%20Numeric%20Data%20Types" urlType="url"/>
</topic>
<topic position="2900,500" order="1" text="Sequence Types" shape="rounded rectangle" id="918145730" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="2900,500" order="1" text="Sequence Types" shape="rounded rectangle" id="918145730" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/f/f0/Python_DataTypes_Sequence_WebLinks.mm&amp;mm_title=Python%20Sequence%20Data%20Types" urlType="url"/>
<topic position="-2900,475" order="0" text="Mutable" shape="rectangle" id="1578736339" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#bbffff">
<topic position="2900,463" order="0" text="Lists" shape="rounded rectangle" id="1776894225" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ddddff">
<topic position="-2900,475" order="0" text="Mutable" shape="rectangle" id="1578736339" bgColor="#bbffff">
<topic position="2900,463" order="0" text="Lists" shape="rounded rectangle" id="1776894225" bgColor="#ddddff">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/f/f1/Python_DataTypes_Sequence_Lists.mm&amp;mm_title=Python%20List%20Data%20Type" urlType="url"/>
</topic>
</topic>
<topic position="-2990,500" order="1" text="Immutable" shape="rectangle" id="1799786939" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#bbffff">
<topic position="2990,475" order="0" text="Tuples" shape="rectangle" id="1329146055" fontStyle=";;;;;;#000000;;;" bgColor="#ddddff">
<topic position="-2990,500" order="1" text="Immutable" shape="rectangle" id="1799786939" bgColor="#bbffff">
<topic position="2990,475" order="0" text="Tuples" shape="rectangle" id="1329146055" bgColor="#ddddff">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/1/14/Python_DataTypes_Sequence_Tuples.mm&amp;mm_title=Python%20Tuple%20Data%20Type" urlType="url"/>
</topic>
<topic position="3080,500" order="1" text="Strings" shape="rounded rectangle" id="315458704" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ddddff">
<topic position="3080,500" order="1" text="Strings" shape="rounded rectangle" id="315458704" bgColor="#ddddff">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=4&amp;initLoadFile=/wiki/images/3/35/Python_DataTypes_Sequence_Strings.mm&amp;mm_title=Python%20String%20Data%20Type" urlType="url"/>
</topic>
</topic>
</topic>
<topic position="2990,525" order="2" text="Mapping Types" shape="rounded rectangle" id="674126003" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="-2990,513" order="0" text="Dictionary" shape="rounded rectangle" id="1822985067" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#bbffff">
<topic position="2990,525" order="2" text="Mapping Types" shape="rounded rectangle" id="674126003" bgColor="#99ff99">
<topic position="-2990,513" order="0" text="Dictionary" shape="rounded rectangle" id="1822985067" bgColor="#bbffff">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/7/73/Python_DataTypes_Dictionary2.mm&amp;mm_title=Python%20Dictionary%20Data%20Type" urlType="url"/>
</topic>
</topic>
<topic position="3080,550" order="3" text="Set" shape="rounded rectangle" id="617132681" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="3080,550" order="3" text="Set" shape="rounded rectangle" id="617132681" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/a/a9/Python_DataTypes_Sets.mm&amp;mm_title=Python%20Set%20Data%20Type" urlType="url"/>
</topic>
<topic position="3170,575" order="4" text="Bool" shape="rounded rectangle" id="985221708" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="3170,575" order="4" text="Bool" shape="rounded rectangle" id="985221708" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/1/16/Python_DataTypes_Bool2.mm&amp;mm_title=Python%20Boolean%20Data%20Type" urlType="url"/>
</topic>
<topic position="3260,600" order="5" text="Checking" shape="rounded rectangle" id="854059184" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#99ff99">
<topic position="3260,600" order="5" text="Checking" shape="rounded rectangle" id="854059184" bgColor="#99ff99">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=3&amp;initLoadFile=/wiki/images/5/5a/Python_DataTypes_Checking2.mm&amp;mm_title=Checking%20Python%20Data%20Types" urlType="url"/>
</topic>
</topic>
<topic position="-2900,575" order="29" text="Statements" shape="rounded rectangle" id="464774508" fontStyle=";;;;SansSerif;8;#000000;;;" bgColor="#ffff66">
<topic position="-2900,575" order="29" text="Statements" shape="rounded rectangle" id="464774508" bgColor="#ffff66">
<link url="http://freemind.sourceforge.net/wiki/extensions/freemind/flashwindow.php?startCollapsedToLevel=2&amp;initLoadFile=/wiki/images/5/56/Python_Statements.mm&amp;mm_title=Python%20Statements" urlType="url"/>
</topic>
</topic>

View File

@ -1,46 +1,46 @@
<map name="welcome" version="tango">
<topic central="true" text="Welcome To WiseMapping" id="1" fontStyle=";;;;;;#ffffff;;;">
<topic central="true" text="Welcome To WiseMapping" id="1">
<topic position="200,-100" order="0" shape="line" id="30">
<text><![CDATA[5 min tutorial video ?
Follow the link !]]></text>
<link url="https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE" urlType="url"/>
</topic>
<topic position="-290,-50" order="0" text="Try it Now!" shape="line" id="11" fontStyle=";;;;;;#525c61;;;" bgColor="#080559">
<topic position="290,-87" order="0" text="Double Click" shape="line" id="12" fontStyle=";;;;;;#525c61;;;"/>
<topic position="-290,-50" order="0" text="Try it Now!" shape="line" id="11" bgColor="#080559">
<topic position="290,-87" order="0" text="Double Click" shape="line" id="12"/>
<topic position="380,-62" order="1" shape="line" id="13">
<text><![CDATA[Press "enter" to add a
Sibling]]></text>
</topic>
<topic position="470,-37" order="2" text="Drag map to move" shape="line" id="14" fontStyle=";;;;;;#525c61;;;"/>
<topic position="470,-37" order="2" text="Drag map to move" shape="line" id="14"/>
</topic>
<topic position="-380,-12" order="1" text="Features" shape="line" id="15" fontStyle=";;;;;;#525c61;;;">
<topic position="380,-62" order="0" text="Links to Sites" shape="line" id="16" fontStyle=";;;;;8;#525c61;;;">
<topic position="-380,-12" order="1" text="Features" shape="line" id="15">
<topic position="380,-62" order="0" text="Links to Sites" shape="line" id="16">
<link url="http://www.digg.com" urlType="url"/>
</topic>
<topic position="470,-37" order="1" text="Styles" shape="line" id="31">
<topic position="-470,-74" order="0" text="Fonts" shape="line" id="17" fontStyle=";;;;;;#525c61;;;"/>
<topic position="-560,-49" order="1" text="Topic Shapes" shape="line" id="19" fontStyle=";;;;;;#525c61;;;"/>
<topic position="-650,-24" order="2" text="Topic Color" shape="line" id="18" fontStyle=";;;;;;#525c61;;;"/>
<topic position="-470,-74" order="0" text="Fonts" shape="line" id="17"/>
<topic position="-560,-49" order="1" text="Topic Shapes" shape="line" id="19"/>
<topic position="-650,-24" order="2" text="Topic Color" shape="line" id="18"/>
</topic>
<topic position="560,-12" order="2" text="Icons" shape="line" id="20" fontStyle=";;;;;;#525c61;;;"/>
<topic position="650,13" order="3" text="History Changes" shape="line" id="21" fontStyle=";;;;;;#525c61;;;"/>
<topic position="560,-12" order="2" text="Icons" shape="line" id="20"/>
<topic position="650,13" order="3" text="History Changes" shape="line" id="21"/>
</topic>
<topic position="-470,0" order="2" text="Mind Mapping" shape="line" id="6" fontStyle=";;;;;;#525c61;;;">
<topic position="470,-50" order="0" text="Share with Collegues" shape="line" id="7" fontStyle=";;;;;;#525c61;;;"/>
<topic position="560,-25" order="1" text="Online" shape="line" id="8" fontStyle=";;;;;;#525c61;;;"/>
<topic position="650,0" order="2" text="Anyplace, Anytime" shape="line" id="9" fontStyle=";;;;;;#525c61;;;"/>
<topic position="740,25" order="3" text="Free!!!" shape="line" id="10" fontStyle=";;;;;;#525c61;;;"/>
<topic position="-470,0" order="2" text="Mind Mapping" shape="line" id="6">
<topic position="470,-50" order="0" text="Share with Collegues" shape="line" id="7"/>
<topic position="560,-25" order="1" text="Online" shape="line" id="8"/>
<topic position="650,0" order="2" text="Anyplace, Anytime" shape="line" id="9"/>
<topic position="740,25" order="3" text="Free!!!" shape="line" id="10"/>
</topic>
<topic position="-560,38" order="3" text="Productivity" shape="line" id="2" fontStyle=";;;;;;#525c61;;;">
<topic position="560,1" order="0" text="Share your ideas" shape="line" id="3" fontStyle=";;;;;;#525c61;;;"/>
<topic position="650,26" order="1" text="Brainstorming" shape="line" id="4" fontStyle=";;;;;;#525c61;;;"/>
<topic position="740,51" order="2" text="Visual " shape="line" id="5" fontStyle=";;;;;;#525c61;;;"/>
<topic position="-560,38" order="3" text="Productivity" shape="line" id="2">
<topic position="560,1" order="0" text="Share your ideas" shape="line" id="3"/>
<topic position="650,26" order="1" text="Brainstorming" shape="line" id="4"/>
<topic position="740,51" order="2" text="Visual " shape="line" id="5"/>
</topic>
<topic position="-650,50" order="4" text="Install In Your Server" shape="line" id="27" fontStyle=";;;;;;#525c61;;;">
<topic position="650,25" order="0" text="Open Source" shape="line" id="29" fontStyle=";;;;;;#525c61;;;">
<topic position="-650,50" order="4" text="Install In Your Server" shape="line" id="27">
<topic position="650,25" order="0" text="Open Source" shape="line" id="29">
<link url="http://www.wisemapping.org/" urlType="url"/>
</topic>
<topic position="740,50" order="1" text="Download" shape="line" id="28" fontStyle=";;;;;;#525c61;;;">
<topic position="740,50" order="1" text="Download" shape="line" id="28">
<link url="http://www.wisemapping.com/inyourserver.html" urlType="url"/>
</topic>
</topic>

View File

@ -1,20 +1,20 @@
<map name="writing_an_essay_with" version="tango">
<topic central="true" id="704795576" fontStyle=";;;;;;#000000;;;">
<topic central="true" id="704795576">
<text><![CDATA[Writing an Essay
With FreeMind]]></text>
<topic position="200,-200" order="0" text="Getting Started" shape="line" shrink="true" id="60307947" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="200,-150" order="0" shape="line" id="484974719" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="200,-200" order="0" text="Getting Started" shape="line" shrink="true" id="60307947" bgColor="undefined">
<topic position="200,-150" order="0" shape="line" id="484974719" bgColor="undefined">
<text><![CDATA[The first thing you'll want to do is to create a new FreeMind file for your essay. Select File->New
on the menu, and a blank file will appear.
]]></text>
</topic>
<topic position="-290,-250" order="0" shape="line" id="1072554383" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-290,-250" order="0" shape="line" id="1072554383" bgColor="undefined">
<text><![CDATA[Next, click in the centre of the map, and replace the text there with the essay title you have
chosen. It's good to have the question you're answering before you the whole time, so you can
immediately see how your ideas relate to
it.]]></text>
</topic>
<topic position="-380,-225" order="1" shape="line" id="1631286703" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-380,-225" order="1" shape="line" id="1631286703" bgColor="undefined">
<text><![CDATA[<!--
p { margin-top: 0 }
-->
@ -28,145 +28,145 @@ it.]]></text>
(When you're a bit more familiar with FreeMind, you'll find it quicker to use the Shortcut Keys -- you can also use Alt + Shift + Left, or Alt + Shift + Right to move between maps.)]]></text>
</topic>
<topic position="-470,-200" order="2" text="You're now ready to start work on the essay." shape="line" id="538231078" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined"/>
<topic position="-470,-200" order="2" text="You're now ready to start work on the essay." shape="line" id="538231078" bgColor="undefined"/>
</topic>
<topic position="-290,-62" order="0" text="The process of research" shape="line" shrink="true" id="1886958546" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="290,-124" order="0" shape="line" id="499702363" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-290,-62" order="0" text="The process of research" shape="line" shrink="true" id="1886958546" bgColor="undefined">
<topic position="290,-124" order="0" shape="line" id="499702363" bgColor="undefined">
<text><![CDATA[If a question is worth asking at all (and be generous to your teachers, and assume that their
question is!), then it's not going to have the kind of answer that you can just make up on the spot.
It will require
research.]]></text>
</topic>
<topic position="380,-99" order="1" text="Research requires both finding things out about the world, and hard thinking." shape="line" id="1374284784" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined"/>
<topic position="470,-74" order="2" shape="line" id="1038997740" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="380,-99" order="1" text="Research requires both finding things out about the world, and hard thinking." shape="line" id="1374284784" bgColor="undefined"/>
<topic position="470,-74" order="2" shape="line" id="1038997740" bgColor="undefined">
<text><![CDATA[FreeMind helps you with both aspects of research. FreeMind helps you to capture all the new
information you need for your essay, and also to order your
thoughts.]]></text>
</topic>
<topic position="560,-49" order="3" text="FreeMind does this by facilitating:" shape="line" id="1522470300" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-560,-99" order="0" text="Taking Notes" shape="line" id="1963065372" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="560,-49" order="3" text="FreeMind does this by facilitating:" shape="line" id="1522470300" bgColor="undefined">
<topic position="-560,-99" order="0" text="Taking Notes" shape="line" id="1963065372">
<link url="http://#Freemind_Link_513978291" urlType="url"/>
</topic>
<topic position="-650,-74" order="1" text="Brainstorming" shape="line" id="1572116478" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-650,-74" order="1" text="Brainstorming" shape="line" id="1572116478">
<link url="http://#_" urlType="url"/>
</topic>
<topic position="-740,-49" order="2" text="Sifting and Organising Your Ideas" shape="line" id="98667269" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-740,-49" order="2" text="Sifting and Organising Your Ideas" shape="line" id="98667269">
<link url="http://#Freemind_Link_331016293" urlType="url"/>
</topic>
<topic position="-830,-24" order="3" text="Making an outline" shape="line" id="1710214210" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-830,-24" order="3" text="Making an outline" shape="line" id="1710214210">
<link url="http://#Freemind_Link_341601142" urlType="url"/>
</topic>
</topic>
<topic position="650,-24" order="4" text="When you've made your outline you can" shape="line" id="759053646" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-650,-61" order="0" text="Print your map" shape="line" id="996906209" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-740,-36" order="1" text="Export to your wordprocessor" shape="line" id="1501502447" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="650,-24" order="4" text="When you've made your outline you can" shape="line" id="759053646" bgColor="undefined">
<topic position="-650,-61" order="0" text="Print your map" shape="line" id="996906209"/>
<topic position="-740,-36" order="1" text="Export to your wordprocessor" shape="line" id="1501502447">
<link url="http://#Freemind_Link_877777095" urlType="url"/>
</topic>
<topic position="-830,-11" order="2" text="Make a presentation" shape="line" id="1494904283" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-830,-11" order="2" text="Make a presentation" shape="line" id="1494904283">
<link url="http://#Freemind_Link_781772166" urlType="url"/>
</topic>
</topic>
</topic>
<topic position="-380,-37" order="1" text="Planning an Essay" shape="line" shrink="true" id="1034561457" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="380,-87" order="0" text="Brainstorming" shape="line" shrink="true" id="1" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-380,-162" order="0" shape="line" id="1420002558" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-380,-37" order="1" text="Planning an Essay" shape="line" shrink="true" id="1034561457" bgColor="undefined">
<topic position="380,-87" order="0" text="Brainstorming" shape="line" shrink="true" id="1" bgColor="undefined">
<topic position="-380,-162" order="0" shape="line" id="1420002558">
<text><![CDATA[Brainstorming is a way of trying to geting all your ideas about a topic down on paper as quickly as
possible.]]></text>
</topic>
<topic position="-470,-137" order="1" shape="line" id="790677993" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-470,-137" order="1" shape="line" id="790677993">
<text><![CDATA[The key to successful brainstorming is to let everything come out -- don't worry if it sounds goofy
or dumb, just put it down! There'll be plenty of time for editing
later.]]></text>
</topic>
<topic position="-560,-112" order="2" text="To brainstorm with FreeMind, you'll need knowledge of two keys, plus your imagination." shape="line" id="916520369" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-650,-87" order="3" text="Pressing Enter adds another idea at the same level you currently are at." shape="line" id="888234871" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-740,-62" order="4" text="Pressing Insert adds another idea as a subidea of the one you've currently selected." shape="line" id="1371557121" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-830,-37" order="5" text="(The imagination you'll have to supply yourself!)" shape="line" id="443781940" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-560,-112" order="2" text="To brainstorm with FreeMind, you'll need knowledge of two keys, plus your imagination." shape="line" id="916520369"/>
<topic position="-650,-87" order="3" text="Pressing Enter adds another idea at the same level you currently are at." shape="line" id="888234871"/>
<topic position="-740,-62" order="4" text="Pressing Insert adds another idea as a subidea of the one you've currently selected." shape="line" id="1371557121"/>
<topic position="-830,-37" order="5" text="(The imagination you'll have to supply yourself!)" shape="line" id="443781940"/>
</topic>
<topic position="470,-62" order="1" text="Taking Notes" shape="line" shrink="true" id="513978291" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-470,-124" order="0" shape="line" id="709453371" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="470,-62" order="1" text="Taking Notes" shape="line" shrink="true" id="513978291" bgColor="undefined">
<topic position="-470,-124" order="0" shape="line" id="709453371" bgColor="undefined">
<text><![CDATA[Different people take notes in different ways. Whichever way you take notes, you should find
FreeMind
helpful.]]></text>
</topic>
<topic position="-560,-99" order="1" shape="line" id="249608113" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-560,-99" order="1" shape="line" id="249608113" bgColor="undefined">
<text><![CDATA[One good way of using FreeMind is to add one node per book or article you read. Name the node a
short version of the article title.
]]></text>
</topic>
<topic position="-650,-74" order="2" shape="line" shrink="true" id="1470413282" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-650,-74" order="2" shape="line" shrink="true" id="1470413282" bgColor="undefined">
<text><![CDATA[Then add your notes on the article as a node note. To insert a note, go to the View menu, and
select "Show Note Window". You can then add your notes
below.]]></text>
<topic position="650,-86" order="0" shape="line" id="81630074" fontStyle=";;;;SansSerif;8;#111111;;;">
<topic position="650,-86" order="0" shape="line" id="81630074">
<text><![CDATA[The Notes WIndow can get in the way (particularly if you have a small screen). So you may find it
helpful to hide it after you've added your note, by selecting "Show Note Window" again from the
menu.]]></text>
</topic>
</topic>
<topic position="-740,-49" order="3" text="Don't forget to take full references for all the quotations you use. " shape="line" id="1226928695" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined"/>
<topic position="-830,-24" order="4" text="FreeMind can also do some clever things with web links and email addresses." shape="line" shrink="true" id="1195317986" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="830,-86" order="0" shape="line" id="1167090962" fontStyle=";;;;SansSerif;8;#111111;;;">
<topic position="-740,-49" order="3" text="Don't forget to take full references for all the quotations you use. " shape="line" id="1226928695" bgColor="undefined"/>
<topic position="-830,-24" order="4" text="FreeMind can also do some clever things with web links and email addresses." shape="line" shrink="true" id="1195317986" bgColor="undefined">
<topic position="830,-86" order="0" shape="line" id="1167090962">
<text><![CDATA[If you're researching on the web, then FreeMind can automatically link your note to the web page
you're writing about.
]]></text>
</topic>
<topic position="920,-61" order="1" text="Make your note, then select -&gt;Insert-&gt;Hyperlink (Text Field) from the menu. " shape="line" id="1374825576" fontStyle=";;;;SansSerif;8;#111111;;;"/>
<topic position="1010,-36" order="2" text="A dialog box will appear. Type (or cut and paste) the web address ino the box, and select OK." shape="line" id="1842548545" fontStyle=";;;;SansSerif;8;#111111;;;">
<topic position="-1010,-48" order="0" text="Here's an example hyperlink!" shape="line" id="201175194" fontStyle=";;;;SansSerif;8;#111111;;;">
<topic position="920,-61" order="1" text="Make your note, then select -&gt;Insert-&gt;Hyperlink (Text Field) from the menu. " shape="line" id="1374825576"/>
<topic position="1010,-36" order="2" text="A dialog box will appear. Type (or cut and paste) the web address ino the box, and select OK." shape="line" id="1842548545">
<topic position="-1010,-48" order="0" text="Here's an example hyperlink!" shape="line" id="201175194">
<link url="http://members.tripod.com/~lklivingston/essay/" urlType="url"/>
</topic>
</topic>
<topic position="1100,-11" order="3" shape="line" id="1508333448" fontStyle=";;;;SansSerif;8;#111111;;;">
<topic position="1100,-11" order="3" shape="line" id="1508333448">
<text><![CDATA[You can also make links to files on your own computer. To do this select ->Insert->Hyperlink (File
Chooser) from the
menu.]]></text>
</topic>
<topic position="1190,14" order="4" shape="line" id="899556633" fontStyle=";;;;SansSerif;8;#111111;;;">
<topic position="1190,14" order="4" shape="line" id="899556633">
<text><![CDATA[To link a node to an email address, select ->Insert->Hyperink (Text Field) from the menu. Type
"mailto: " plus the person's email
address.]]></text>
<topic position="-1190,2" order="0" text="Here's an example email address!" shape="line" id="433629028" fontStyle=";;;;;;#111111;;;">
<topic position="-1190,2" order="0" text="Here's an example email address!" shape="line" id="433629028">
<link url="http://mailto:%20president@whitehouse.gov" urlType="mail"/>
</topic>
</topic>
</topic>
</topic>
<topic position="560,-37" order="2" text="Sifting and organising your ideas" shape="line" shrink="true" id="331016293" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-560,-124" order="0" shape="line" id="136989740" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="560,-37" order="2" text="Sifting and organising your ideas" shape="line" shrink="true" id="331016293" bgColor="undefined">
<topic position="-560,-124" order="0" shape="line" id="136989740">
<text><![CDATA[After you've done a bit of brainstorming, and have written all the ideas you can think of, it's time
to start sorting your ideas
out.]]></text>
</topic>
<topic position="-650,-99" order="1" shape="line" id="294466318" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-650,-99" order="1" shape="line" id="294466318">
<text><![CDATA[You may well find that you've surprised yourself in the brainstorming process, and that you've come
up with ideas that you didn't think you believed. Well done if you've managed to surprise
yourself!]]></text>
</topic>
<topic position="-740,-74" order="2" shape="line" id="847367743" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-740,-74" order="2" shape="line" id="847367743">
<text><![CDATA[The next thing to do is to take a step back and just look at the different ideas you've come up
with. What central themes do you notice? Which ideas seem to be more fundamental, and which less
important?]]></text>
</topic>
<topic position="-830,-49" order="3" shape="line" id="550806254" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-830,-49" order="3" shape="line" id="550806254">
<text><![CDATA[After you've looked at your map for a bit, it's time to start rearranging your ideas. You can either
rearrage your ideas by dragging and dropping them, or with the cursor keys. (CTRL + UP and CTRL DOWN
move an idea up or down; CTRL LEFT and CTRL RIGHT move it left or right)
]]></text>
</topic>
<topic position="-920,-24" order="4" shape="line" shrink="true" id="992055866" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-920,-24" order="4" shape="line" shrink="true" id="992055866">
<text><![CDATA[The first think to do is to move all the ideas together that seem to belong together. Are there
duplications? Could some ideas usefully be combined? Could some ideas be usefully
split?]]></text>
<topic position="920,-36" order="0" text="To split an idea, select it, type backspace (the editor appears), then select &quot;split&quot; and then okay." shape="line" id="72639222" fontStyle=";;;;;;#111111;;;"/>
<topic position="920,-36" order="0" text="To split an idea, select it, type backspace (the editor appears), then select &quot;split&quot; and then okay." shape="line" id="72639222"/>
</topic>
<topic position="-1010,1" order="5" shape="line" id="337591176" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-1010,1" order="5" shape="line" id="337591176">
<text><![CDATA[You should carry on sifting and organising till you feel that you know what the main point is that
you want to make in the
essay.]]></text>
<note><![CDATA[You should also make sure that the main point you're making in the essay provides a full answer to the question you have been asked, or you will probably be marked down for irrelevance.]]></note>
</topic>
<topic position="-1100,26" order="6" shape="line" id="506089558" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-1100,26" order="6" shape="line" id="506089558">
<text><![CDATA[When you've done this, save a NEW copy of your map. We'll use this to make the outline of the
argument for your essay. (It's a good idea to save a copy under a different name before you make
major changes -- this way you can always go back.) To do this, go to File, and then Save As on the
@ -174,172 +174,172 @@ menu, and call the new one it something like "Essay_Outline v1".
]]></text>
</topic>
</topic>
<topic position="650,-12" order="3" text="Outlining" shape="line" shrink="true" id="341601142" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-650,-87" order="0" text="Now you know what your main point is, you can write an outline of the argument of the essay." shape="line" id="190098699" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-740,-62" order="1" text="The point of producing an outline is to work out how you will argue for your essay's main claim." shape="line" id="132833105" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-830,-37" order="2" shape="line" id="1132818589" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="650,-12" order="3" text="Outlining" shape="line" shrink="true" id="341601142" bgColor="undefined">
<topic position="-650,-87" order="0" text="Now you know what your main point is, you can write an outline of the argument of the essay." shape="line" id="190098699"/>
<topic position="-740,-62" order="1" text="The point of producing an outline is to work out how you will argue for your essay's main claim." shape="line" id="132833105"/>
<topic position="-830,-37" order="2" shape="line" id="1132818589">
<text><![CDATA[The first thing to do is to change the text of the central node to your main claim. (Tip: a quick
way to go to the central node is to press
Escape)]]></text>
</topic>
<topic position="-920,-12" order="3" shape="line" shrink="true" id="957387789" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-920,-12" order="3" shape="line" shrink="true" id="957387789">
<text><![CDATA[The next thing to do is to look at the material you've collected, and divide it into the following
categories.]]></text>
<topic position="920,-62" order="0" text="Background material you need to understand the main claim." shape="line" shrink="true" id="1900247400" fontStyle=";;;;;;#111111;;;">
<topic position="-920,-74" order="0" text="This will form your introduction." shape="line" id="1744947976" fontStyle=";;;;;;#111111;;;"/>
<topic position="920,-62" order="0" text="Background material you need to understand the main claim." shape="line" shrink="true" id="1900247400">
<topic position="-920,-74" order="0" text="This will form your introduction." shape="line" id="1744947976"/>
</topic>
<topic position="1010,-37" order="1" text="Reasons in favour of the main claim." shape="line" shrink="true" id="451169520" fontStyle=";;;;;;#111111;;;">
<topic position="-1010,-49" order="0" text="These will form the core of your agrument." shape="line" id="1096832797" fontStyle=";;;;;;#111111;;;"/>
<topic position="1010,-37" order="1" text="Reasons in favour of the main claim." shape="line" shrink="true" id="451169520">
<topic position="-1010,-49" order="0" text="These will form the core of your agrument." shape="line" id="1096832797"/>
</topic>
<topic position="1100,-12" order="2" text="Reasons against the main claim." shape="line" shrink="true" id="1736271122" fontStyle=";;;;;;#111111;;;">
<topic position="-1100,-24" order="0" text="These are objections you will need to take into account." shape="line" id="31771772" fontStyle=";;;;;;#111111;;;"/>
<topic position="1100,-12" order="2" text="Reasons against the main claim." shape="line" shrink="true" id="1736271122">
<topic position="-1100,-24" order="0" text="These are objections you will need to take into account." shape="line" id="31771772"/>
</topic>
<topic position="1190,13" order="3" text="Things which are irrelevant to whether or not the main claim is true." shape="line" shrink="true" id="76447184" fontStyle=";;;;;;#111111;;;">
<topic position="-1190,1" order="0" text="You should cut these to a separate file." shape="line" id="672473407" fontStyle=";;;;;;#111111;;;">
<topic position="1190,13" order="3" text="Things which are irrelevant to whether or not the main claim is true." shape="line" shrink="true" id="76447184">
<topic position="-1190,1" order="0" text="You should cut these to a separate file." shape="line" id="672473407">
<note><![CDATA[I usually keep a separate mind map for this. It's psychologically easier to put your discarded ideas somewhere else, rather than to delete them entirely. And if you've saved them elsewhere, you can easily reincorporate them if you decide that they were relevant after all.]]></note>
</topic>
</topic>
</topic>
<topic position="-1010,13" order="4" text="You should end up with something like this:" shape="line" shrink="true" id="1271984552" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="1010,1" order="0" text="Open source software is superior to closed source software." shape="line" id="1710771587" fontStyle=";;;;;;#111111;;;">
<topic position="-1010,-36" order="0" text="Introductory material" shape="line" shrink="true" id="871646595" fontStyle=";;;;;;#111111;;;">
<topic position="1010,-73" order="0" text="Define Open Source" shape="line" id="1320166635" fontStyle=";;;;;;#111111;;;"/>
<topic position="1100,-48" order="1" text="Define Closed Source." shape="line" id="779634578" fontStyle=";;;;;;#111111;;;"/>
<topic position="1190,-23" order="2" text="Brief History of Linux, and of Free Software Foundation" shape="line" id="803540039" fontStyle=";;;;;;#111111;;;"/>
<topic position="-1010,13" order="4" text="You should end up with something like this:" shape="line" shrink="true" id="1271984552">
<topic position="1010,1" order="0" text="Open source software is superior to closed source software." shape="line" id="1710771587">
<topic position="-1010,-36" order="0" text="Introductory material" shape="line" shrink="true" id="871646595">
<topic position="1010,-73" order="0" text="Define Open Source" shape="line" id="1320166635"/>
<topic position="1100,-48" order="1" text="Define Closed Source." shape="line" id="779634578"/>
<topic position="1190,-23" order="2" text="Brief History of Linux, and of Free Software Foundation" shape="line" id="803540039"/>
</topic>
<topic position="-1100,-11" order="1" text="Arguments in favour" shape="line" shrink="true" id="1005748831" fontStyle=";;;;;;#111111;;;">
<topic position="1100,-48" order="0" text="Open Source is More Efficient" shape="line" id="1453575536" fontStyle=";;;;;;#111111;;;"/>
<topic position="1190,-23" order="1" text="Open Source Is More Innovative" shape="line" id="10779073" fontStyle=";;;;;;#111111;;;"/>
<topic position="1280,2" order="2" text="Sharing Sotware is Good" shape="line" id="490282244" fontStyle=";;;;;;#111111;;;"/>
<topic position="-1100,-11" order="1" text="Arguments in favour" shape="line" shrink="true" id="1005748831">
<topic position="1100,-48" order="0" text="Open Source is More Efficient" shape="line" id="1453575536"/>
<topic position="1190,-23" order="1" text="Open Source Is More Innovative" shape="line" id="10779073"/>
<topic position="1280,2" order="2" text="Sharing Sotware is Good" shape="line" id="490282244"/>
</topic>
<topic position="-1190,14" order="2" text="Arguments Against" shape="line" shrink="true" id="1222089020" fontStyle=";;;;;;#111111;;;">
<topic position="1190,-23" order="0" text="Open Source is Communist" shape="line" id="1098359632" fontStyle=";;;;;;#111111;;;"/>
<topic position="1280,2" order="1" text="Open Source Destroys the Ability to Make Money Frm Software" shape="line" id="1030127371" fontStyle=";;;;;;#111111;;;"/>
<topic position="1370,27" order="2" text="Open Source Software Is Hard To Use" shape="line" id="1891112167" fontStyle=";;;;;;#111111;;;"/>
<topic position="-1190,14" order="2" text="Arguments Against" shape="line" shrink="true" id="1222089020">
<topic position="1190,-23" order="0" text="Open Source is Communist" shape="line" id="1098359632"/>
<topic position="1280,2" order="1" text="Open Source Destroys the Ability to Make Money Frm Software" shape="line" id="1030127371"/>
<topic position="1370,27" order="2" text="Open Source Software Is Hard To Use" shape="line" id="1891112167"/>
</topic>
</topic>
</topic>
<topic position="-1100,38" order="5" text="Taking account of objections" shape="line" shrink="true" id="90146370" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="1100,-12" order="0" shape="line" id="594053771" fontStyle=";;;;;;#111111;;;">
<topic position="-1100,38" order="5" text="Taking account of objections" shape="line" shrink="true" id="90146370">
<topic position="1100,-12" order="0" shape="line" id="594053771">
<text><![CDATA[Now you can be pretty sure that someone who thinks that closed source software is superior to open
source software will have already heard of your arguments in favour, and might have some objections
or counter-arguments to
them.]]></text>
</topic>
<topic position="1190,13" order="1" shape="line" shrink="true" id="703718185" fontStyle=";;;;;;#111111;;;">
<topic position="1190,13" order="1" shape="line" shrink="true" id="703718185">
<text><![CDATA[So you also need to think about the objections someone might have to your arguments in favour of
your main
point.]]></text>
<topic position="-1190,1" order="0" text="For example, many people dispute that open source software is more innovative." shape="line" id="394067842" fontStyle=";;;;;;#111111;;;"/>
<topic position="-1190,1" order="0" text="For example, many people dispute that open source software is more innovative." shape="line" id="394067842"/>
</topic>
<topic position="1280,38" order="2" text="And you also need to think about how you would respond to the arguments against your main point." shape="line" id="634073269" fontStyle=";;;;;;#111111;;;"/>
<topic position="1370,63" order="3" text="Add your responses to these potential objections into your outline." shape="line" id="658337433" fontStyle=";;;;;;#111111;;;"/>
<topic position="1280,38" order="2" text="And you also need to think about how you would respond to the arguments against your main point." shape="line" id="634073269"/>
<topic position="1370,63" order="3" text="Add your responses to these potential objections into your outline." shape="line" id="658337433"/>
</topic>
</topic>
</topic>
<topic position="-470,-12" order="2" text="From Outline to Finished Work" shape="line" shrink="true" id="1755853195" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="470,-74" order="0" shape="line" id="1449950809" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-470,-12" order="2" text="From Outline to Finished Work" shape="line" shrink="true" id="1755853195" bgColor="undefined">
<topic position="470,-74" order="0" shape="line" id="1449950809" bgColor="undefined">
<text><![CDATA[Writing the outline of your essay is the hard part. Once you have a good outline, it's much easier
to write a good essay or a good
presentation.]]></text>
</topic>
<topic position="560,-49" order="1" text="You'll probably find it easier to to the actual writing of the essay in your wordprocessor." shape="line" id="1607766784" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined"/>
<topic position="650,-24" order="2" text="Exporting your outline to your Wordprocessor" shape="line" shrink="true" id="877777095" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-650,-99" order="0" shape="line" shrink="true" id="1821901940" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="560,-49" order="1" text="You'll probably find it easier to to the actual writing of the essay in your wordprocessor." shape="line" id="1607766784" bgColor="undefined"/>
<topic position="650,-24" order="2" text="Exporting your outline to your Wordprocessor" shape="line" shrink="true" id="877777095" bgColor="undefined">
<topic position="-650,-99" order="0" shape="line" shrink="true" id="1821901940">
<text><![CDATA[FreeMind currently exports much better to OpenOffice than to Microsoft Word. So if you don't yet
have OpenOffice, it's well worth downloading it (it's
free).]]></text>
<topic position="650,-111" order="0" shape="line" id="1291053034" fontStyle=";;;;;;#111111;;;">
<topic position="650,-111" order="0" shape="line" id="1291053034">
<text><![CDATA[But if you don't want to use OpenOffice, you can export your map to HTML, and then load this into
Microsoft
Word.]]></text>
</topic>
</topic>
<topic position="-740,-74" order="1" text="Once you've finished your outline, you're ready to export." shape="line" id="1616381675" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-830,-49" order="2" text="You should be aware of the difference that folding makes." shape="line" shrink="true" id="1621587642" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="830,-86" order="0" shape="line" id="391880567" fontStyle=";;;;;;#111111;;;">
<topic position="-740,-74" order="1" text="Once you've finished your outline, you're ready to export." shape="line" id="1616381675"/>
<topic position="-830,-49" order="2" text="You should be aware of the difference that folding makes." shape="line" shrink="true" id="1621587642">
<topic position="830,-86" order="0" shape="line" id="391880567">
<text><![CDATA[Nodes which are visible will come out as numbered headings, whilst nodes which are hidden come out
as bullet
points.]]></text>
</topic>
<topic position="920,-61" order="1" text="So take a minute to fold and unfold the nodes how you want them before you export." shape="line" id="1257873385" fontStyle=";;;;;;#111111;;;"/>
<topic position="1010,-36" order="2" text="For a normal length essay, you will probably only want two levels of headings showing." shape="line" id="1342542809" fontStyle=";;;;;;#111111;;;"/>
<topic position="920,-61" order="1" text="So take a minute to fold and unfold the nodes how you want them before you export." shape="line" id="1257873385"/>
<topic position="1010,-36" order="2" text="For a normal length essay, you will probably only want two levels of headings showing." shape="line" id="1342542809"/>
</topic>
<topic position="-920,-24" order="3" shape="line" id="1527476759" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-920,-24" order="3" shape="line" id="1527476759">
<text><![CDATA[Export to OpenOffice by selecting File, then Export, then As OpenOffice Writer Document from the
menu.]]></text>
</topic>
<topic position="-1010,1" order="4" shape="line" id="561611184" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-1010,1" order="4" shape="line" id="561611184">
<text><![CDATA[Note: FreeMind does not (yet) have a spell checker. So you'll probably want to spell check the
document before you do anything else.
]]></text>
</topic>
<topic position="-1100,26" order="5" shape="line" id="1112076216" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-1100,26" order="5" shape="line" id="1112076216">
<text><![CDATA[Once you've got your outline into OpenOffice, you can write the rest of the essay in your
wordprocessor as
normal.]]></text>
</topic>
</topic>
<topic position="740,1" order="3" text="Making a presentation" shape="line" shrink="true" id="781772166" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-740,-74" order="0" text="FreeMind also provides a good way of outlining PowerPoint presentations." shape="line" id="1714771405" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-830,-49" order="1" text="You'll need OpenOffice again." shape="line" id="233010529" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-920,-24" order="2" text="Follow the instructions above to export your outline to OpenOffice." shape="line" id="1394183501" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-1010,1" order="3" shape="line" id="1549715849" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="740,1" order="3" text="Making a presentation" shape="line" shrink="true" id="781772166" bgColor="undefined">
<topic position="-740,-74" order="0" text="FreeMind also provides a good way of outlining PowerPoint presentations." shape="line" id="1714771405"/>
<topic position="-830,-49" order="1" text="You'll need OpenOffice again." shape="line" id="233010529"/>
<topic position="-920,-24" order="2" text="Follow the instructions above to export your outline to OpenOffice." shape="line" id="1394183501"/>
<topic position="-1010,1" order="3" shape="line" id="1549715849">
<text><![CDATA[Once you have the outine in OpenOffice, select (from OpenOffice!) File, then Send to, then
AutoAbstract to
Presentation.]]></text>
</topic>
<topic position="-1100,26" order="4" text="This automatically creates a PowerPoint presentation from your outline." shape="line" id="23655519" fontStyle=";;;;SansSerif;8;#990000;;;"/>
<topic position="-1190,51" order="5" shape="line" id="1027338237" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="-1100,26" order="4" text="This automatically creates a PowerPoint presentation from your outline." shape="line" id="23655519"/>
<topic position="-1190,51" order="5" shape="line" id="1027338237">
<text><![CDATA[I've found that setting "Included Outline Levels" to 2, and "Subpoints per level" to 5 gives the
best
results.]]></text>
</topic>
</topic>
<topic position="830,26" order="4" text="Things to check before you submit your essay" shape="line" shrink="true" id="1657086138" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-830,-111" order="0" shape="line" id="1855894453" fontStyle=";;;;SansSerif;8;#990000;;;">
<topic position="830,26" order="4" text="Things to check before you submit your essay" shape="line" shrink="true" id="1657086138" bgColor="undefined">
<topic position="-830,-111" order="0" shape="line" id="1855894453">
<text><![CDATA[(This advice doesn't tell you anything about how to use FreeMind, but it may help you get a better
mark in your
essay!)]]></text>
</topic>
<topic position="-920,-86" order="1" text="Does my essay have a main claim?" shape="line" id="1803078302" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-920,-86" order="1" text="Does my essay have a main claim?" shape="line" id="1803078302" bgColor="undefined">
<note><![CDATA[Another way of asking this question is can you sum up in a sentence what the main point is that your essay is making?) If you don't have a main claim (or don't know what your main claim is!), then your essay will not get a good mark. You are assessed on the quality of the argument you put forward for your main claim, and in order to be able to do this we (and you) need to know what your main claim is.]]></note>
</topic>
<topic position="-1010,-61" order="2" text="Does my main claim provide a full answer the question that I have been asked?" shape="line" id="107276913" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1010,-61" order="2" text="Does my main claim provide a full answer the question that I have been asked?" shape="line" id="107276913" bgColor="undefined">
<note><![CDATA[You must be honest with yourself at this point: if you suspect that you haven't fully answered the question, then you must either (a) revise your answer so that you do have a full answer to the question, or (b) provide an argument for why it is that the angle you want to bring to the question is legitimate (for example, explain why it is legitimate to focus on just one aspect of the question).]]></note>
</topic>
<topic position="-1100,-36" order="3" text="Have I made it obvious what my main claim is?" shape="line" id="1628680821" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1100,-36" order="3" text="Have I made it obvious what my main claim is?" shape="line" id="1628680821" bgColor="undefined">
<note><![CDATA[You should state what your main claim is in at least two places, first in the introduction, and second in the conclusion. (The bits in between should be devoted to arguing for your main claim).]]></note>
</topic>
<topic position="-1190,-11" order="4" text="Do I have an argument for my main claim?" shape="line" id="927542090" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1190,-11" order="4" text="Do I have an argument for my main claim?" shape="line" id="927542090" bgColor="undefined">
<note><![CDATA[What reasons have you put forward as to why a reasonable (but sceptical) person should accept that your main claim is true? If you don't have any reasons (but merely a gut intuition) then you need to go back and revise, and find some arguments.]]></note>
</topic>
<topic position="-1280,14" order="5" text="Is my argument for my main claim sound?" shape="line" id="337592890" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1280,14" order="5" text="Is my argument for my main claim sound?" shape="line" id="337592890" bgColor="undefined">
<note><![CDATA[Does your main claim follow logically from the supporting reasons you put forward? And are those supporting reasons themselves true (or at least plausibly true)?]]></note>
</topic>
<topic position="-1370,39" order="6" text="Do I have an introduction which provides an overview of the structure of my argument?" shape="line" id="1338320981" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1370,39" order="6" text="Do I have an introduction which provides an overview of the structure of my argument?" shape="line" id="1338320981" bgColor="undefined">
<note><![CDATA[It is not enough e.g. to say that “I will be looking at arguments on both sides of this issue and coming to a conclusion”. You should tell us which arguments you will be looking at, whatyour evaluation of each of these arguments will be, and howthis analysis justifies the overall main claim you will be making. There are two reasons to give an overview of the structure of your argument: (a) it makes it much easier for the reader to grasp what you are saying, and why; (b) writing a summary of the structure of your argument is a good way of testing that you do in fact have a coherent argument.]]></note>
</topic>
<topic position="-1460,64" order="7" text="What reasons might a reasonable person have for doubting my main claim?" shape="line" id="1521390030" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1460,64" order="7" text="What reasons might a reasonable person have for doubting my main claim?" shape="line" id="1521390030" bgColor="undefined">
<note><![CDATA[Remember that in any academic debate, anything worth saying will be disputed. If you can't think of any reasons why someone might doubt your main claim, it's likely that you are in the grip of a dogmatic certainty that you are right. This is not good: your essay will come across as a rant, which is the last thing you want.]]></note>
</topic>
<topic position="-1550,89" order="8" text="Have I responded to these reasons for doubting my main claim in a convincing way?" shape="line" id="1843933327" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1550,89" order="8" text="Have I responded to these reasons for doubting my main claim in a convincing way?" shape="line" id="1843933327" bgColor="undefined">
<note><![CDATA[To be convincing, you might show that the doubts, while reasonable, are not well founded; or you could make your main claim more specific or nuanced in deference to them.]]></note>
</topic>
<topic position="-1640,114" order="9" text="Is there any material in my essay which might seem irrelevant to establishing my main point?" shape="line" id="982795475" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1640,114" order="9" text="Is there any material in my essay which might seem irrelevant to establishing my main point?" shape="line" id="982795475" bgColor="undefined">
<note><![CDATA[If there is, then either delete this material, or explain why this material is after all relevant.]]></note>
</topic>
<topic position="-1730,139" order="10" text="Have I fully acknowledged all my sources, and marked all quotations as quotations?" shape="line" id="606334721" fontStyle=";;;;SansSerif;8;#990000;;;" bgColor="undefined">
<topic position="-1730,139" order="10" text="Have I fully acknowledged all my sources, and marked all quotations as quotations?" shape="line" id="606334721" bgColor="undefined">
<note><![CDATA[If not then you are guilty of plagiarism. This is a serious offence, and you are likely to fail your course..]]></note>
</topic>
</topic>
</topic>
<topic position="-560,13" order="3" text="About this map" shape="line" shrink="true" id="854745518" fontStyle=";;;;SansSerif;8;#0033ff;;;" bgColor="undefined">
<topic position="560,-24" order="0" text="Version 0.1, Jan 2 2008" shape="line" id="1464926185" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined"/>
<topic position="650,1" order="1" text="James Wilson" shape="line" id="1351075037" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="-560,13" order="3" text="About this map" shape="line" shrink="true" id="854745518" bgColor="undefined">
<topic position="560,-24" order="0" text="Version 0.1, Jan 2 2008" shape="line" id="1464926185" bgColor="undefined"/>
<topic position="650,1" order="1" text="James Wilson" shape="line" id="1351075037" bgColor="undefined">
<link url="http://mailto:j.g.wilson@peak.keele.ac.uk" urlType="mail"/>
</topic>
<topic position="740,26" order="2" text="Notes on this map" shape="line" id="1843583599" fontStyle=";;;;SansSerif;8;#00b439;;;" bgColor="undefined">
<topic position="740,26" order="2" text="Notes on this map" shape="line" id="1843583599" bgColor="undefined">
<note><![CDATA[This map is intended to help someone who has to write an argumentative essay in a subject such as history or philosophy to write better essays with the help of FreeMind. Copyright for this map resides with the author. Released under the Creative Commons Attribution-ShareAlike licence v.2.00. http://creativecommons.org/licenses/by-sa/2.0/uk/