mv comment -> comments

This commit is contained in:
Martin Zimmermann 2013-11-08 18:47:30 +01:00
parent 18d7f37878
commit 1174259b27
3 changed files with 13 additions and 12 deletions

View File

@ -64,7 +64,7 @@ from werkzeug.contrib.fixers import ProxyFix
from isso import db, migrate, views, wsgi
from isso.core import ThreadedMixin, uWSGIMixin, Config
from isso.utils import parse, http, JSONRequest
from isso.views import comment
from isso.views import comments
logging.getLogger('werkzeug').setLevel(logging.ERROR)
logging.basicConfig(
@ -78,18 +78,18 @@ class Isso(object):
salt = b"Eech7co8Ohloopo9Ol6baimi"
urls = Map([
Rule('/new', methods=['POST'], endpoint=views.comment.new),
Rule('/new', methods=['POST'], endpoint=comments.new),
Rule('/id/<int:id>', methods=['GET', 'PUT', 'DELETE'], endpoint=views.comment.single),
Rule('/id/<int:id>/like', methods=['POST'], endpoint=views.comment.like),
Rule('/id/<int:id>/dislike', methods=['POST'], endpoint=views.comment.dislike),
Rule('/id/<int:id>', methods=['GET', 'PUT', 'DELETE'], endpoint=comments.single),
Rule('/id/<int:id>/like', methods=['POST'], endpoint=comments.like),
Rule('/id/<int:id>/dislike', methods=['POST'], endpoint=comments.dislike),
Rule('/', methods=['GET'], endpoint=views.comment.fetch),
Rule('/count', methods=['GET'], endpoint=views.comment.count),
Rule('/delete/<string:auth>', endpoint=views.comment.delete),
Rule('/activate/<string:auth>', endpoint=views.comment.activate),
Rule('/', methods=['GET'], endpoint=comments.fetch),
Rule('/count', methods=['GET'], endpoint=comments.count),
Rule('/delete/<string:auth>', endpoint=comments.delete),
Rule('/activate/<string:auth>', endpoint=comments.activate),
Rule('/check-ip', endpoint=views.comment.checkip)
Rule('/check-ip', endpoint=comments.checkip)
])
@classmethod

View File

@ -17,6 +17,7 @@ from isso.compat import text_type as str
from isso import utils, notify, db
from isso.utils import http, parse
from isso.views import requires
from isso.crypto import pbkdf2
logger = logging.getLogger("isso")

View File

@ -18,7 +18,7 @@ from werkzeug.wrappers import Response
from isso import Isso, notify, views, core
from isso.utils import http
from isso.views import comment
from isso.views import comments
class Dummy:
@ -250,7 +250,7 @@ class TestComments(unittest.TestCase):
rv = loads(rv.data)
for key in comment.FIELDS:
for key in comments.FIELDS:
rv.pop(key)
assert not any(rv.keys())