Skip to content

Commit

Permalink
Migrate to Python 2.7, HRD
Browse files Browse the repository at this point in the history
  • Loading branch information
feklee committed Oct 13, 2013
1 parent b6e89a6 commit 407a0fd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
14 changes: 10 additions & 4 deletions app.yaml
@@ -1,4 +1,4 @@
# Copyright 2009, 2011 Felix E. Klee <felix.klee@inka.de> # Copyright 2009 - 2013 Felix E. Klee <felix.klee@inka.de>
# #
# Licensed under the Apache License, Version 2.0 (the "License"); you may not # Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of # use this file except in compliance with the License. You may obtain a copy of
Expand All @@ -12,10 +12,16 @@
# License for the specific language governing permissions and limitations under # License for the specific language governing permissions and limitations under
# the License. # the License.


application: rotogame application: rotogame-hrd
version: 6 version: 1
runtime: python runtime: python27
api_version: 1 api_version: 1
threadsafe: false # because: "threadsafe cannot be enabled with CGI handler:
# main.py"

libraries:
- name: django
version: "1.2"


handlers: handlers:
- url: /javascript - url: /javascript
Expand Down
4 changes: 2 additions & 2 deletions game.html
@@ -1,3 +1,5 @@
{%extends "base.html"%}

{%comment%} {%comment%}
Copyright 2009, 2011 Felix E. Klee <felix.klee@inka.de> Copyright 2009, 2011 Felix E. Klee <felix.klee@inka.de>


Expand All @@ -14,8 +16,6 @@
the License. the License.
{%endcomment%} {%endcomment%}


{%extends "base.html"%}

{%block head%} {%block head%}
<title>Roto Game {{board_id}}</title> <title>Roto Game {{board_id}}</title>
<link rel="stylesheet" href="/stylesheets/game.css"/> <link rel="stylesheet" href="/stylesheets/game.css"/>
Expand Down
4 changes: 2 additions & 2 deletions index.html
@@ -1,3 +1,5 @@
{%extends "base.html"%}

{%comment%} {%comment%}
Copyright 2009, 2011 Felix E. Klee <felix.klee@inka.de> Copyright 2009, 2011 Felix E. Klee <felix.klee@inka.de>


Expand All @@ -14,8 +16,6 @@
the License. the License.
{%endcomment%} {%endcomment%}


{%extends "base.html"%}

{%block head%} {%block head%}
<title>Roto Game</title> <title>Roto Game</title>
<link rel="stylesheet" href="/stylesheets/index.css"/> <link rel="stylesheet" href="/stylesheets/index.css"/>
Expand Down

0 comments on commit 407a0fd

Please sign in to comment.