summaryrefslogtreecommitdiff
path: root/docs/getting_started/quick_glance/static_assets
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getting_started/quick_glance/static_assets')
-rw-r--r--docs/getting_started/quick_glance/static_assets/app.py14
-rw-r--r--docs/getting_started/quick_glance/static_assets/hello_world.jinja210
-rw-r--r--docs/getting_started/quick_glance/static_assets/hello_world.pt16
-rw-r--r--docs/getting_started/quick_glance/static_assets/static/app.css4
-rw-r--r--docs/getting_started/quick_glance/static_assets/views.py6
5 files changed, 0 insertions, 50 deletions
diff --git a/docs/getting_started/quick_glance/static_assets/app.py b/docs/getting_started/quick_glance/static_assets/app.py
deleted file mode 100644
index 9c808972f..000000000
--- a/docs/getting_started/quick_glance/static_assets/app.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from wsgiref.simple_server import make_server
-from pyramid.config import Configurator
-
-if __name__ == '__main__':
- config = Configurator()
- config.add_route('hello', '/howdy/{name}')
- # Start Static 1
- config.add_static_view(name='static', path='static')
- # End Static 1
- config.include('pyramid_jinja2')
- config.scan('views')
- app = config.make_wsgi_app()
- server = make_server('0.0.0.0', 6543, app)
- server.serve_forever() \ No newline at end of file
diff --git a/docs/getting_started/quick_glance/static_assets/hello_world.jinja2 b/docs/getting_started/quick_glance/static_assets/hello_world.jinja2
deleted file mode 100644
index f6862e618..000000000
--- a/docs/getting_started/quick_glance/static_assets/hello_world.jinja2
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <title>Quick Glance</title>
- <link rel="stylesheet" href="/static/app.css"/>
-</head>
-<body>
-<h1>Hello {{ name }}!</h1>
-</body>
-</html> \ No newline at end of file
diff --git a/docs/getting_started/quick_glance/static_assets/hello_world.pt b/docs/getting_started/quick_glance/static_assets/hello_world.pt
deleted file mode 100644
index 1797146eb..000000000
--- a/docs/getting_started/quick_glance/static_assets/hello_world.pt
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html lang="en"><head>
- <title>Quick Glance</title>
- <!-- Start Link 1 -->
- <link rel="stylesheet" href="/static/app.css" />
- <!-- End Link 1 -->
- <!-- Start Link 2 -->
- <link rel="stylesheet"
- href="${request.static_url('static/app.css')}"
- />
- <!-- End Link 2 -->
-</head>
-<body>
-<h1>Hello ${name}!</h1>
-</body>
-</html> \ No newline at end of file
diff --git a/docs/getting_started/quick_glance/static_assets/static/app.css b/docs/getting_started/quick_glance/static_assets/static/app.css
deleted file mode 100644
index f8acf3164..000000000
--- a/docs/getting_started/quick_glance/static_assets/static/app.css
+++ /dev/null
@@ -1,4 +0,0 @@
-body {
- margin: 2em;
- font-family: sans-serif;
-} \ No newline at end of file
diff --git a/docs/getting_started/quick_glance/static_assets/views.py b/docs/getting_started/quick_glance/static_assets/views.py
deleted file mode 100644
index 90730ae32..000000000
--- a/docs/getting_started/quick_glance/static_assets/views.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from pyramid.view import view_config
-
-
-@view_config(route_name='hello', renderer='hello_world.pt')
-def hello_world(request):
- return dict(name=request.matchdict['name'])