Skip to content
This repository was archived by the owner on Jun 14, 2019. It is now read-only.

Commit 27bccf3

Browse files
committed
Under working progress, contact me for free.
1 parent 19071ed commit 27bccf3

15 files changed

+15
-14
lines changed

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
install_requires=["distribute"],
1212

1313
author="Woody Ai",
14-
author_email="woody@xmind.net",
14+
author_email="aiqi@xmind.net",
1515
description="The offical XMind python SDK",
1616
license="MIT",
1717
keywords="XMind, SDK, mind mapping",

Diff for: xmind/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313

1414
__version__ = "0.1a.0"
15+
__author__ = "[email protected] <Woody Ai>"
1516

1617
from xmind.core.loader import WorkbookLoader
1718
from xmind.core.saver import WorkbookSaver

Diff for: xmind/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515

1616
from xml.dom import minidom as DOM

Diff for: xmind/core/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
:license:
1010
"""
1111

12-
__author__ = "woody@xmind.net <Woody Ai>"
12+
__author__ = "aiqi@xmind.net <Woody Ai>"
1313

1414
XMIND_EXT = ".xmind"
1515

Diff for: xmind/core/loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616
from .workbook import WorkbookDocument

Diff for: xmind/core/mixin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616
from . import Element

Diff for: xmind/core/notes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616

Diff for: xmind/core/position.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616

Diff for: xmind/core/relationship.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
:license:
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616

Diff for: xmind/core/saver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
import codecs
1616

Diff for: xmind/core/sheet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
:license:
1212
"""
1313

14-
__author__ = "woody@xmind.net <Woody Ai>"
14+
__author__ = "aiqi@xmind.net <Woody Ai>"
1515

1616
from . import const
1717

Diff for: xmind/core/title.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616

Diff for: xmind/core/topic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
"""
1212

13-
__author__ = "woody@xmind.net <Woody Ai>"
13+
__author__ = "aiqi@xmind.net <Woody Ai>"
1414

1515
from . import const
1616

Diff for: xmind/core/workbook.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
:license:
1313
"""
1414

15-
__author__ = "woody@xmind.net <Woody Ai>"
15+
__author__ = "aiqi@xmind.net <Woody Ai>"
1616

1717

1818
from . import Document

Diff for: xmind/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
:license:
1414
"""
1515

16-
__author__ = "woody@xmind.net <Woody Ai>"
16+
__author__ = "aiqi@xmind.net <Woody Ai>"
1717

1818
import os
1919
import time

0 commit comments

Comments
 (0)