-
Notifications
You must be signed in to change notification settings - Fork 1
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
Chris Brown
committed
Sep 29, 2014
0 parents
commit b88784a
Showing
76 changed files
with
15,952 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,4 @@ | ||
*# | ||
/.sass-cache/ | ||
*~ | ||
/simple-fileserver* |
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,23 @@ | ||
application: my-io-talk | ||
version: 1 | ||
runtime: python27 | ||
api_version: 1 | ||
threadsafe: yes | ||
|
||
handlers: | ||
- url: / | ||
static_files: template.html | ||
upload: template\.html | ||
|
||
- url: /slide_config\.js | ||
static_files: slide_config.js | ||
upload: slide_config\.js | ||
|
||
- url: /js | ||
static_dir: js | ||
|
||
- url: /theme | ||
static_dir: theme | ||
|
||
- url: /images | ||
static_dir: images |
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 @@ | ||
<html> | ||
<head> | ||
<title>A Leaflet map!</title> | ||
|
||
<!-- Load leaflet javascript and CSS files --> | ||
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/> | ||
<script src="/static/lib/js/leaflet-src.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<!-- Load CSS for page --> | ||
<link rel="stylesheet" href="/static/css/main.css"/> | ||
<div id="basic-map">Leaflet</div> | ||
</body> | ||
|
||
<footer> | ||
<!-- Load javascript to display map --> | ||
<script src="/static/js/basic.js"></script> | ||
</footer> | ||
|
||
</html> |
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,24 @@ | ||
# Require any additional compass plugins here. | ||
|
||
# Set this to the root of your project when deployed: | ||
http_path = "/" | ||
css_dir = "static/css" | ||
sass_dir = "static/scss" | ||
images_dir = "static/images" | ||
javascripts_dir = "static/js" | ||
|
||
# You can select your preferred output style here (can be overridden via the command line): | ||
output_style = :compressed #:expanded or :nested or :compact or :compressed | ||
|
||
# To enable relative paths to assets via compass helper functions. Uncomment: | ||
# relative_assets = true | ||
|
||
# To disable debugging comments that display the original location of your selectors. Uncomment: | ||
# line_comments = false | ||
|
||
|
||
# If you prefer the indented syntax, you might want to regenerate this | ||
# project again passing --syntax sass, or you can uncomment this: | ||
# preferred_syntax = :sass | ||
# and then run: | ||
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass |
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 @@ | ||
<html> | ||
<head> | ||
<title>Using Leaflet Plugins</title> | ||
|
||
<!-- Load leaflet javascript and CSS files --> | ||
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/> | ||
<script src="/static/lib/js/leaflet-src.js"></script> | ||
|
||
<!-- Load jquery from google cdn (should be cached by most browsers) --> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | ||
|
||
<!-- Load leaflet marker cluster plugin files --> | ||
<link rel="stylesheet" href="/static/lib/css/MarkerCluster.Default.css"/> | ||
<link rel="stylesheet" href="/static/lib/css/MarkerCluster.css"/> | ||
<script src="/static/lib/js/leaflet.markercluster.js"></script> | ||
|
||
<!-- Load leaflet omnivore plugin.js --> | ||
<script src="//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.1.2/leaflet-omnivore.min.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<!-- Load CSS for page --> | ||
<link rel="stylesheet" href="/static/css/main.css"/> | ||
<div id="basic-map">Leaflet</div> | ||
</body> | ||
|
||
<footer> | ||
<!-- Load javascript to display map --> | ||
<script src="/static/js/leaflet-plugins-example.js"></script> | ||
</footer> | ||
|
||
</html> |
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 @@ | ||
<html> | ||
<head> | ||
<title>Multiple Layers Map!</title> | ||
|
||
<!-- Load leaflet javascript and CSS files --> | ||
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/> | ||
<script src="/static/lib/js/leaflet-src.js"></script> | ||
|
||
</head> | ||
|
||
<body> | ||
<!-- Load CSS for page --> | ||
<link rel="stylesheet" href="/static/css/main.css"/> | ||
<div id="basic-map">Leaflet</div> | ||
</body> | ||
|
||
<footer> | ||
<!-- Load javascript to display multiple layers --> | ||
<script src="/static/js/multiple-tilelayers.js"></script> | ||
</footer> | ||
|
||
</html> |
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,24 @@ | ||
<html> | ||
<head> | ||
<title>Showing Points</title> | ||
|
||
<!-- Load leaflet javascript and CSS files --> | ||
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/> | ||
<script src="/static/lib/js/leaflet-src.js"></script> | ||
|
||
<!-- Load jquery from google cdn (should be cached by most browsers) --> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<!-- Load CSS for page --> | ||
<link rel="stylesheet" href="/static/css/main.css"/> | ||
<div id="basic-map">Leaflet</div> | ||
</body> | ||
|
||
<footer> | ||
<!-- Load javascript to display map --> | ||
<script src="/static/js/points.js"></script> | ||
</footer> | ||
|
||
</html> |
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,24 @@ | ||
<html> | ||
<head> | ||
<title>Philadelphia Neighborhoods</title> | ||
|
||
<!-- Load leaflet javascript and CSS files --> | ||
<link rel="stylesheet" href="/static/lib/css/leaflet.css"/> | ||
<script src="/static/lib/js/leaflet-src.js"></script> | ||
|
||
<!-- Load jquery from google cdn (should be cached by most browsers) --> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<!-- Load CSS for page --> | ||
<link rel="stylesheet" href="/static/css/main.css"/> | ||
<div id="basic-map">Leaflet</div> | ||
</body> | ||
|
||
<footer> | ||
<!-- Load javascript to display map --> | ||
<script src="/static/js/polygons.js"></script> | ||
</footer> | ||
|
||
</html> |
Oops, something went wrong.