Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d359420

Browse filesBrowse files
committed
Add travis-ci
1 parent 6373412 commit d359420
Copy full SHA for d359420

File tree

Expand file treeCollapse file tree

93 files changed

+99
-3644
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

93 files changed

+99
-3644
lines changed

‎.travis.yml

Copy file name to clipboard
+45Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
language: python3
2+
sudo: required
3+
python:
4+
- "3.6"
5+
6+
notifications:
7+
email:
8+
recipients:
9+
- zhuheqin1@gmail.com
10+
on_success: change # default: change
11+
on_failure: always # default: always
12+
13+
install:
14+
- sudo apt-get install python3 -y
15+
- sudo apt-get install python3-pip -y
16+
- sudo pip3 install markdown
17+
- sudo pip3 install pypinyin
18+
19+
script:
20+
- python3 utils/genReadme.py
21+
- python3 utils/genIndex.py
22+
23+
after_script:
24+
# Build Master Repository(Coding Pages)
25+
- git config user.name "mbinary"
26+
- git config user.email "zhuheqin1@gmail.com"
27+
- cd docs
28+
- git init
29+
- git remote add origin gh-pages https://github.com/USTC-Resource/USTC-Course
30+
- git add --all
31+
- git commit -m "Travis-CI Update pages with build $TRAVIS_BUILD_NUMBER"
32+
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" origin gh-pages
33+
34+
addons:
35+
apt:
36+
update: true
37+
38+
branches:
39+
only:
40+
- master
41+
env:
42+
global:
43+
# Github Pages
44+
- GH_REF: github.com/USTC-Resource/USTC-Course
45+

‎README.md

Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# 中国科学技术大学课程资源
32
[![Stars](https://img.shields.io/github/stars/USTC-Resource/USTC-Course.svg?label=Stars&style=social)](https://github.com/USTC-Resource/USTC-Course/stargazers)
43
[![Forks](https://img.shields.io/github/forks/USTC-Resource/USTC-Course.svg?label=Forks&style=social)](https://github.com/USTC-Resource/USTC-Course/network/members)
@@ -17,16 +16,17 @@
1716
* [贡献投稿](#贡献投稿)
1817

1918
# 版权说明
20-
本仓库分享资料遵守其创作者之规定, 由同学生自愿投稿
19+
本仓库分享资料遵守其创作者之规定, 由同学自愿投稿,仅接收学生原创的或者获得授权的资源
2120

2221
对无特别声明的资料,谨以[知识共享署名 - 非商业性使用 - 相同方式共享 4.0 国际许可协议](http://creativecommons.org/licenses/by-nc-sa/4.0/) 授权。![](https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png)
2322

2423
# 反馈方式
2524
- [issue](https://github.com/USTC-Resource/USTC-Course/issues/new)
2625
- <a href="mailto:&#122;huheqin1@gmail.com?subject=%E5%8F%8D%E9%A6%88%E4%B8%8E%E5%BB%BA%E8%AE%AE">email</a>
27-
- [QQ](http://wpa.qq.com/msgrd?v=3&uin=414313516&site=qq&menu=yes)
2826

2927
# 资料下载
28+
[进入浏览](https://ustc-resource.github.io/USTC-Course)
29+
3030
<!--
3131
## FTP
3232
1. FTP/FTPS:
@@ -48,15 +48,15 @@
4848
4949
5050
## HTTPS
51-
-->
5251
5352
- [github 网页](#课程目录)
54-
- [脚本生成的网页](https://mbinary.xyz/ustc-cs/)
5553
- [DownGit](http://downgit.zhoudaxiaa.com/#/home)
5654
- [gitzip-chrome-extension](https://chrome.google.com/webstore/detail/gitzip-for-github/ffabmkklhbepgcgfonabamgnfafbdlkn)
5755
5856
注意,建议不要直接用 GitHub 仓库的 `Download Zip`。因为网速慢,而且仓库很大,很可能下载到中途就切断连接了。
59-
推荐用 DownGit 工具,方法很简单,在 GitHub 这里浏览网页到某个文件夹,然后将这个网页地址粘贴到 gitzip 下载即可。
57+
推荐用 DownGit 工具,方法很简单,在 GitHub 这里浏览网页到某个文件夹,然后将这个网页地址粘贴到 DownGit 下载即可。
58+
59+
-->
6060

6161
# 课程结构
6262
每门课程大致结构如下,有些栏目可能没有,也可以自己添加认为合理的栏目
@@ -69,7 +69,6 @@ course
6969
├ labs
7070
├ exams
7171
├ notes
72-
├ experience
7372
└ README.md
7473
```
7574
# 课程关系
@@ -84,8 +83,8 @@ course
8483
* [编译原理和技术](./编译原理和技术)
8584
* [操作系统原理与设计](./操作系统原理与设计)
8685
* [c程序设计](./c程序设计)
86+
* [代数结构](./代数结构)
8787
* [大学物理实验](./大学物理实验)
88-
* [docs](./docs)
8988
* [计算机网络](./计算机网络)
9089
* [计算机系统详解(csapp)](./计算机系统详解(csapp))
9190
* [计算机与信息类](./计算机与信息类)
@@ -101,6 +100,7 @@ course
101100

102101
# 贡献投稿
103102
欢迎大家的参与与贡献^_^ , 欢迎联系 org 管理员, 申请加入 USTC-Resource org。
103+
* 仅接受学生原创的或者获得授权的资源
104104
* github 上不能直接上传大于 100mb 的文件。对于超过 100 mb 的文件,可以存在网盘,然后在 README 文件中贴上链接
105105
* 文件内容的改动会使 git 重新上传, 在没有必要的情况下, 不要对二进制文件做任何更改.
106106

‎_config.yml

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
theme: jekyll-theme-cayman
1+
theme: jekyll-theme-cayman

‎before_commit.sh

Copy file name to clipboardExpand all lines: before_commit.sh
-15Lines changed: 0 additions & 15 deletions
This file was deleted.

‎docs/Web-信息处理与应用/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/index.html
-32Lines changed: 0 additions & 32 deletions
This file was deleted.

‎docs/Web-信息处理与应用/labs/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/labs/index.html
-32Lines changed: 0 additions & 32 deletions
This file was deleted.

‎docs/Web-信息处理与应用/labs/lab1-搜索引擎/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/labs/lab1-搜索引擎/index.html
-33Lines changed: 0 additions & 33 deletions
This file was deleted.

‎docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/ICTCLAS_Analyzer/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/ICTCLAS_Analyzer/index.html
-35Lines changed: 0 additions & 35 deletions
This file was deleted.

‎docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/WebContent/META-INF/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/WebContent/META-INF/index.html
-31Lines changed: 0 additions & 31 deletions
This file was deleted.

‎docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/WebContent/WEB-INF/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/WebContent/WEB-INF/index.html
-31Lines changed: 0 additions & 31 deletions
This file was deleted.

‎docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/WebContent/index.html

Copy file name to clipboardExpand all lines: docs/Web-信息处理与应用/labs/lab1-搜索引擎/src/WebContent/index.html
-37Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.