Skip to content

Commit e3f2513

Browse files
committed
2015
1 parent 23d1b83 commit e3f2513

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 by Nicola Iarocci and contributors. See AUTHORS
1+
Copyright (c) 2015 by Nicola Iarocci and contributors. See AUTHORS
22
for more details.
33

44
Some rights reserved.

eve/auth.py

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
eve.auth
5+
~~~~~~~~
6+
7+
Allow API endpoints to be secured via BasicAuth and derivates.
8+
9+
:copyright: (c) 2015 by Nicola Iarocci.
10+
:license: BSD, see LICENSE for more details.
11+
"""
112
from flask import request, Response, current_app as app, g, abort
213
from functools import wraps
314

eve/io/mongo/geo.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
eve.io.mongo.geo
55
~~~~~~~~~~~~~~~~~~~
6+
67
Geospatial functions and classes for mongo IO layer
78
89
:copyright: (c) 2015 by Nicola Iarocci.

eve/io/mongo/mongo.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
"""
24
eve.io.mongo.mongo (eve.io.mongo)
35
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)