Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
e17578be
Commit
e17578be
authored
May 06, 2014
by
Ronny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加链接支持
parent
5844741a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
36 deletions
+55
-36
freemind.js
src/protocal/freemind.js
+16
-10
mindmanager.js
src/protocal/mindmanager.js
+8
-0
xmind.js
src/protocal/xmind.js
+31
-26
No files found.
src/protocal/freemind.js
View file @
e17578be
...
...
@@ -41,6 +41,11 @@ KityMinder.registerProtocal( 'freemind', function () {
}
}
// 处理超链接
if
(
topic
.
LINK
){
obj
.
data
.
hyperlink
=
topic
.
LINK
;
}
//处理子节点
if
(
topic
.
node
){
...
...
@@ -64,6 +69,7 @@ KityMinder.registerProtocal( 'freemind', function () {
var
json
=
$
.
xml2json
(
xml
);
var
result
=
{};
processTopic
(
json
.
node
,
result
);
console
.
log
(
result
);
return
result
;
}
...
...
src/protocal/mindmanager.js
View file @
e17578be
...
...
@@ -43,6 +43,11 @@ KityMinder.registerProtocal( 'mindmanager', function () {
}
}
// 处理超链接
if
(
topic
.
Hyperlink
)
{
obj
.
data
.
hyperlink
=
topic
.
Hyperlink
.
Url
;
}
//处理子节点
if
(
topic
.
SubTopics
&&
topic
.
SubTopics
.
Topic
)
{
...
...
@@ -64,8 +69,11 @@ KityMinder.registerProtocal( 'mindmanager', function () {
function
xml2km
(
xml
)
{
var
json
=
$
.
xml2json
(
xml
);
var
result
=
{};
processTopic
(
json
.
OneTopic
.
Topic
,
result
);
console
.
log
(
result
);
return
result
;
}
...
...
src/protocal/xmind.js
View file @
e17578be
...
...
@@ -48,6 +48,11 @@ KityMinder.registerProtocal( 'xmind', function () {
}
}
// 处理超链接
if
(
topic
[
'xlink:href'
]){
obj
.
data
.
hyperlink
=
topic
[
'xlink:href'
];
}
//处理子节点
if
(
topic
.
children
&&
topic
.
children
.
topics
&&
topic
.
children
.
topics
.
topic
){
var
tmp
=
topic
.
children
.
topics
.
topic
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment