Skip to content

Commit 26e16d7

Browse files
committed
fix html
1 parent 8ea87d8 commit 26e16d7

File tree

16 files changed

+1227
-361
lines changed

16 files changed

+1227
-361
lines changed

SUMMARY.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

_build/doctrees/docs/index.doctree

4.78 KB
Binary file not shown.

_build/doctrees/environment.pickle

592 Bytes
Binary file not shown.

_build/doctrees/index.doctree

470 Bytes
Binary file not shown.

_build/doctrees/src/index.doctree

18.5 KB
Binary file not shown.

_build/html/_sources/docs/index.txt

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
1-
========
1+
22
说明文档
3-
========
4-
note:
3+
***********
4+
Note:
5+
<1> 开发工具
6+
7+
code::blocks , markdownpad;
8+
9+
<2>流程图制作工具
10+
11+
MS Visio 以及 gliffy ;
12+
13+
<3>开发语言
14+
15+
C语言,markdown 文本标记语言;
16+
17+
<4>项目托管
18+
19+
该项目托管在github上,可以在其上查看和访问该项目的源码及数据等;
20+
21+
<5>程序运行方法
22+
23+
1. ./airlineproject 路径下双击 airlineproject.cbp 便可以在code::blocks 下打开该项目,然后编译后即可运行;
24+
25+
2. ./Runnable 路径下双击 airlineproject.exe 便可以正常运行 (推荐);
26+
27+
3. ./src 下存放着源码,将其连同 flight_info.csv和 guest_info.csv 文件一同复制到新建工程下编译运行;
28+
29+
Note:该工程在code::blocks上开发,不保证VC6.0可以正常编译运行,因为我们都知道VC6.0是主要支持 C++ 的,只是兼容 C而已,况且其版本过低。
30+
31+
<6>如何查看源码
32+
33+
1.通过点击这里或者访问https://github.com/AutuanLiu/Ticket ; <源码存在于 src 目录下 >;
34+
35+
2../src 路径下即为源码,可以通过记事本查看,或者 notepad++ 、gvim 、Sublime Text等其他代码编辑器查看。
536

37+
3. Backupdata.csv 文件为备用数据,可以不用理会;
38+
639

_build/html/_sources/index.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111

1212
目录
1313
----
14-
14+
设计说明
15+
***********
16+
源代码
17+
*************
1518
.. toctree::
1619
:maxdepth: 3
17-
20+
1821
docs/index
1922
src/index
2023

_build/html/_sources/src/index.txt

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
========
1+
22
源代码
3-
========
3+
********
44
Reader.c 用于读取文件
55

66
.. literalinclude:: Reader.c
7-
.. code-block:: c
8-
:linenos:
7+
:language: c
8+
:linenos:
9+
910
Writer.c 用于写入文件
1011

1112
.. literalinclude:: Writer.c
@@ -24,12 +25,24 @@ adt.h 用于数据结构的存储
2425
:language: c
2526
:linenos:
2627

27-
PublicInfo.h用于引入外部或全局变量
28+
PublicInfo.h用于引入外部或全局变量
2829

2930
.. literalinclude:: PublicInfo.h
3031
:language: c
3132
:linenos:
3233

34+
FlightInfo.c用于航班信息
35+
36+
.. literalinclude:: FlightInfo.c
37+
:language: c
38+
:linenos:
39+
40+
GuestInfo.c用于客户信息
41+
42+
.. literalinclude:: GuestInfo.c
43+
:language: c
44+
:linenos:
45+
3346
Operations.c用于各类的功能实现
3447

3548
.. literalinclude:: Operations.c

_build/html/docs/index.html

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,28 @@ <h3>导航</h3>
5252

5353
<div class="section" id="id1">
5454
<h1>说明文档<a class="headerlink" href="#id1" title="永久链接至标题"></a></h1>
55-
<p>note:</p>
55+
<p>Note:
56+
&lt;1&gt; 开发工具</p>
57+
<p>code::blocks , markdownpad;</p>
58+
<p>&lt;2&gt;流程图制作工具</p>
59+
<p>MS Visio 以及 gliffy ;</p>
60+
<p>&lt;3&gt;开发语言</p>
61+
<p>C语言,markdown 文本标记语言;</p>
62+
<p>&lt;4&gt;项目托管</p>
63+
<p>该项目托管在github上,可以在其上查看和访问该项目的源码及数据等;</p>
64+
<p>&lt;5&gt;程序运行方法</p>
65+
<ol class="arabic simple">
66+
<li>./airlineproject 路径下双击 airlineproject.cbp 便可以在code::blocks 下打开该项目,然后编译后即可运行;</li>
67+
<li>./Runnable 路径下双击 airlineproject.exe 便可以正常运行 (推荐);</li>
68+
<li>./src 下存放着源码,将其连同 flight_info.csv和 guest_info.csv 文件一同复制到新建工程下编译运行;</li>
69+
</ol>
70+
<p>Note:该工程在code::blocks上开发,不保证VC6.0可以正常编译运行,因为我们都知道VC6.0是主要支持 C++ 的,只是兼容 C而已,况且其版本过低。</p>
71+
<p>&lt;6&gt;如何查看源码</p>
72+
<p>1.通过点击这里或者访问https://github.com/AutuanLiu/Ticket ; &lt;源码存在于 src 目录下 &gt;;</p>
73+
<p>2../src 路径下即为源码,可以通过记事本查看,或者 notepad++ 、gvim 、Sublime Text等其他代码编辑器查看。</p>
74+
<ol class="arabic simple" start="3">
75+
<li>Backupdata.csv 文件为备用数据,可以不用理会;</li>
76+
</ol>
5677
</div>
5778

5879

_build/html/index.html

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,19 @@ <h3>程序运行方法<a class="headerlink" href="#id6" title="永久链接至
9191
</div>
9292
<div class="section" id="id7">
9393
<h3>流程图<a class="headerlink" href="#id7" title="永久链接至标题"></a></h3>
94-
<div class="figure" id="id10">
94+
<div class="figure" id="id12">
9595
<a class="reference internal image-reference" href="_images/FlowChart.png"><img alt="_images/FlowChart.png" src="_images/FlowChart.png" /></a>
9696
<p class="caption"><span class="caption-text">图1:程序主要功能以及数据传输流程图</span></p>
9797
</div>
9898
</div>
9999
</div>
100100
<div class="section" id="id8">
101101
<h2>目录<a class="headerlink" href="#id8" title="永久链接至标题"></a></h2>
102+
<div class="section" id="id9">
103+
<h3>设计说明<a class="headerlink" href="#id9" title="永久链接至标题"></a></h3>
104+
</div>
105+
<div class="section" id="id10">
106+
<h3>源代码<a class="headerlink" href="#id10" title="永久链接至标题"></a></h3>
102107
<div class="toctree-wrapper compound">
103108
<ul>
104109
<li class="toctree-l1"><a class="reference internal" href="docs/index.html">说明文档</a></li>
@@ -108,8 +113,9 @@ <h2>目录<a class="headerlink" href="#id8" title="永久链接至标题">¶</a>
108113
</ul>
109114
</div>
110115
</div>
111-
<div class="section" id="id9">
112-
<h2>贡献者列表<a class="headerlink" href="#id9" title="永久链接至标题"></a></h2>
116+
</div>
117+
<div class="section" id="id11">
118+
<h2>贡献者列表<a class="headerlink" href="#id11" title="永久链接至标题"></a></h2>
113119
<p>感谢同组成员的共同努力,我们才赢得了这个项目的完美成功:</p>
114120
<p>智慧是一切的来源!</p>
115121
<ol class="arabic">
@@ -148,8 +154,12 @@ <h3><a href="#">內容目录</a></h3>
148154
<li><a class="reference internal" href="#id7">流程图</a></li>
149155
</ul>
150156
</li>
151-
<li><a class="reference internal" href="#id8">目录</a></li>
152-
<li><a class="reference internal" href="#id9">贡献者列表</a></li>
157+
<li><a class="reference internal" href="#id8">目录</a><ul>
158+
<li><a class="reference internal" href="#id9">设计说明</a></li>
159+
<li><a class="reference internal" href="#id10">源代码</a></li>
160+
</ul>
161+
</li>
162+
<li><a class="reference internal" href="#id11">贡献者列表</a></li>
153163
</ul>
154164
</li>
155165
</ul>

_build/html/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)