mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-22 06:37:56 +01:00
Add icons to text export.
This commit is contained in:
parent
eb12d6cc94
commit
4a4d67c554
@ -16,6 +16,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { Mindmap } from '../..';
|
import { Mindmap } from '../..';
|
||||||
|
import EmojiIconModel from '../model/EmojiIconModel';
|
||||||
import INodeModel from '../model/INodeModel';
|
import INodeModel from '../model/INodeModel';
|
||||||
import LinkModel from '../model/LinkModel';
|
import LinkModel from '../model/LinkModel';
|
||||||
import NoteModel from '../model/NoteModel';
|
import NoteModel from '../model/NoteModel';
|
||||||
@ -63,7 +64,14 @@ class MDExporter extends Exporter {
|
|||||||
branches
|
branches
|
||||||
.filter((n) => n.getText() !== undefined)
|
.filter((n) => n.getText() !== undefined)
|
||||||
.forEach((node) => {
|
.forEach((node) => {
|
||||||
result = `${result}${prefix}- ${node.getText()}`;
|
// Convert icons to list ...
|
||||||
|
const icons = node.getFeatures().filter((f) => f.getType() === 'eicon');
|
||||||
|
let iconStr = ' ';
|
||||||
|
if (icons.length > 0) {
|
||||||
|
iconStr = ` ${icons.map((icon) => (icon as EmojiIconModel).getIconType()).toString()} `;
|
||||||
|
}
|
||||||
|
|
||||||
|
result = `${result}${prefix}-${iconStr}${node.getText()}`;
|
||||||
node.getFeatures().forEach((f) => {
|
node.getFeatures().forEach((f) => {
|
||||||
const type = f.getType();
|
const type = f.getType();
|
||||||
// Dump all features ...
|
// Dump all features ...
|
||||||
@ -76,11 +84,6 @@ class MDExporter extends Exporter {
|
|||||||
this.footNotes.push(note.getText());
|
this.footNotes.push(note.getText());
|
||||||
result = `${result}[^${this.footNotes.length}] `;
|
result = `${result}[^${this.footNotes.length}] `;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if(type === 'icon'){
|
|
||||||
// const icon = f as IconModel;
|
|
||||||
// result = result + ` ![${icon.getIconType().replace('_','')}!](https://app.wisemapping.com/images/${icon.getIconType()}.svg )`
|
|
||||||
// }
|
|
||||||
});
|
});
|
||||||
result = `${result}\n`;
|
result = `${result}\n`;
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
import { Mindmap } from '../..';
|
import { Mindmap } from '../..';
|
||||||
|
import EmojiIconModel from '../model/EmojiIconModel';
|
||||||
import INodeModel from '../model/INodeModel';
|
import INodeModel from '../model/INodeModel';
|
||||||
import LinkModel from '../model/LinkModel';
|
import LinkModel from '../model/LinkModel';
|
||||||
import NoteModel from '../model/NoteModel';
|
import NoteModel from '../model/NoteModel';
|
||||||
@ -40,7 +41,14 @@ class TxtExporter extends Exporter {
|
|||||||
private traverseBranch(indent: string, prefix: string, branches: INodeModel[]) {
|
private traverseBranch(indent: string, prefix: string, branches: INodeModel[]) {
|
||||||
let result = '';
|
let result = '';
|
||||||
branches.forEach((node, index) => {
|
branches.forEach((node, index) => {
|
||||||
result = `${result}${indent}${prefix}${index + 1} ${
|
// Convert icons to list ...
|
||||||
|
const icons = node.getFeatures().filter((f) => f.getType() === 'eicon');
|
||||||
|
let iconStr = ' ';
|
||||||
|
if (icons.length > 0) {
|
||||||
|
iconStr = ` ${icons.map((icon) => (icon as EmojiIconModel).getIconType()).toString()} `;
|
||||||
|
}
|
||||||
|
|
||||||
|
result = `${result}${indent}${prefix}${index + 1}${iconStr}${
|
||||||
node.getText() !== undefined ? node.getText() : ''
|
node.getText() !== undefined ? node.getText() : ''
|
||||||
}`;
|
}`;
|
||||||
node.getFeatures().forEach((f) => {
|
node.getFeatures().forEach((f) => {
|
||||||
|
@ -22,7 +22,7 @@ import { diff } from 'jest-diff';
|
|||||||
import { expect } from '@jest/globals';
|
import { expect } from '@jest/globals';
|
||||||
import Exporter from '../../../src/components/export/Exporter';
|
import Exporter from '../../../src/components/export/Exporter';
|
||||||
|
|
||||||
const saveOutputRecord = true;
|
const saveOutputRecord = false;
|
||||||
|
|
||||||
export const setupBlob = () => {
|
export const setupBlob = () => {
|
||||||
// Workaround for partial implementations on Jest:
|
// Workaround for partial implementations on Jest:
|
||||||
|
@ -25,7 +25,7 @@ HR Mission: To provide a positive HR service experience for applicants and emplo
|
|||||||
[Note: Each department of Freeform will identify areas that need development to meet overall FS goals. Eg. Project Manager may identify needed improvement in a development tool. Or... Bus. Dev. may identify a new need in NFP that FS could fill within mandate, if training were provided. Professional Dev. priority will be given to proposals for development with clear ROIs.]
|
[Note: Each department of Freeform will identify areas that need development to meet overall FS goals. Eg. Project Manager may identify needed improvement in a development tool. Or... Bus. Dev. may identify a new need in NFP that FS could fill within mandate, if training were provided. Professional Dev. priority will be given to proposals for development with clear ROIs.]
|
||||||
2.3 Strategic Priority 2c: Learning Environment
|
2.3 Strategic Priority 2c: Learning Environment
|
||||||
[Note: Learning and innovation are an essential part of providing the best solutions to NFPs. Cost effective internal learning and time to explore innovation will be encouraged, provided they conform with organization goal and clear ROI is demonstrated.]
|
[Note: Learning and innovation are an essential part of providing the best solutions to NFPs. Cost effective internal learning and time to explore innovation will be encouraged, provided they conform with organization goal and clear ROI is demonstrated.]
|
||||||
2.4 So That...
|
2.4 🌈 So That...
|
||||||
[Note: (So that... our employees have improved skills and knowledge, So that... they are highly competent and can work well in agile teams and feel fulfilled and self actualized... So that we can so the best work possible, for the least cost, in the shortest time for other NFPs, So that... NFPs can help those who need it.)]
|
[Note: (So that... our employees have improved skills and knowledge, So that... they are highly competent and can work well in agile teams and feel fulfilled and self actualized... So that we can so the best work possible, for the least cost, in the shortest time for other NFPs, So that... NFPs can help those who need it.)]
|
||||||
3 Strategy 4: Inclusive, Positive Environment
|
3 Strategy 4: Inclusive, Positive Environment
|
||||||
[Note: Strategy #4: Foster a diverse, inclusive community with a positive work environment.]
|
[Note: Strategy #4: Foster a diverse, inclusive community with a positive work environment.]
|
||||||
@ -36,7 +36,7 @@ HR Mission: To provide a positive HR service experience for applicants and emplo
|
|||||||
3.3 Strategic Priority 4c: Diversity
|
3.3 Strategic Priority 4c: Diversity
|
||||||
[Note: Insure we promote our commitment to diversity and non-discrimination through our actions and in our outreach and employee recruitment efforts]
|
[Note: Insure we promote our commitment to diversity and non-discrimination through our actions and in our outreach and employee recruitment efforts]
|
||||||
3.4
|
3.4
|
||||||
3.5 So That...
|
3.5 🌈 So That...
|
||||||
[Note: (So that... we can reflect the diverse populations we serve AND ensure everyone feels safe, respected and included, So that... we better serve our diverse client organizations AND we are a great place to work )]
|
[Note: (So that... we can reflect the diverse populations we serve AND ensure everyone feels safe, respected and included, So that... we better serve our diverse client organizations AND we are a great place to work )]
|
||||||
4 Strategy 1: Recruit & Retain
|
4 Strategy 1: Recruit & Retain
|
||||||
[Note: Recruit and retain top talent commensurate with identified organizational capacity requirements ]
|
[Note: Recruit and retain top talent commensurate with identified organizational capacity requirements ]
|
||||||
@ -154,18 +154,18 @@ Attached below a sample of such screening questions]
|
|||||||
[Note: The Freeform H&S rep will lead a Health and Wellness Committee to responsible for recognizing health and safety concerns and identifying solutions.]
|
[Note: The Freeform H&S rep will lead a Health and Wellness Committee to responsible for recognizing health and safety concerns and identifying solutions.]
|
||||||
11.2.2 Work-life Balance Initiative
|
11.2.2 Work-life Balance Initiative
|
||||||
[Link: http://hrcouncil.ca/hr-toolkit/workplaces-health-safety.cfm]
|
[Link: http://hrcouncil.ca/hr-toolkit/workplaces-health-safety.cfm]
|
||||||
11.3 So that...
|
11.3 🌈 So that...
|
||||||
[Note: (So that... our employees remain well and safe, So that... they are highly competent and can work well in agile teams and feel fulfilled and self actualized... So that we can so the best work possible, for the least cost, in the shortest time for other NFPs, So that... NFPs can help those who need it.)]
|
[Note: (So that... our employees remain well and safe, So that... they are highly competent and can work well in agile teams and feel fulfilled and self actualized... So that we can so the best work possible, for the least cost, in the shortest time for other NFPs, So that... NFPs can help those who need it.)]
|
||||||
12 Benefits
|
12 Benefits
|
||||||
[Note: As Freeform Employees we will have benefits reviewed in light of our priorities and cost to Freeform]
|
[Note: As Freeform Employees we will have benefits reviewed in light of our priorities and cost to Freeform]
|
||||||
12.1 As Freeform Staff
|
12.1 👨👧👦 As Freeform Staff
|
||||||
12.2 Responsibility: HZ, JC
|
12.2 Responsibility: HZ, JC
|
||||||
12.3 Release 3
|
12.3 Release 3
|
||||||
12.4 Have Heather create list benefits against Best Practice & cost
|
12.4 ✅ Have Heather create list benefits against Best Practice & cost
|
||||||
12.5 Have Jason review list
|
12.5 Have Jason review list
|
||||||
12.6 Have JC & HZ consult with staff
|
12.6 Have JC & HZ consult with staff
|
||||||
12.7 Have best benefits we can afford
|
12.7 Have best benefits we can afford
|
||||||
12.8 So that...
|
12.8 🌈 So that...
|
||||||
[Note: so that our efforts to excel are rewarded.]
|
[Note: so that our efforts to excel are rewarded.]
|
||||||
13 Community Outreach Plan
|
13 Community Outreach Plan
|
||||||
13.1 Goals
|
13.1 Goals
|
||||||
@ -175,7 +175,7 @@ Attached below a sample of such screening questions]
|
|||||||
13.5 Other
|
13.5 Other
|
||||||
14 Backlog Plan
|
14 Backlog Plan
|
||||||
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
|
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
|
||||||
14.1 Go To Backlog Plan
|
14.1 😎 Go To Backlog Plan
|
||||||
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
|
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
|
||||||
15 Strategy Prospecting
|
15 Strategy Prospecting
|
||||||
15.1
|
15.1
|
||||||
@ -188,11 +188,11 @@ Attached below a sample of such screening questions]
|
|||||||
17 Strategies Marketing
|
17 Strategies Marketing
|
||||||
18
|
18
|
||||||
19 Exit Interviews
|
19 Exit Interviews
|
||||||
19.1 As Freeform
|
19.1 👨👧👦 As Freeform
|
||||||
19.2 Responsiblity: HZ, KS
|
19.2 Responsiblity: HZ, KS
|
||||||
19.3 Release
|
19.3 ⌛ Release
|
||||||
19.4 Have Heather write procedures for exit interview process
|
19.4 Have Heather write procedures for exit interview process
|
||||||
19.5 So that
|
19.5 🌈 So that
|
||||||
[Note: We learn from our mistakes and missed opportunities in future with the goal of keeping the best talent.]
|
[Note: We learn from our mistakes and missed opportunities in future with the goal of keeping the best talent.]
|
||||||
20 3 Month Onboarding Process
|
20 3 Month Onboarding Process
|
||||||
21 Human Resources Plan
|
21 Human Resources Plan
|
||||||
@ -208,48 +208,48 @@ Attached below a sample of such screening questions]
|
|||||||
21.2 Related Documents
|
21.2 Related Documents
|
||||||
[Note: MIssion, Values, Principles, Org Business Plan, Human Resources Policy Manual]
|
[Note: MIssion, Values, Principles, Org Business Plan, Human Resources Policy Manual]
|
||||||
21.3 Goals
|
21.3 Goals
|
||||||
21.3.1 Goal:Staff=Optimal Bus. Growth
|
21.3.1 🏈 Goal:Staff=Optimal Bus. Growth
|
||||||
[Note: Human resource capacity will remain at a level to meet planned growth growth objectives and client contractual commitments]
|
[Note: Human resource capacity will remain at a level to meet planned growth growth objectives and client contractual commitments]
|
||||||
21.3.1.1 So that...
|
21.3.1.1 🌈 So that...
|
||||||
21.3.1.2 Related Strategic Priorities:
|
21.3.1.2 Related Strategic Priorities:
|
||||||
21.3.1.3 KPI: HR Level equals Planned Growth
|
21.3.1.3 📊 KPI: HR Level equals Planned Growth
|
||||||
21.3.1.4 Methodology
|
21.3.1.4 Methodology
|
||||||
[Note: Schedule of required HR capacity vs. actual HR capacity. Variance + or - 1]
|
[Note: Schedule of required HR capacity vs. actual HR capacity. Variance + or - 1]
|
||||||
21.3.1.4.1 Target
|
21.3.1.4.1 Target
|
||||||
[Note: = + or - 1]
|
[Note: = + or - 1]
|
||||||
21.3.2 Goal: Increase Job Satisfaction
|
21.3.2 🏈 Goal: Increase Job Satisfaction
|
||||||
21.3.2.1 So That
|
21.3.2.1 🌈 So That
|
||||||
[Note: Establish better relationships.
|
[Note: Establish better relationships.
|
||||||
Identify with the new employer.
|
Identify with the new employer.
|
||||||
Build a great attitude with the company.]
|
Build a great attitude with the company.]
|
||||||
21.3.2.2 Related Strategic Priorities
|
21.3.2.2 Related Strategic Priorities
|
||||||
21.3.2.2.1
|
21.3.2.2.1
|
||||||
21.3.2.3 KPI: Employee Satisfaction
|
21.3.2.3 📊 KPI: Employee Satisfaction
|
||||||
21.3.2.3.1
|
21.3.2.3.1
|
||||||
21.3.2.4 Methodology
|
21.3.2.4 Methodology
|
||||||
[Note: Percentage of improvement in employee reported job satisfaction based on survey vs previous year. Base level to be established in first year. ]
|
[Note: Percentage of improvement in employee reported job satisfaction based on survey vs previous year. Base level to be established in first year. ]
|
||||||
21.3.2.4.1 Target
|
21.3.2.4.1 Target
|
||||||
[Note: Base level 1st year]
|
[Note: Base level 1st year]
|
||||||
21.3.3 Goal: Improve Performance
|
21.3.3 🏈 Goal: Improve Performance
|
||||||
[Note: To increase knowledge, skills and experience of the Freeform staff relevant to organizational priorities.]
|
[Note: To increase knowledge, skills and experience of the Freeform staff relevant to organizational priorities.]
|
||||||
21.3.3.1 So That
|
21.3.3.1 🌈 So That
|
||||||
[Note: Clarify expectations.
|
[Note: Clarify expectations.
|
||||||
Understand values and priorities.
|
Understand values and priorities.
|
||||||
Decrease the learning curve.]
|
Decrease the learning curve.]
|
||||||
21.3.3.2 Related Strategic Priorities
|
21.3.3.2 Related Strategic Priorities
|
||||||
[Note: 1]
|
[Note: 1]
|
||||||
21.3.3.3 KPI: Employee Performance
|
21.3.3.3 📊 KPI: Employee Performance
|
||||||
21.3.3.4 Methodology
|
21.3.3.4 Methodology
|
||||||
21.3.3.4.1 Target
|
21.3.3.4.1 Target
|
||||||
21.3.4 Goal: Reduce Turnover
|
21.3.4 🏈 Goal: Reduce Turnover
|
||||||
[Note: To reduce turnover of Top Talent.]
|
[Note: To reduce turnover of Top Talent.]
|
||||||
21.3.4.1 So That
|
21.3.4.1 🌈 So That
|
||||||
[Note: Provide support through feedback.
|
[Note: Provide support through feedback.
|
||||||
Help the employee feel valued.
|
Help the employee feel valued.
|
||||||
Again, decrease the learning curve.]
|
Again, decrease the learning curve.]
|
||||||
21.3.4.2 Related Strategic Priorities
|
21.3.4.2 Related Strategic Priorities
|
||||||
21.3.4.3 KPI: Retention Rate
|
21.3.4.3 📊 KPI: Retention Rate
|
||||||
21.3.4.4 Methodology
|
21.3.4.4 Methodology
|
||||||
21.3.4.4.1 Target
|
21.3.4.4.1 Target
|
||||||
21.3.5 Risk & Compliance
|
21.3.5 🏈 Risk & Compliance
|
||||||
[Note: To eliminate or minimize risk and to comply with all legislated requirements. ]
|
[Note: To eliminate or minimize risk and to comply with all legislated requirements. ]
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
1 NIF (NORMAS DE INFORMACIÓN FINANCIERA)
|
1 ✏️ NIF (NORMAS DE INFORMACIÓN FINANCIERA)
|
||||||
2 NIF D
|
2 😎 NIF D
|
||||||
[Note: Beneficios a los empleados,impuestos a la utilidad, arrendamientos y capitalización de resultado integral .]
|
[Note: Beneficios a los empleados,impuestos a la utilidad, arrendamientos y capitalización de resultado integral .]
|
||||||
2.1 Normas aplicables a problemas de determinación de resultados
|
2.1 Normas aplicables a problemas de determinación de resultados
|
||||||
3 CIRCULANTES
|
3 ☎️ CIRCULANTES
|
||||||
[Note: Tratamiento contable de los gastos de registro, colocación, unidades de inversión, aplicación supletoria etc.]
|
[Note: Tratamiento contable de los gastos de registro, colocación, unidades de inversión, aplicación supletoria etc.]
|
||||||
3.1 Adquisición temporal de acciones propias
|
3.1 Adquisición temporal de acciones propias
|
||||||
4 NIF A
|
4 ⌛ NIF A
|
||||||
[Link: http://www.youtube.com/watch?v=7YN-sOlkQp0]
|
[Link: http://www.youtube.com/watch?v=7YN-sOlkQp0]
|
||||||
4.1 Marco conceptual
|
4.1 Marco conceptual
|
||||||
5 NIF C
|
5 🐵 NIF C
|
||||||
[Link: https://sites.google.com/site/contabilidadimcpnif/estructura-de-las-nif]
|
[Link: https://sites.google.com/site/contabilidadimcpnif/estructura-de-las-nif]
|
||||||
5.1 Normas aplicables a conceptos específicos de los estados financieros
|
5.1 Normas aplicables a conceptos específicos de los estados financieros
|
||||||
6 NIF E
|
6 NIF E
|
||||||
[Note: Agricultura y donativos recibidos u otorgados con propósitos no lucrativos.]
|
[Note: Agricultura y donativos recibidos u otorgados con propósitos no lucrativos.]
|
||||||
6.1 Normas aplicables alas actividades especializadas de distintos sectores
|
6.1 Normas aplicables alas actividades especializadas de distintos sectores
|
||||||
7 NIF B
|
7 🏠 NIF B
|
||||||
[Link: http://www.contaduria.uady.mx/files/cuerpo-acad/caef/aief/resumen_NIF_marco_conceptual.pdf]
|
[Link: http://www.contaduria.uady.mx/files/cuerpo-acad/caef/aief/resumen_NIF_marco_conceptual.pdf]
|
||||||
7.1 Normas aplicables a los estados financieros en su conjunto
|
7.1 Normas aplicables a los estados financieros en su conjunto
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Welcome To WiseMapping
|
# Welcome To WiseMapping
|
||||||
|
|
||||||
- 5 min tutorial video ?
|
- 🖥️ 5 min tutorial video ?
|
||||||
Follow the link ! ( [link](https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE) )
|
Follow the link ! ( [link](https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE) )
|
||||||
- Try it Now!
|
- 😮 Try it Now!
|
||||||
- Double Click
|
- Double Click
|
||||||
- Press "enter" to add a
|
- Press "enter" to add a
|
||||||
Sibling
|
Sibling
|
||||||
@ -13,22 +13,22 @@ Sibling
|
|||||||
- Fonts
|
- Fonts
|
||||||
- Topic Shapes
|
- Topic Shapes
|
||||||
- Topic Color
|
- Topic Color
|
||||||
- Icons
|
- 🌈 Icons
|
||||||
- History Changes
|
- ⬅️ History Changes
|
||||||
- Mind Mapping
|
- 👍 Mind Mapping
|
||||||
- Share with Collegues
|
- Share with Collegues
|
||||||
- Online
|
- Online
|
||||||
- Anyplace, Anytime
|
- Anyplace, Anytime
|
||||||
- Free!!!
|
- Free!!!
|
||||||
- Productivity
|
- 📊 Productivity
|
||||||
- Share your ideas
|
- 💡 Share your ideas
|
||||||
- Brainstorming
|
- Brainstorming
|
||||||
- Visual
|
- Visual
|
||||||
- Install In Your Server
|
- 🖥️ Install In Your Server
|
||||||
- Open Source ( [link](http://www.wisemapping.org/) )
|
- Open Source ( [link](http://www.wisemapping.org/) )
|
||||||
- Download ( [link](http://www.wisemapping.com/inyourserver.html) )
|
- Download ( [link](http://www.wisemapping.com/inyourserver.html) )
|
||||||
- Collaborate
|
- 👨👧👦 Collaborate
|
||||||
- Embed
|
- Embed
|
||||||
- Publish
|
- Publish
|
||||||
- Share for Edition
|
- ✉️ Share for Edition
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
1 Welcome To WiseMapping
|
1 Welcome To WiseMapping
|
||||||
1.1 5 min tutorial video ?
|
1.1 🖥️ 5 min tutorial video ?
|
||||||
Follow the link !
|
Follow the link !
|
||||||
[Link: https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE]
|
[Link: https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE]
|
||||||
1.2 Try it Now!
|
1.2 😮 Try it Now!
|
||||||
1.2.1 Double Click
|
1.2.1 Double Click
|
||||||
1.2.2 Press "enter" to add a
|
1.2.2 Press "enter" to add a
|
||||||
Sibling
|
Sibling
|
||||||
@ -14,23 +14,23 @@ Sibling
|
|||||||
1.3.2.1 Fonts
|
1.3.2.1 Fonts
|
||||||
1.3.2.2 Topic Shapes
|
1.3.2.2 Topic Shapes
|
||||||
1.3.2.3 Topic Color
|
1.3.2.3 Topic Color
|
||||||
1.3.3 Icons
|
1.3.3 🌈 Icons
|
||||||
1.3.4 History Changes
|
1.3.4 ⬅️ History Changes
|
||||||
1.4 Mind Mapping
|
1.4 👍 Mind Mapping
|
||||||
1.4.1 Share with Collegues
|
1.4.1 Share with Collegues
|
||||||
1.4.2 Online
|
1.4.2 Online
|
||||||
1.4.3 Anyplace, Anytime
|
1.4.3 Anyplace, Anytime
|
||||||
1.4.4 Free!!!
|
1.4.4 Free!!!
|
||||||
1.5 Productivity
|
1.5 📊 Productivity
|
||||||
1.5.1 Share your ideas
|
1.5.1 💡 Share your ideas
|
||||||
1.5.2 Brainstorming
|
1.5.2 Brainstorming
|
||||||
1.5.3 Visual
|
1.5.3 Visual
|
||||||
1.6 Install In Your Server
|
1.6 🖥️ Install In Your Server
|
||||||
1.6.1 Open Source
|
1.6.1 Open Source
|
||||||
[Link: http://www.wisemapping.org/]
|
[Link: http://www.wisemapping.org/]
|
||||||
1.6.2 Download
|
1.6.2 Download
|
||||||
[Link: http://www.wisemapping.com/inyourserver.html]
|
[Link: http://www.wisemapping.com/inyourserver.html]
|
||||||
1.7 Collaborate
|
1.7 👨👧👦 Collaborate
|
||||||
1.7.1 Embed
|
1.7.1 Embed
|
||||||
1.7.2 Publish
|
1.7.2 Publish
|
||||||
1.7.3 Share for Edition
|
1.7.3 ✉️ Share for Edition
|
||||||
|
Loading…
Reference in New Issue
Block a user