fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Wstępne wykorzystanie modułu logging.
[redakcja.git]
/
apps
/
api
/
handlers
/
library_handlers.py
diff --git
a/apps/api/handlers/library_handlers.py
b/apps/api/handlers/library_handlers.py
index
b2ff94b
..
4d23478
100644
(file)
--- a/
apps/api/handlers/library_handlers.py
+++ b/
apps/api/handlers/library_handlers.py
@@
-1,5
+1,6
@@
-import os.path
# -*- encoding: utf-8 -*-
# -*- encoding: utf-8 -*-
+import os.path
+import logging
__author__= "Łukasz Rekucki"
__date__ = "$2009-09-25 15:49:50$"
__author__= "Łukasz Rekucki"
__date__ = "$2009-09-25 15:49:50$"
@@
-29,6
+30,10
@@
from api.models import PartCache
#
import settings
#
import settings
+
+log = logging.getLogger('platforma.api')
+
+
#
# Document List Handlers
#
#
# Document List Handlers
#
@@
-71,7
+76,7
@@
class LibraryHandler(BaseHandler):
for part, docid in parts:
# this way, we won't display broken links
if not documents.has_key(part):
for part, docid in parts:
# this way, we won't display broken links
if not documents.has_key(part):
- print "NOT FOUND:", part
+ log.info("NOT FOUND: %s", part)
continue
parent = documents[docid]
continue
parent = documents[docid]
@@
-108,7
+113,7
@@
class LibraryHandler(BaseHandler):
try:
lock = lib.lock()
try:
try:
lock = lib.lock()
try:
- print "DOCID", docid
+ log.info("DOCID %s", docid)
doc = lib.document_create(docid)
# document created, but no content yet
doc = lib.document_create(docid)
# document created, but no content yet
@@
-171,6
+176,7
@@
class DocumentHandler(BaseHandler):
@hglibrary
def read(self, request, docid, lib):
"""Read document's meta data"""
@hglibrary
def read(self, request, docid, lib):
"""Read document's meta data"""
+ log.info("Read %s", docid)
try:
doc = lib.document(docid)
udoc = doc.take(request.user.username)
try:
doc = lib.document(docid)
udoc = doc.take(request.user.username)
@@
-243,17
+249,17
@@
class DocumentGalleryHandler(BaseHandler):
dirpath = os.path.join(settings.MEDIA_ROOT, assoc.subpath)
if not os.path.isdir(dirpath):
dirpath = os.path.join(settings.MEDIA_ROOT, assoc.subpath)
if not os.path.isdir(dirpath):
- print u"[WARNING]: missing gallery %s" % dirpath
+ log.info(u"[WARNING]: missing gallery %s", dirpath)
continue
gallery = {'name': assoc.name, 'pages': []}
for file in sorted(os.listdir(dirpath), key=natural_order()):
continue
gallery = {'name': assoc.name, 'pages': []}
for file in sorted(os.listdir(dirpath), key=natural_order()):
- print file
+ log.info(file)
name, ext = os.path.splitext(os.path.basename(file))
if ext.lower() not in ['.png', '.jpeg', '.jpg']:
name, ext = os.path.splitext(os.path.basename(file))
if ext.lower() not in ['.png', '.jpeg', '.jpg']:
- print "Ignoring:", name, ext
+ log.info("Ignoring: %s %s", name, ext)
continue
url = settings.MEDIA_URL + assoc.subpath + u'/' + file.decode('utf-8');
continue
url = settings.MEDIA_URL + assoc.subpath + u'/' + file.decode('utf-8');
@@
-318,7
+324,7
@@
class DocumentTextHandler(BaseHandler):
includes = [m.groupdict()['link'] for m in (re.finditer(\
XINCLUDE_REGEXP, data, flags=re.UNICODE) or []) ]
includes = [m.groupdict()['link'] for m in (re.finditer(\
XINCLUDE_REGEXP, data, flags=re.UNICODE) or []) ]
- print "INCLUDES: ", includes
+ log.info("INCLUDES: %s", includes)
# TODO: provide useful routines to make this simpler
def xml_update_action(lib, resolve):
# TODO: provide useful routines to make this simpler
def xml_update_action(lib, resolve):