Skip to content

Commit 70491e9

Browse files
committed
add new demo anime and update test case
1 parent e07d18d commit 70491e9

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.moban.d/gantt.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ Here is `a sample csv`_ file::
88
Task 3,Write up the documentation,2017-07-21,2017-07-22,0,Task 1,,
99
Task 4,Release pyexcel-gantt,2017-07-23,2017-07-23,0,"Task 2, Task 3",,bar-milestone
1010

11-
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
1211

1312
What you can do is to view it with pyexcel's `command line interface`_:
1413

1514
pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
1615

16+
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/pyexcel-gantt.gif
17+
1718

1819
Programmatically, you can do the following:
1920

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,13 @@ Here is `a sample csv`_ file::
4545
Task 3,Write up the documentation,2017-07-21,2017-07-22,0,Task 1,,
4646
Task 4,Release pyexcel-gantt,2017-07-23,2017-07-23,0,"Task 2, Task 3",,bar-milestone
4747

48-
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
4948

5049
What you can do is to view it with pyexcel's `command line interface`_:
5150

5251
pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
5352

53+
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/pyexcel-gantt.gif
54+
5455

5556
Programmatically, you can do the following:
5657

docs/source/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ Here is `a sample csv`_ file::
2121
Task 3,Write up the documentation,2017-07-21,2017-07-22,0,Task 1,,
2222
Task 4,Release pyexcel-gantt,2017-07-23,2017-07-23,0,"Task 2, Task 3",,bar-milestone
2323

24-
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
2524

2625
What you can do is to view it with pyexcel's `command line interface`_:
2726

2827
pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
2928

29+
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/pyexcel-gantt.gif
30+
3031

3132
Programmatically, you can do the following:
3233

pyexcel-gantt.gif

71.5 KB
Loading

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ def test_freeze_js():
2222
def test_dumps():
2323
data = [date(2017, 7, 19), datetime(2017, 7, 19, 7, 22, 0)]
2424
json = dumps(data)
25-
eq_(json, ["2017-07-19", "2017-07-19"])
25+
eq_(json, '["2017-07-19", "2017-07-19"]')

0 commit comments

Comments
 (0)