Modified:
/tipfy/__init__.py
/tipfy/app.py
/tipfy/appengine/acl.py
/tipfy/appengine/auth/__init__.py
/tipfy/appengine/auth/model.py
/tipfy/appengine/blobstore.py
/tipfy/appengine/db/__init__.py
/tipfy/appengine/db/properties.py
/tipfy/appengine/mail.py
/tipfy/appengine/matcher.py
/tipfy/appengine/sessions.py
/tipfy/appengine/sharded_counter.py
/tipfy/appengine/taskqueue.py
/tipfy/auth/__init__.py
/tipfy/auth/facebook.py
/tipfy/auth/friendfeed.py
/tipfy/auth/google.py
/tipfy/auth/oauth.py
/tipfy/auth/openid.py
/tipfy/auth/twitter.py
/tipfy/config.py
/tipfy/debugger/__init__.py
/tipfy/dev.py
/tipfy/handler.py
/tipfy/i18n.py
/tipfy/json.py
/tipfy/local.py
/tipfy/middleware.py
/tipfy/routing.py
/tipfy/scripting.py
/tipfy/sessions.py
/tipfy/testing.py
/tipfyext/jinja2/__init__.py
/tipfyext/jinja2/scripts.py
/tipfyext/mako.py
/tipfyext/wtforms/__init__.py
/tipfyext/wtforms/fields.py
/tipfyext/wtforms/form.py
/tipfyext/wtforms/validators.py
/tipfyext/wtforms/widgets.py
=======================================
--- /tipfy/__init__.py Wed Mar 30 05:46:53 2011
+++ /tipfy/__init__.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Minimalist WSGI application and utilities for App Engine.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
__version__ = '0.7'
=======================================
--- /tipfy/app.py Wed Mar 30 05:46:53 2011
+++ /tipfy/app.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
WSGI Application and RequestHandler.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import logging
=======================================
--- /tipfy/appengine/acl.py Thu Oct 7 10:52:28 2010
+++ /tipfy/appengine/acl.py Wed Mar 30 05:57:11 2011
@@ -56,7 +56,7 @@
Based on concept from `Solar <http://solarphp.com>`_ Access and Role
classes.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from google.appengine.ext import db
=======================================
--- /tipfy/appengine/auth/__init__.py Thu Oct 7 10:52:28 2010
+++ /tipfy/appengine/auth/__init__.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
App Engine authentication backends.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from google.appengine.api import users
=======================================
--- /tipfy/appengine/auth/model.py Wed Dec 15 01:43:11 2010
+++ /tipfy/appengine/auth/model.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Base model for authenticated users.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/appengine/blobstore.py Thu Oct 7 10:52:28 2010
+++ /tipfy/appengine/blobstore.py Wed Mar 30 05:57:11 2011
@@ -17,7 +17,7 @@
:copyright: 2007 Google Inc.
:copyright: 2009 Accense Technology, Inc. All rights reserved.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: Apache 2.0 License, see LICENSE.txt for more details.
"""
import cgi
=======================================
--- /tipfy/appengine/db/__init__.py Sun Feb 6 07:35:23 2011
+++ /tipfy/appengine/db/__init__.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Datastore utilities extension.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import logging
=======================================
--- /tipfy/appengine/db/properties.py Sun Mar 20 04:11:43 2011
+++ /tipfy/appengine/db/properties.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Extra db.Model property classes.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import hashlib
@@ -225,5 +225,5 @@
return value
elif isinstance(value, basestring):
return decimal.Decimal(value)
- raise db.BadValueError("Property %s must be a Decimal or string"
+ raise db.BadValueError("Property %s must be a Decimal or string"
% self.name)
=======================================
--- /tipfy/appengine/mail.py Thu Oct 7 21:48:58 2010
+++ /tipfy/appengine/mail.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Ported from the original App Engine library:
http://code.google.com/appengine/docs/python/mail/receivingmail.html
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: Apache Software License, see LICENSE.txt for more details.
"""
from google.appengine.api import mail
=======================================
--- /tipfy/appengine/matcher.py Sat Nov 27 04:46:32 2010
+++ /tipfy/appengine/matcher.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
A RequestHandler for the `google.appengine.api.matcher`API.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: Apache Software License, see LICENSE.txt for more details.
"""
from google.appengine.api import matcher
=======================================
--- /tipfy/appengine/sessions.py Mon Nov 22 12:31:34 2010
+++ /tipfy/appengine/sessions.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
App Engine session backends.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import re
=======================================
--- /tipfy/appengine/sharded_counter.py Thu Oct 7 10:52:28 2010
+++ /tipfy/appengine/sharded_counter.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
A general purpose sharded counter implementation for the datastore.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: Apache Software License, see LICENSE.txt for more details.
"""
import string
=======================================
--- /tipfy/appengine/taskqueue.py Wed Dec 15 01:43:11 2010
+++ /tipfy/appengine/taskqueue.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Task queue utilities extension.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import logging
=======================================
--- /tipfy/auth/__init__.py Wed Dec 15 01:43:11 2010
+++ /tipfy/auth/__init__.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Base classes for user authentication.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/auth/facebook.py Sun Feb 27 09:03:33 2011
+++ /tipfy/auth/facebook.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Ported from `tornado.auth`_.
:copyright: 2009 Facebook.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: Apache License Version 2.0, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/auth/friendfeed.py Fri Feb 18 03:04:18 2011
+++ /tipfy/auth/friendfeed.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Ported from `tornado.auth`_.
:copyright: 2009 Facebook.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: Apache License Version 2.0, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/auth/google.py Tue Feb 15 00:10:07 2011
+++ /tipfy/auth/google.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Ported from `tornado.auth`_.
:copyright: 2009 Facebook.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: Apache License Version 2.0, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/auth/oauth.py Thu Mar 3 12:14:53 2011
+++ /tipfy/auth/oauth.py Wed Mar 30 05:57:11 2011
@@ -9,7 +9,7 @@
:copyright: 2007 Leah Culver.
:copyright: 2009 Facebook.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: MIT License / Apache License Version 2.0, see LICENSE.txt for
more details.
"""
=======================================
--- /tipfy/auth/openid.py Tue Feb 15 00:10:07 2011
+++ /tipfy/auth/openid.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Ported from `tornado.auth`_.
:copyright: 2009 Facebook.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: Apache License Version 2.0, see LICENSE.txt for more details.
"""
=======================================
--- /tipfy/auth/twitter.py Thu Mar 3 12:14:53 2011
+++ /tipfy/auth/twitter.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Ported from `tornado.auth`_.
:copyright: 2009 Facebook.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 tipfy.org.
:license: Apache License Version 2.0, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/config.py Sun Oct 10 00:08:14 2010
+++ /tipfy/config.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Configuration object.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from werkzeug import import_string
=======================================
--- /tipfy/debugger/__init__.py Tue Dec 7 01:45:36 2010
+++ /tipfy/debugger/__init__.py Wed Mar 30 05:57:11 2011
@@ -8,7 +8,7 @@
Applies monkeypatch for Werkzeug's interactive debugger to work with
the development server. See
http://dev.pocoo.org/projects/jinja/ticket/349
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import mimetypes
=======================================
--- /tipfy/dev.py Wed Sep 29 11:35:30 2010
+++ /tipfy/dev.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Development patches.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import sys
=======================================
--- /tipfy/handler.py Wed Mar 30 05:46:53 2011
+++ /tipfy/handler.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Base request handler classes.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import urlparse
=======================================
--- /tipfy/i18n.py Tue Feb 15 00:10:07 2011
+++ /tipfy/i18n.py Wed Mar 30 05:57:11 2011
@@ -17,7 +17,7 @@
`Flask-Babel <http://pypi.python.org/pypi/Flask-Babel/>`_ and
`Kay <http://code.google.com/p/kay-framework/>`_.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from datetime import datetime
=======================================
--- /tipfy/json.py Sun Mar 20 11:30:06 2011
+++ /tipfy/json.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
JSON encoder/decoder.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfy/local.py Wed Mar 30 05:46:53 2011
+++ /tipfy/local.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Context-local utilities.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import werkzeug.local
=======================================
--- /tipfy/middleware.py Mon Nov 22 12:31:34 2010
+++ /tipfy/middleware.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Miscelaneous handler middleware classes.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from werkzeug import ETagResponseMixin
=======================================
--- /tipfy/routing.py Wed Mar 30 05:46:53 2011
+++ /tipfy/routing.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
URL routing utilities.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from werkzeug import import_string, url_quote
=======================================
--- /tipfy/scripting.py Tue Nov 23 17:10:23 2010
+++ /tipfy/scripting.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Scripting utilities.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import os
=======================================
--- /tipfy/sessions.py Tue Feb 15 00:10:07 2011
+++ /tipfy/sessions.py Wed Mar 30 05:57:11 2011
@@ -7,7 +7,7 @@
cookies and supports flash messages. For App Engine's datastore and
memcache based sessions, see tipfy.appengine.sessions.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: Apache Sotware License, see LICENSE for details.
"""
import hashlib
=======================================
--- /tipfy/testing.py Sun Mar 20 04:48:01 2011
+++ /tipfy/testing.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Unit test utilities.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from werkzeug.utils import import_string
=======================================
--- /tipfyext/jinja2/__init__.py Sat Mar 12 17:09:10 2011
+++ /tipfyext/jinja2/__init__.py Wed Mar 30 05:57:11 2011
@@ -7,7 +7,7 @@
Learn more about Jinja2 at http://jinja.pocoo.org/2/
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import blinker
=======================================
--- /tipfyext/jinja2/scripts.py Fri Dec 3 09:09:08 2010
+++ /tipfyext/jinja2/scripts.py Wed Mar 30 05:57:11 2011
@@ -5,7 +5,7 @@
Command line utilities for Jinja2.
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
import os
=======================================
--- /tipfyext/mako.py Wed Feb 23 01:49:59 2011
+++ /tipfyext/mako.py Wed Mar 30 05:57:11 2011
@@ -7,7 +7,7 @@
Learn more about Mako at http://www.makotemplates.org/
- :copyright: 2010 by tipfy.org.
+ :copyright: 2011 by tipfy.org.
:license: BSD, see LICENSE.txt for more details.
"""
from __future__ import absolute_import
=======================================
--- /tipfyext/wtforms/__init__.py Wed Sep 29 11:35:30 2010
+++ /tipfyext/wtforms/__init__.py Wed Mar 30 05:57:11 2011
@@ -5,8 +5,8 @@
Enhanced WTForms form library support for tipfy.
- :copyright: 2010 WTForms authors.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 WTForms authors.
+ :copyright: 2011 tipfy.org.
:copyright: 2009 Plurk Inc.
:license: BSD, see LICENSE.txt for more details.
"""
=======================================
--- /tipfyext/wtforms/fields.py Wed Sep 29 11:35:30 2010
+++ /tipfyext/wtforms/fields.py Wed Mar 30 05:57:11 2011
@@ -5,8 +5,8 @@
Form fields.
- :copyright: 2010 WTForms authors.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 WTForms authors.
+ :copyright: 2011 tipfy.org.
:copyright: 2009 Plurk Inc.
:license: BSD, see LICENSE.txt for more details.
"""
=======================================
--- /tipfyext/wtforms/form.py Wed Feb 9 08:28:33 2011
+++ /tipfyext/wtforms/form.py Wed Mar 30 05:57:11 2011
@@ -5,8 +5,8 @@
Form object.
- :copyright: 2010 tipfy.org.
- :copyright: 2010 WTForms authors.
+ :copyright: 2011 tipfy.org.
+ :copyright: 2011 WTForms authors.
:license: BSD, see LICENSE.txt for more details.
"""
import uuid
=======================================
--- /tipfyext/wtforms/validators.py Sat Oct 30 10:11:04 2010
+++ /tipfyext/wtforms/validators.py Wed Mar 30 05:57:11 2011
@@ -5,8 +5,8 @@
Form validators.
- :copyright: 2010 WTForms authors.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 WTForms authors.
+ :copyright: 2011 tipfy.org.
:copyright: 2009 Plurk Inc.
:license: BSD, see LICENSE.txt for more details.
"""
=======================================
--- /tipfyext/wtforms/widgets.py Sat Oct 30 10:11:04 2010
+++ /tipfyext/wtforms/widgets.py Wed Mar 30 05:57:11 2011
@@ -5,8 +5,8 @@
Form widgets.
- :copyright: 2010 WTForms authors.
- :copyright: 2010 tipfy.org.
+ :copyright: 2011 WTForms authors.
+ :copyright: 2011 tipfy.org.
:copyright: 2009 Plurk Inc.
:license: BSD, see LICENSE.txt for more details.
"""