import gluon.template
markmin_dict = dict(template=lambda \
code:gluon.template.render(code,context=globals()),
sup=lambda \
code:'%s'%code,
br=lambda n:'
'*int(n),
groupdates=lambda group:group_feed_reader(group),
)
def get_content(b=None,\
c=request.controller,\
f=request.function,\
l='en',\
format='markmin'):
"""Gets and renders the file in
/private/content////.
"""
def openfile():
import os
path = os.path.join(request.folder,'private','content',l,c,f,b+'.'+format)
return open(path)
try:
openedfile = openfile()
except Exception, IOError:
l='en'
openedfile = openfile()
if format == 'markmin':
html = MARKMIN(str(T(openedfile.read())),markmin_dict)
else:
html = str(T(openedfile.read()))
return html