-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f0f1582
Showing
266 changed files
with
64,867 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "static/bower/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
env/ | ||
.project | ||
.pydevproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "GitTrainingWall", | ||
"version": "1.0", | ||
"authors": [ | ||
"BrOrlandi <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"static/bower/", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"materialize": "~0.97.0", | ||
"fontawesome": "~4.4.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Flask==0.10.1 | ||
Jinja2==2.8 | ||
MarkupSafe==0.23 | ||
Werkzeug==0.10.4 | ||
argparse==1.2.1 | ||
itsdangerous==0.24 | ||
wsgiref==0.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from flask import Flask | ||
from flask.helpers import url_for | ||
from flask.templating import render_template | ||
import os | ||
|
||
app = Flask(__name__) | ||
|
||
|
||
def list_users(): | ||
users = os.listdir('./templates/users') | ||
return users | ||
|
||
@app.route('/static/<path:path>') | ||
def send_static(path): | ||
return send_from_directory('static', path) | ||
|
||
@app.route('/') | ||
def index(): | ||
return render_template('index.html',users=list_users()) | ||
|
||
@app.route('/users') | ||
def get_users(): | ||
return '%d'%len(list_users()) | ||
|
||
if __name__ == '__main__': | ||
app.run(host='0.0.0.0') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "font-awesome", | ||
"description": "Font Awesome", | ||
"keywords": [], | ||
"homepage": "http://fontawesome.io", | ||
"dependencies": {}, | ||
"devDependencies": {}, | ||
"license": [ | ||
"OFL-1.1", | ||
"MIT", | ||
"CC-BY-3.0" | ||
], | ||
"main": [ | ||
"less/font-awesome.less", | ||
"scss/font-awesome.scss" | ||
], | ||
"ignore": [ | ||
"*/.*", | ||
"*.json", | ||
"src", | ||
"*.yml", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"*.md" | ||
], | ||
"version": "4.4.0", | ||
"_release": "4.4.0", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v4.4.0", | ||
"commit": "f2cc73da12f0e6d828bc2daaa72bff457067bf39" | ||
}, | ||
"_source": "git://github.com/FortAwesome/Font-Awesome.git", | ||
"_target": "~4.4.0", | ||
"_originalSource": "fontawesome", | ||
"_direct": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
*.pyc | ||
*.egg-info | ||
*.db | ||
*.db.old | ||
*.swp | ||
*.db-journal | ||
|
||
.coverage | ||
.DS_Store | ||
.installed.cfg | ||
_gh_pages/* | ||
|
||
.idea/* | ||
.svn/* | ||
src/website/static/* | ||
src/website/media/* | ||
|
||
bin | ||
cfcache | ||
develop-eggs | ||
dist | ||
downloads | ||
eggs | ||
parts | ||
tmp | ||
.sass-cache | ||
node_modules | ||
|
||
src/website/settingslocal.py | ||
stunnel.log | ||
|
||
.ruby-version | ||
.bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
*.pyc | ||
*.egg-info | ||
*.db | ||
*.db.old | ||
*.swp | ||
*.db-journal | ||
|
||
.coverage | ||
.DS_Store | ||
.installed.cfg | ||
_gh_pages/* | ||
|
||
.idea/* | ||
.svn/* | ||
src/website/static/* | ||
src/website/media/* | ||
|
||
bin | ||
cfcache | ||
develop-eggs | ||
dist | ||
downloads | ||
eggs | ||
parts | ||
tmp | ||
.sass-cache | ||
node_modules | ||
|
||
src/website/settingslocal.py | ||
stunnel.log | ||
|
||
.ruby-version | ||
|
||
# don't need these in the npm package. | ||
src/ | ||
_config.yml | ||
bower.json | ||
component.json | ||
composer.json | ||
CONTRIBUTING.md | ||
Gemfile | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, | ||
Fonticons (https://fonticons.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, | ||
comprehensive icon sets or copy and paste your own. | ||
|
||
Please. Check it out. | ||
|
||
-Dave Gandy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "font-awesome", | ||
"description": "Font Awesome", | ||
"keywords": [], | ||
"homepage": "http://fontawesome.io", | ||
"dependencies": {}, | ||
"devDependencies": {}, | ||
"license": ["OFL-1.1", "MIT", "CC-BY-3.0"], | ||
"main": [ | ||
"less/font-awesome.less", | ||
"scss/font-awesome.scss" | ||
], | ||
"ignore": [ | ||
"*/.*", | ||
"*.json", | ||
"src", | ||
"*.yml", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"*.md" | ||
] | ||
} |
Oops, something went wrong.