Skip to content
This repository was archived by the owner on May 7, 2020. It is now read-only.

Commit 71f0820

Browse files
committed
first commit of tcprojwrapper
0 parents  commit 71f0820

File tree

140 files changed

+18632
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+18632
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.env
2+
private

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "cinder"]
2+
path = cinder
3+
url = [email protected]:topcoderinc/cinder.git

bin/setup.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
echo 'enter NEW project name'
2+
read name
3+
4+
//git clone --recursive [email protected]:topcoderinc/tcProjWrapper.git drone-series
5+
sed -i.bak s/tcprojWrapper/${name}/g mkdocs.yml && rm mkdocs.yml.bak
6+
rm -rf .git*
7+
git init
8+
git add .
9+
git commit -am 'first commit to ${name}, templated from [email protected]:topcoderinc/tcProjWrapper.git '
10+
mkdir src
11+
git submodule add [email protected]:topcoderinc/dsp-server.git src/dsp-server
12+
git submodule add [email protected]:topcoderinc/dsp-server.git src/dsp-frontend

cinder/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build
2+
dist
3+
mkdocs_cinder.egg-info/

cinder/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Changelog
2+
3+
### v0.9.4
4+
5+
- added support for H3 header titles in sidebar menu (PR #9)
6+
7+
### v0.9.3
8+
9+
- Added support for > 2 level dropdown link depth (Issue #1 with PR #3)
10+
- Updated Hack web fonts to v2.018
11+
12+
### v0.9.2
13+
14+
- Updated Hack web fonts to v2.015.
15+
16+
17+
### v0.9.1
18+
19+
- modified the width of the footer horizontal line to avoid overlap with long TOC in the left sidebar
20+
- minified the Bootstrap CSS
21+
- modified the formatting of license declaration displays in the footer
22+
23+
### v0.9.0
24+
25+
- Initial release

cinder/LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Chris Simpkins
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

cinder/MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
recursive-include cinder *.ico *.js *.css *.png *.html *.eot *.svg *.ttf *.woff *.woff2
2+
recursive-exclude * __pycache__
3+
recursive-exclude * *.py[co]
4+
include README.md
5+
include LICENSE.md

cinder/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<a href="http://sourcefoundry.org/cinder/"><img src="img/header.png" alt="Cinder | A clean, responsive theme for MkDocs" width="728"></a>
2+
3+
## Cinder
4+
5+
A clean, responsive MkDocs static documentation site generator theme
6+
7+
[Demo and Documentation](http://sourcefoundry.org/cinder/)
8+

cinder/cinder/404.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{% extends "base.html" %}
2+
3+
{% block content %}
4+
5+
<div class="row-fluid">
6+
<div id="main-content" class="span12">
7+
<h1 id="404-page-not-found" style="text-align: center">404</h1>
8+
<p style="text-align: center"><strong>Page not found</strong></p>
9+
<p style="text-align: center"><a href="{{ base_url }}">Home</a></p>
10+
</div>
11+
</div>
12+
13+
{% endblock %}

cinder/cinder/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)