Improve text exporter adding notes.

This commit is contained in:
Paulo Gustavo Veiga 2022-02-17 11:25:36 -08:00
parent 2a43f3310f
commit df7d53eacd
13 changed files with 186 additions and 19 deletions

View File

@ -227,7 +227,7 @@ class MultilineTextEditor extends Events {
this._containerElem.css(style);
}
private _setText(text: string) {
private _setText(text: string): void {
const textareaElem = this._getTextareaElem();
textareaElem.val(text);
this._adjustEditorSize();

View File

@ -18,6 +18,7 @@
import { Mindmap } from '../..';
import INodeModel from '../model/INodeModel';
import LinkModel from '../model/LinkModel';
import NoteModel from '../model/NoteModel';
import Exporter from './Exporter';
class TxtExporter extends Exporter {
@ -32,26 +33,29 @@ class TxtExporter extends Exporter {
const { mindmap } = this;
const branches = mindmap.getBranches();
const txtStr = this.traverseBranch('', branches);
const txtStr = this.traverseBranch('', '', branches);
return Promise.resolve(txtStr);
}
private traverseBranch(prefix: string, branches: INodeModel[]) {
private traverseBranch(indent: string, prefix: string, branches: INodeModel[]) {
let result = '';
branches
.filter((n) => n.getText() !== undefined)
.forEach((node, index) => {
result = `${result}${prefix}${index + 1} ${node.getText()}`;
result = `${result}${indent}${prefix}${index + 1} ${node.getText()}`;
node.getFeatures().forEach((f) => {
const type = f.getType();
if (type === 'link') {
result = `${result} [link: ${(f as LinkModel).getUrl()}]`;
result = `${result}\n ${indent} [Link: ${(f as LinkModel).getUrl()}]`;
}
if (type === 'note') {
result = `${result}\n${indent} [Note: ${(f as NoteModel).getText()}]`;
}
});
result = `${result}\n`;
if (node.getChildren().filter((n) => n.getText() !== undefined).length > 0) {
result += this.traverseBranch(`\t${prefix}${index + 1}.`, node.getChildren());
result += this.traverseBranch(`\t${indent}`, `${prefix}${index + 1}.`, node.getChildren());
}
});
return result;

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

@ -24,6 +24,12 @@
1.12 Actividades centradas en el contexto cercano
1.13 Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)
1.14 Complementamos el trabajo de la escuela
[Note: Todos los contenidos de los talleres están relacionados con el currículo de la enseñanza básica.
A diferencia de la práctica tradicional, pretendemos ahondar en el conocimiento partiendo de lo que realmente interesa al niño o niña,
ayudándole a que encuentre respuesta a las preguntas que él o ella se plantea.
Por ese motivo, SaberMás proyecta estar al lado de los niños que necesitan una motivación extra para entender la escuela y fluir en ella,
y también al lado de aquellos a quienes la curiosidad y las ganas de saber les lleva más allá.]
1.14.1 Cada uno va a su ritmo, y cada cual pone sus límites
1.14.2 Aprendemos todos de todos
1.14.3 Valoramos lo que hemos aprendido

View File

@ -1,13 +1,16 @@
1 Indicator needs
1.1 Which new measures
[Note: Identifying new measures or investments that should be implemented.]
1.1.1 Landscape of measures
1.1.1.1 Diversity index of innovation support instruments in the region
[Note: Number of different innovations policy instruments existing in the region as a share of a total number representing a full typology of instruments]
1.1.1.2 Existing investments in measures
1.1.2 What other regions do differently
1.1.2.1 Balance of measure index
1.1.2.2 Profile comparison with other regions
1.1.2.3 Number of specific types of measures per capita
1.2 How to design & implement measures
[Note: Understanding how to design the details of a particular measure and how to implement them.]
1.2.1 Good practices
1.2.2 Diagnostics
1.2.2.1 Internal business innovation factors
@ -34,7 +37,9 @@ highly cited scientific article in the whole Federation)
1.2.2.2.13 Number of innovative companies to the number of researchers
1.2.2.2.14 Volume of license agreements to the volume of R&D support from the regional budget
1.3 How much effort: where & how
[Note: Understanding the level of effort the region needs to take to compete on innovation and where to put this effort]
1.3.1 The bottom-line
[Note: This is what policy makers care about in the end]
1.3.1.1 Wages
1.3.1.1.1 Dynamics of real wages
1.3.1.1.2 Average wage (compare to the Fed)
@ -54,13 +59,17 @@ highly cited scientific article in the whole Federation)
1.3.2.1.3 Manufacturing value added per capita (non-natural resource-based)
1.3.2.2 The enabling environment
1.3.2.2.1 Ease of doing business
[Note: WB]
1.3.2.2.1.1 Level of administrative barriers (number and cost of administrative procedures)
1.3.2.2.2 Competition index
[Note: GCR]
1.3.2.2.3 Workforce
1.3.2.2.3.1 Quality of education
[Note: GCR]
1.3.2.2.3.1.1 Inrease in the number of International students
1.3.2.2.3.2 Quantity of education
1.3.2.2.3.2.1 Participation in life-long learning
[Note: per 100 population aged 25-64]
1.3.2.2.3.2.2 Increase in literarecy
1.3.2.2.3.2.3 Amount of university and colleague
students per 10 thousands population
@ -71,6 +80,7 @@ the total amount of population at the working age
1.3.2.2.3.2.7 Access to training, information, and consulting support
1.3.2.2.3.3 Science & engineering workforce
1.3.2.2.3.3.1 Availability of scientists and engineers
[Note: GCR]
1.3.2.2.3.3.2 Amount of researches per 10 thousands population
1.3.2.2.3.3.3 Average wage of researches per average wage in the region
1.3.2.2.3.3.4 Share of researchers in the total number of employees in the region
@ -89,6 +99,7 @@ the total amount of population at the working age
1.3.2.2.5.2.2 Number of Business Angels
1.3.2.2.6 ICT
1.3.2.2.6.1 ICT use
[Note: GCR]
1.3.2.2.6.2 Broadband penetration
1.3.2.2.6.3 Internet penetration
1.3.2.2.6.4 Computer literacy
@ -98,11 +109,13 @@ the total amount of population at the working age
1.3.2.3.1.1.1 foreign JVs
1.3.2.3.1.1.2 Inflow of foreign direct investments in high-technology industries
1.3.2.3.1.1.3 Foreign direct investment jobs
[Note: : the percentage of the workforce employed by foreign companies [%]. ]
1.3.2.3.1.1.4 FDI as a share of regional non natural resource-based GRP
1.3.2.3.1.1.5 Number of foreign subsidiaries operating in the region
1.3.2.3.1.1.6 Share of foreign controlled enterprises
1.3.2.3.1.2 Exports
1.3.2.3.1.2.1 Export intensity in manufacturing and services
[Note: : exports as a share of total output in manufacturing and services [%].]
1.3.2.3.1.2.2 Share of high-technology export in the total volume
of production of goods, works and services
1.3.2.3.1.2.3 Share of innovation production/serivces that goes for export,
@ -110,12 +123,17 @@ by zones (EU, US, CIS, other countries
1.3.2.3.1.3 Share of high-technology products in government procurements
1.3.2.3.2 Entrepreneurship culture
1.3.2.3.2.1 Fear of failure rate
[Note: GEM]
1.3.2.3.2.2 Entrepreneurship as desirable career choice
[Note: GEM]
1.3.2.3.2.3 High Status Successful Entrepreneurship
[Note: GEM]
1.3.2.3.3 Collaboration & partnerships
1.3.2.3.3.1 Number of business contracts with foreign partners for R&D collaboration
1.3.2.3.3.2 Share of R&D financed from foreign sources
[Note: UNESCO]
1.3.2.3.3.3 Firms collaborating on innovation with organizations in other countries
[Note: CIS]
1.3.2.3.3.4 Share of Innovative companies collaborating
with research institutions on innovation
1.3.2.3.3.5 Number of joint projects conducted by the local comapnies
@ -123,6 +141,7 @@ with research institutions on innovation
1.3.2.3.3.6 science and industry links
1.3.2.3.4 Technology absorption
1.3.2.3.4.1 Local supplier quality
[Note: GCR]
1.3.2.3.4.2 Share of expenditures on technological innovations
in the amount of sales
1.3.2.3.4.3 Number of purchased new technologies
@ -137,6 +156,7 @@ in the amount of sales
1.3.2.3.5.1 Share of innovative companies
1.3.2.3.5.2 Business R&D expenditures per GRP
1.3.2.3.5.3 Factors hampering innovation
[Note: CIS, BEEPS]
1.3.2.3.5.4 Expenditure on innovation by firm size
1.3.2.3.5.5 R&D and other intellectl property products
1.3.2.3.5.6 Growth of the number of innovative companies
@ -147,7 +167,9 @@ in the amount of sales
1.3.2.3.5.7.4 Volume of innovation production per capita
1.3.2.3.6 Entrepreneurial activities
1.3.2.3.6.1 New business density
[Note: Number of new organizations per thousand working age population (WBI)]
1.3.2.3.6.2 Volume of newly registered corporations
[Note: (as a percentage of all registered corporations)]
1.3.2.3.6.3 Share of gazelle companies in the total number of businesses
1.3.2.3.7 R&D production
1.3.2.3.7.1 Outputs
@ -185,6 +207,7 @@ and large companies by university size
1.3.2.4.1.3.2 Number of foreign patents granted per staff
1.3.2.4.1.4 Supportive measures
1.3.2.4.1.4.1 Diversity index of university entrepreneurship support measures
[Note: Number of measures offered by the unversity within a preset range (NCET2 survey)]
1.3.2.4.1.5 Commercialization
1.3.2.4.1.5.1 Licensing
1.3.2.4.1.5.1.1 Academic licenses: Number of licenses
@ -203,7 +226,9 @@ of total institutional budget (up to a cap)
1.3.2.4.1.5.3.5 Difficulties faced by research organization in collaborating with SMEs
1.3.2.4.2 Private market
1.3.2.4.2.1 Number of innovation & IP services organizations
[Note: (design firms, IP consultants, etc.)]
1.3.2.4.2.2 Number of private innovation infrastructure organizations
[Note: (e.g. accelerators, incubators)]
1.3.2.4.2.3 Access to certification and licensing for specific activities
1.3.2.4.2.4 Access to suppliers of equipment, production and engineering services
1.3.2.4.3 Innovation infrastructure
@ -215,11 +240,14 @@ of total institutional budget (up to a cap)
1.3.2.4.3.1.5 Volume of venture financing from the regional budget
1.3.2.4.3.2 Volume of state support per one company
1.4 What to do about existing measures
[Note: Understanding which measures should be strengthened, dropped or improved, and how.]
1.4.1 Demand for measure
1.4.1.1 Quality of beneficiaries
1.4.1.1.1 Growth rates of employment in supported innovative firms
1.4.1.1.2 Growth rates of employment in supported innovative firms
1.4.1.1.3 Role of IP for tenants/clients
[Note: WIPO SURVEY OF INTELLECTUAL PROPERTY SERVICES OF
EUROPEAN TECHNOLOGY INCUBATORS]
1.4.1.1.4 Share of tenants with innovation activities
1.4.1.1.5 Gazelle tenant: Share of tenants with
annual revenue growth of more than 20%
@ -247,6 +275,7 @@ select and apply for regional and federal support schemes
1.4.1.4.4 Increase in the number of start-ups applying for a place in the incubators
1.4.2 Inputs of measures
1.4.2.1 Qualified staff
[Note: JL: not sure how this would be measured]
1.4.2.2 Budget per beneficiary
1.4.3 Performance of measure
1.4.3.1 Implementation of measure
@ -275,6 +304,7 @@ several programs with different leverage)
1.4.4.5 Volume of attracted money per one ruble
of regional budget expenditures on innovation projects
1.5 What investments in innovative projects
[Note: Understanding what investments should be made in innovative projects.]
1.5.1 Competitive niches
1.5.1.1 Clusters behavior
1.5.1.1.1 Cluster EU star rating

View File

@ -1,11 +1,22 @@
1 Observation
[Note: Always ask ]
2 Data Analysis
[Note: You always check your data to see if it is correct and then you check it and organize the data that you have to make sure that it is right ]
3 Organizing Data
[Note: Organize your data when you are doing an experiment ]
4 Questions
[Note: Always ask your self a question when analysis the data it is a good idea to do.]
5 Hypothesis
[Note: You make your hypothesis when you are making your observation.]
6 Experiment
[Note: Always analysis your data and keep it in order when you are doing an experiment.]
7 Variable
[Note: A major factor that can change the outcome in an experiment.]
8 Independent Variable
[Note: When you change it you the see affect or the aftermath of what happened ]
9 Control Group
[Note: A test That can be compared ]
10 Dependent Variable
[Note: Changes the outcome of the other variables]
11 Constant
[Note: Doesnt Change at all maybe once and a while but never that often]

View File

@ -1,12 +1,15 @@
1 PPM Plan
1.1 Business Development
1.2 Backlog Management [link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
1.2 Backlog Management
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
1.3 Freeform IT
1.4 Client Project Management
1.5 Governance & Executive
1.6 Finance
1.7 Administration
1.8 Human Resources
[Note: 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.]
1.9 Freeform Hosting
1.10 Community Outreach
1.11 R&D
@ -14,30 +17,74 @@
1.11.2 Formulize
1.12 Probono
2 Strategy 2: Talent Development
[Note: Strategy #2: Support the talent development of our employees through professional development and learning and through improved performance management.]
2.1 Strategic Priority 2a: Personal Plans
[Note: Each employee will have a personal Professional Development Plan. ]
2.2 Strategic Priority 2b: External learning matches organ. goals
[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
[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...
[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
[Note: Strategy #4: Foster a diverse, inclusive community with a positive work environment.]
3.1 Strategic Priority 4a:Feedback
[Note: Conduct regular organizational feedback assessments and collaborate to improve the work climate]
3.2 Strategic Priority 4b: Anti Harassment
[Note: Educate employees on the prevention of harassment and discrimination and productive ways to resolve conflict]
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]
3.4 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 )]
4 Strategy 1: Recruit & Retain
[Note: Recruit and retain top talent commensurate with identified organizational capacity requirements ]
4.1 So that...
[Note: (So that... we find and keep good people, So that... they are highly competent and can work well in agile teams... 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.)]
4.2 Strategic Priority 1a: Recruitment
[Note: 1. Identify and use proactive and effective recruitment strategies, ]
4.2.1 Modify App Form
[Note: Recently, I saw a few job posts sent through different community
groups and they seem to be taking our idea of screening candidates
to a next level. Not only they ask candidates to provide resume and
cover letter + some project related information but also request
written answers to questions like "Why are you interested in this
position" etc. That allows to screen out people who just submit
multiple resumes to multiple organizations without really applying
for that particular job and it would make our interview process more
straightforward, knowing answers to some questions.
For example, we may want to always include in the screening
questions:
- Why do you want to work for Freeform Solutions?
- Why are you interested in this position?
- What's your experience working with NFP?
- What's your experience working with Open Source software?
etc.
I also saw that people ask for references up front, in that
submissions form. We could include the HR requirement that Heather
brought recently for "permissions to ask your references about you"
in the online form so that we don't have to follow up with this
later.
Attached below a sample of such screening questions]
4.2.2 Strategy integrated with hiring plan
[Note: Hiring plan should be comprehensive... not Agile or Iterative, in the sense that staff capacity and skill needs should be met within at least a six month plan. If three Drupal developers are needed, the hiring should be done concurrently to minimize HR costs and time.]
4.3 Strategic Priority 1b: Hiring
[Note: 2. Continue to practice our unique Freeform hiring process that balances fit with the Freeform culture and best talent ]
4.4 Strategic Priority 1c: Onboarding
[Note: ]
4.4.1 3 Month Onboarding Process
4.4.2 Tools & Guidelines
4.4.3 Mentoring
4.5 Strategic Priority 1d: Incentives
[Note: 5. Explore incentives - monetary, benefits, fulfilment - needed to encourage top talent to work for and remain working for an NFP]
4.5.1 Raises
4.5.2 Benefits
4.5.3 Rewards Message
[Note: Create a total rewards message to encourage prospective and current employees to understand the full value of working for Freeform]
4.6 Strategic Priority 1e: Offboarding
[Note: Assess and address reasons why talented people leave Freeform]
5 Business Development Plan
5.1 Goals
5.1.1 Increase new clients
@ -62,17 +109,44 @@
9.3 Supportive Systems Plan
10 Board and C Planning
10.1 Mission Statements
[Note: In the absence of one clearly defined mission statement, we have reviewed various expressed mission statement as following
Objects of Incorporation in Letters Patent
The objects of the Corporation are:To provide solutions that facilitate the effective use of information technology in not-for-profit, non-governmental, and charitable organizations throughout Canada, to support and improve their mission delivery.
2006 Strategic Business Plan - Brand Positioning
We are a nonprofit dedicated to helping other nonprofits understand and employ technology appropriately and effectively to support their mission. Our mission is to provide flexible consulting, website development, and Internet hosting solutions that give you peace of mind and help you stay focused on your mission.
Freeform One Page (Freeform Wiki)
About Freeform Solutions: Freeform Solutions is a not-for-profit organization. Our mission is help (sic) other not-for-profits organizations to build their capacity and increase their effectiveness.
Result of Google search for “Freeform Solutions mission”
Freeform Solutions is a not-for-profit organization. Our mission is to help other not-for-profits use technology to build their capacity and increase their effectiveness. (www.freeformsolutions.ca/en/files/AboutFreeformSolutions.pdf
Freeform Solutions (www.freeformsolutions.ca) is a non profit organization. Our mission is to help other non-profit organizations to realize their missions through the appropriate deployment of information and knowledge management systems.www.freeformsolutions.ca/en/sites/default/.../virtual.volunteering.pdf
We are a not-for-profit organization (NFP) that helps other NFPs use IT to achieve their organizational goals and better serve their communities. Freeform Solutions is a nonprofit organization dedicated to helping other nonprofit organizations understand and employ technology appropriately and effectively to support their missions. Our mission is to provide flexible consulting, website development, and hosting solutions http://socialinnovation.ca/community/organizations/freeform-solutions
Freeform Solutions is a not-for-profit organization, with a mission to help other not-for-profits use technology more effectively to meet their own missions. http://timreview.ca/article/387
Freeform Solutions their mission: “we help not-for-profit organisations use technology to build their capacity and increase their effectiveness. http://www.warnerlaw.ca/links/community-organisations-and-local-businesses/
Freeform Solutions is a not-for-profit organization with a mission to help other not-for-profits use technology to meet their goals. http://xoops.org/modules/news/article.php?storyid=3860
At Freeform Solutions, we have a mission to help not-for-profit and public sector organizations use technology more effectively. http://osbrca.blogspot.ca/2010/07/development-commons-approach.html
Freeform Solutions Facebook Page
Mission: Freeform Solutions is a not-for-profit organization (NFP) that helps other NFPs use IT to achieve their organizational goals and better serve their communities.
The current Freeform Solutions website
We started Freeform to help NFPs use IT to achieve their organizational goals and better serve their communities - to support and improve their mission delivery. Our mission is to strengthen the capacity of NFPs and the voluntary sector, and to help build a civil society.]
10.2 Values
10.3 Bylaw Review
10.4 Policies
10.5 Business Plan
11 Strategy 3: Safety and Wellness
[Note: Strategy # 3: Promote the achievement of safety and wellness in our virtual employee community.]
11.1 Strategic Priority 3a: H&S Policies & Practices
[Note: Continuing improvement in Health and Safety policies and practices & compliance with OHSC legislation]
11.2 Strategic Priority 3b: Health Promotion
[Note: Promoting safety, work-life balance, self-care, ergonomics and other factors for wellness and productivity in a virtual workplace environment]
11.2.1 Health and Wellness Committee
11.2.2 Work-life Balance Initiative [link: http://hrcouncil.ca/hr-toolkit/workplaces-health-safety.cfm]
[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
[Link: http://hrcouncil.ca/hr-toolkit/workplaces-health-safety.cfm]
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.)]
12 Benefits
[Note: As Freeform Employees we will have benefits reviewed in light of our priorities and cost to Freeform]
12.1 As Freeform Staff
12.2 Responsibility: HZ, JC
12.3 Release 3
@ -81,14 +155,17 @@
12.6 Have JC & HZ consult with staff
12.7 Have best benefits we can afford
12.8 So that...
[Note: so that our efforts to excel are rewarded.]
13 Community Outreach Plan
13.1 Goals
13.2 CSI
13.3 Drupal Community
13.4 CiviCRM
13.5 Other
14 Backlog Plan [link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
14.1 Go To Backlog Plan [link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
14 Backlog Plan
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
14.1 Go To Backlog Plan
[Link: https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit]
15 Strategy Prospecting
16 Stategies: Forecasting
17 Strategies Marketing
@ -98,37 +175,61 @@
18.3 Release
18.4 Have Heather write procedures for exit interview process
18.5 So that
[Note: We learn from our mistakes and missed opportunities in future with the goal of keeping the best talent.]
19 3 Month Onboarding Process
20 Human Resources Plan
20.1 Related Org Objectives
20.1.1 1
[Note: Attract, build and retain a motivated, agile, knowledgeable team of Top Talent that loves to “come” to work]
20.1.2 2
[Note: Maintain level of human resource capacity and skill to meet planned growth and client contractual commitments]
20.1.3 3
[Note: Conform to all legislated requirements]
20.1.4 4
[Note: Minimize and mitigate risk to the organization]
20.2 Related Documents
[Note: MIssion, Values, Principles, Org Business Plan, Human Resources Policy Manual]
20.3 Goals
20.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]
20.3.1.1 So that...
20.3.1.2 Related Strategic Priorities:
20.3.1.3 KPI: HR Level equals Planned Growth
20.3.1.4 Methodology
[Note: Schedule of required HR capacity vs. actual HR capacity. Variance + or - 1]
20.3.1.4.1 Target
[Note: = + or - 1]
20.3.2 Goal: Increase Job Satisfaction
20.3.2.1 So That
[Note: Establish better relationships.
Identify with the new employer.
Build a great attitude with the company.]
20.3.2.2 Related Strategic Priorities
20.3.2.3 KPI: Employee Satisfaction
20.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. ]
20.3.2.4.1 Target
[Note: Base level 1st year]
20.3.3 Goal: Improve Performance
[Note: To increase knowledge, skills and experience of the Freeform staff relevant to organizational priorities.]
20.3.3.1 So That
[Note: Clarify expectations.
Understand values and priorities.
Decrease the learning curve.]
20.3.3.2 Related Strategic Priorities
[Note: 1]
20.3.3.3 KPI: Employee Performance
20.3.3.4 Methodology
20.3.3.4.1 Target
20.3.4 Goal: Reduce Turnover
[Note: To reduce turnover of Top Talent.]
20.3.4.1 So That
[Note: Provide support through feedback.
Help the employee feel valued.
Again, decrease the learning curve.]
20.3.4.2 Related Strategic Priorities
20.3.4.3 KPI: Retention Rate
20.3.4.4 Methodology
20.3.4.4.1 Target
20.3.5 Risk & Compliance
[Note: To eliminate or minimize risk and to comply with all legislated requirements. ]

View File

@ -1,4 +1,5 @@
1
[Note: ]
1.1 objectifs journée
1.1.1 "business plan" associatif ?
1.1.2 modèle / activités responsabilités

View File

@ -35,9 +35,11 @@ the other hand, strategies alternative to BRIDGE clearly
failed to accurately estimate the variance of trait values. This
indicates that in situations where accurate estimation of plotlevel
variance is desired, complete censuses are essential.
[Note: Isso significa que estudos de característica de história de vida compensam? Ver nos m&m.]
1.1.8 We suggest that, in these studies,
the investment in complete sampling may be worthwhile
for at least some traits.
[Note: Falar que isso corrobora nossa sugestão de utilizar poucas medidas, mas que elas sejam confiáveis.]
1.2 Chazdon 2010. Biotropica. 42(1): 3140
1.2.1 Here, we develop a new approach that links functional attributes
of tree species with studies of forest recovery and regional

View File

@ -1,4 +1,5 @@
1 أَبْجَدِيَّة عَرَبِيَّة
1.1 أَبْجَدِيَّة عَرَبِ
[Note: This is a not in languange أَبْجَدِيَّة عَرَبِ]
1.2 Long text node:
أَبْجَدِيَّة عَرَب

View File

@ -1,13 +1,19 @@
1 NIF (NORMAS DE INFORMACIÓN FINANCIERA)
2 NIF D
[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
3 CIRCULANTES
[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
4 NIF A [link: http://www.youtube.com/watch?v=7YN-sOlkQp0]
4 NIF A
[Link: http://www.youtube.com/watch?v=7YN-sOlkQp0]
4.1 Marco conceptual
5 NIF C [link: https://sites.google.com/site/contabilidadimcpnif/estructura-de-las-nif]
5 NIF C
[Link: https://sites.google.com/site/contabilidadimcpnif/estructura-de-las-nif]
5.1 Normas aplicables a conceptos específicos de los estados financieros
6 NIF E
[Note: Agricultura y donativos recibidos u otorgados con propósitos no lucrativos.]
6.1 Normas aplicables alas actividades especializadas de distintos sectores
7 NIF B [link: http://www.contaduria.uady.mx/files/cuerpo-acad/caef/aief/resumen_NIF_marco_conceptual.pdf]
7 NIF B
[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

View File

@ -29,7 +29,8 @@
1.5.1.1 Orange County Eye and Transplant Bank
1.5.1.2 Northern California Transplant Bank
1.5.1.2.1 In 2010, 2,500 referrals forwarded to OneLegacy
1.5.1.3 Doheny Eye and Tissue Transplant Bank [link: http://www.dohenyeyebank.org/]
1.5.1.3 Doheny Eye and Tissue Transplant Bank
[Link: http://www.dohenyeyebank.org/]
1.5.2 OneLegacy
1.5.2.1 In 2010, 11,828 referrals
1.5.3 San Diego Eye Bank

View File

@ -1,13 +1,15 @@
1 Welcome To WiseMapping
1.1 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]
1.2 Try it Now!
1.2.1 Double Click
1.2.2 Press "enter" to add a
Sibling
1.2.3 Drag map to move
1.3 Features
1.3.1 Links to Sites [link: http://www.digg.com]
1.3.1 Links to Sites
[Link: http://www.digg.com]
1.3.2 Styles
1.3.2.1 Fonts
1.3.2.2 Topic Shapes
@ -24,8 +26,10 @@ Sibling
1.5.2 Brainstorming
1.5.3 Visual
1.6 Install In Your Server
1.6.1 Open Source [link: http://www.wisemapping.org/]
1.6.2 Download [link: http://www.wisemapping.com/inyourserver.html]
1.6.1 Open Source
[Link: http://www.wisemapping.org/]
1.6.2 Download
[Link: http://www.wisemapping.com/inyourserver.html]
1.7 Collaborate
1.7.1 Embed
1.7.2 Publish