Skip to content

Commit

Permalink
update code for hackathon
Browse files Browse the repository at this point in the history
  • Loading branch information
gleitz committed Mar 26, 2012
1 parent 4d699bb commit 0533bf5
Show file tree
Hide file tree
Showing 39 changed files with 2,130 additions and 1,955 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,7 @@ Getting started
1. Download the [Google App Engine Python SDK](http://code.google.com/appengine/downloads.html) 1. Download the [Google App Engine Python SDK](http://code.google.com/appengine/downloads.html)


2. Test your app loads the test page 2. Test your app loads the test page
* run `python dev_server.sh` (this defaults to running on port 80 which may require root permissions) * run `sh dev_server.sh` (this defaults to running on port 80 which may require root permissions)
* open a web browser and navigate to [http://localhost](http://localhost) * open a web browser and navigate to [http://localhost](http://localhost)
* ensure that you see the success page * ensure that you see the success page
* now navigate to [http://localhost/gifts/](http://localhost/gifts/) * now navigate to [http://localhost/gifts/](http://localhost/gifts/)
Expand Down
10 changes: 5 additions & 5 deletions app/templates/base.html
Expand Up @@ -10,11 +10,11 @@
</head> </head>
<body class="{% block body_class %}{% endblock %}"> <body class="{% block body_class %}{% endblock %}">
<div id="container"> <div id="container">
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div> </div>
<script src="/media/js/jquery-1.4.2.min.js"></script> <script src="/media/js/jquery-1.4.2.min.js"></script>
<script src="/media/js/mustache.js"></script> <script src="/media/js/mustache.js"></script>
<script src="/media/js/jquery.placeholder.min.js"></script> <script src="/media/js/jquery.placeholder.min.js"></script>
{% block scripts %}{% endblock %} {% block scripts %}{% endblock %}
</body> </body>
</html> </html>
Empty file modified djangoappengine/LICENSE 100755 → 100644
Empty file.
Empty file modified djangoappengine/__init__.py 100755 → 100644
Empty file.
366 changes: 188 additions & 178 deletions djangoappengine/boot.py 100755 → 100644

Large diffs are not rendered by default.

Empty file modified djangoappengine/db/__init__.py 100755 → 100644
Empty file.
389 changes: 158 additions & 231 deletions djangoappengine/db/base.py 100755 → 100644

Large diffs are not rendered by default.

0 comments on commit 0533bf5

Please sign in to comment.