All Pastes
Paste #84, pasted on May 29, 2010 3:17:15 AM
Traceback (most recent call last): File "/home/iijima/gae/myproject/kay/lib/werkzeug/wsgi.py", line 466, in __call__ return app(environ, start_response) ...
Paste #83, pasted on May 15, 2010 7:23:34 PM
zdsaa
Paste #82, pasted on May 15, 2010 6:09:15 PM
def get_schema_kinds(): """Returns the list of kinds for this app.""" class KindStatError(Exception): """Unable to find kind stats for an all-kinds download.""" ...
Paste #81, pasted on May 14, 2010 7:36:13 AM
diff -uNr google_appengine_1.3.3/README google_appengine_1.3.4_prerelease/README --- google_appengine_1.3.3/README 2010-04-20 03:02:10.000000000 +0900 +++ google_appengine_1.3.4_prerelease/README 2010-05-13 06:32:44.000000000 +0900 @@ -54,8 +54,11 @@ Address to which this server should bind. (Default ...
Paste #80, pasted on May 14, 2010 7:31:30 AM
diff -uNr google_appengine_1.3.3/README google_appengine_1.3.4_prerelease/README --- google_appengine_1.3.3/README 2010-04-20 03:02:10.000000000 +0900 +++ google_appengine_1.3.4_prerelease/README 2010-05-13 06:32:44.000000000 +0900 @@ -54,8 +54,11 @@ Address to which this server should bind. (Default ...
Paste #79, pasted on May 11, 2010 10:14:33 PM
# myapp/urls.py from kay import generics class MyThumbnailTypeCRUDViewGroup(generics.CRUDViewGroup): ...
Paste #78, pasted on May 11, 2010 10:12:30 PM
# myapp/forms.py from kay.utils.forms.modelform import ModelForm from myapp.models import ThumbnailType class ThumbnailTypeForm(ModelForm): class Meta: ...
Paste #77, pasted on May 11, 2010 10:10:33 PM
# myapp/models.py from google.appengine.ext import db class ThumbnailType(db.Model): created = db.DateTimeProperty(auto_now_add=True) updated = db.DateTimeProperty(auto_now=True) ...
Paste #76, pasted on May 11, 2010 10:09:16 PM
# myapp/models.py class ThumbnailType(db.Model): created = db.DateTimeProperty(auto_now_add=True) updated = db.DateTimeProperty(auto_now=True) ...
Paste #75, pasted on May 11, 2010 11:53:29 AM
INSTALLED_APPS = ( 'kay.ext.gaema', 'myapp', ) ...