Skip to content

Commit 33f2a38

Browse files
committed
Added some deprecation warnings and fixed some class names in docblocks.
1 parent 8cc11d2 commit 33f2a38

File tree

13 files changed

+443
-420
lines changed

13 files changed

+443
-420
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FLAGS=
88
GAE= /usr/local/google_appengine
99
GAEPATH=$(GAE):$(GAE)/lib/django_0_96:$(GAE)/lib/webob:$(GAE)/lib/yaml/lib:tests
1010
TESTS= `find tests -name [a-z]\*_test.py`
11-
NONTESTS=`find tipfy -name [a-z]\*.py
11+
NONTESTS=`find tipfy -name [a-z]\*.py`
1212
PORT= 8080
1313
ADDRESS=localhost
1414
PYTHON= python -Wignore

project/buildout.cfg

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ use-zipimport = false
5050
# Define the packages to download. Only tipfy is included, but you can add
5151
# others or uncomment the extra lines to add those common packages.
5252
eggs =
53-
tipfy-dev
54-
# babel
55-
# gaepytz
56-
# jinja2
57-
# wtforms
53+
tipfy
54+
jinja2
55+
babel
56+
gaepytz
57+
wtforms
5858

5959
# Don't copy files that match these glob patterns.
6060
ignore-globs =

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def get(self):
3535

3636
setup(
3737
name = 'tipfy',
38-
version = '1.0b',
38+
version = '1.0b1',
3939
license = 'BSD',
4040
url = 'http://www.tipfy.org/',
4141
download_url = 'http://www.tipfy.org/tipfy.tar.gz',

tipfy/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
#: Default configuration values for this module. Keys are:
1515
#:
1616
#: auth_store_class
17-
#: The default auth store class to use in :class:`tipfy.Request`.
17+
#: The default auth store class to use in :class:`tipfy.app.Request`.
1818
#: Default is `tipfy.appengine.auth.AuthStore`.
1919
#:
2020
#: i18n_store_class
2121
#: The default internationalization store class.
2222
#: Default is `tipfy.i18n.I18nStore`.
2323
#:
2424
#: session_store_class
25-
#: The default session store class to use in :class:`tipfy.Request`.
25+
#: The default session store class to use in :class:`tipfy.app.Request`.
2626
#: Default is `tipfy.sessions.SessionStore`.
2727
#:
2828
#: server_name

0 commit comments

Comments
 (0)