http://code.google.com/p/appengine-afterburner/source/detail?r=16
Modified:
/trunk/python/src/afterburner/experimental/db/materialized_map.py
/trunk/python/src/afterburner/experimental/db/materialized_map_test.py
/trunk/python/src/afterburner/experimental/db/triggers.py
/trunk/python/src/afterburner/experimental/db/triggers_main.py
/trunk/python/src/afterburner/experimental/db/triggers_test.py
/trunk/python/src/afterburner/experimental/memoize_test.py
/trunk/python/src/afterburner/experimental/quota.py
/trunk/python/src/afterburner/experimental/quota_test.py
/trunk/python/src/afterburner/tools/create_virtualenv.py
=======================================
--- /trunk/python/src/afterburner/experimental/db/materialized_map.py Tue
Dec 7 15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/db/materialized_map.py Wed
Dec 15 15:47:47 2010
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
import logging
=======================================
--- /trunk/python/src/afterburner/experimental/db/materialized_map_test.py
Tue Dec 7 15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/db/materialized_map_test.py
Wed Dec 15 15:47:47 2010
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
import unittest
=======================================
--- /trunk/python/src/afterburner/experimental/db/triggers.py Tue Dec 7
15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/db/triggers.py Wed Dec 15
15:47:47 2010
@@ -147,7 +147,7 @@
One of these can be an excellent project for beginning contributors.
"""
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
import logging
=======================================
--- /trunk/python/src/afterburner/experimental/db/triggers_main.py Tue Dec
7 15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/db/triggers_main.py Wed Dec
15 15:47:47 2010
@@ -22,7 +22,7 @@
creates a circular import dependnecy,that can't be handled by python.
"""
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
from afterburner.experimental.db import triggers
from google.appengine.ext.webapp.util import run_wsgi_app
=======================================
--- /trunk/python/src/afterburner/experimental/db/triggers_test.py Tue Dec
7 15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/db/triggers_test.py Wed Dec
15 15:47:47 2010
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
import base64
import os
=======================================
--- /trunk/python/src/afterburner/experimental/memoize_test.py Tue Dec 7
15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/memoize_test.py Wed Dec 15
15:47:47 2010
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
import unittest
=======================================
--- /trunk/python/src/afterburner/experimental/quota.py Tue Dec 7 15:30:55
2010
+++ /trunk/python/src/afterburner/experimental/quota.py Wed Dec 15 15:47:47
2010
@@ -16,7 +16,7 @@
"""Contains simple quota system for rate-limiting arbitrary operations."""
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
from google.appengine.api import memcache
=======================================
--- /trunk/python/src/afterburner/experimental/quota_test.py Tue Dec 7
15:30:55 2010
+++ /trunk/python/src/afterburner/experimental/quota_test.py Wed Dec 15
15:47:47 2010
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-
+__author__ = 'mike.a...@gmail.com (Mike Aizatsky)'
import unittest
=======================================
--- /trunk/python/src/afterburner/tools/create_virtualenv.py Tue Dec 7
15:30:55 2010
+++ /trunk/python/src/afterburner/tools/create_virtualenv.py Wed Dec 15
15:47:47 2010
@@ -75,7 +75,7 @@
"""
# we follow PEP8 - pylint: disable-msg=C6409
-
+__author__ = 'robert.sc...@gmail.com (Robert Schuppenies)'
import inspect
import optparse