Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92232198
views.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 18, 14:18
Size
3 KB
Mime Type
text/x-python
Expires
Wed, Nov 20, 14:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22398270
Attached To
R3600 invenio-infoscience
views.py
View Options
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
# Copyright (C) 2013, 2014 CERN.
#
# Invenio is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# Invenio is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Invenio; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""Documentation Flask Blueprint."""
import
os
from
flask
import
render_template
,
current_app
,
abort
,
url_for
,
Blueprint
from
flask.helpers
import
send_from_directory
from
werkzeug.utils
import
cached_property
,
import_string
from
sphinx.websupport
import
WebSupport
from
sphinx.websupport.errors
import
DocumentNotFoundError
from
invenio.base.globals
import
cfg
from
invenio.base.i18n
import
_
from
flask.ext.breadcrumbs
import
(
default_breadcrumb_root
,
register_breadcrumb
,
current_breadcrumbs
)
from
flask.ext.menu
import
register_menu
class
DocsBlueprint
(
Blueprint
):
"""Wrap blueprint with Sphinx ``WebSupport``."""
@cached_property
def
documentation_package
(
self
):
"""Return documentation package."""
try
:
invenio_docs
=
import_string
(
cfg
[
'DOCUMENTATION_PACKAGE'
])
except
ImportError
:
import
docs
as
invenio_docs
return
invenio_docs
@cached_property
def
support
(
self
):
"""Return an instance of Sphinx ``WebSupport``."""
builddir
=
os
.
path
.
abspath
(
os
.
path
.
join
(
current_app
.
instance_path
,
'docs'
))
return
WebSupport
(
srcdir
=
self
.
documentation_package
.
__path__
[
0
],
builddir
=
builddir
,
staticroot
=
os
.
path
.
join
(
blueprint
.
url_prefix
,
'static'
),
docroot
=
blueprint
.
url_prefix
)
def
send_static_file
(
self
,
filename
):
"""Return static file."""
try
:
return
super
(
self
.
__class__
,
self
)
.
send_static_file
(
filename
)
except
:
cache_timeout
=
self
.
get_send_file_max_age
(
filename
)
return
send_from_directory
(
os
.
path
.
join
(
current_app
.
instance_path
,
"docs"
,
"static"
),
filename
,
cache_timeout
=
cache_timeout
)
blueprint
=
DocsBlueprint
(
'documentation'
,
__name__
,
url_prefix
=
"/documentation"
,
template_folder
=
'templates'
,
static_folder
=
'static'
)
default_breadcrumb_root
(
blueprint
,
'.documentation'
)
@blueprint.route
(
'/'
,
strict_slashes
=
True
)
@blueprint.route
(
'/<path:docname>'
)
@register_menu
(
blueprint
,
'main.documentation'
,
_
(
'Help'
),
order
=
99
)
@register_breadcrumb
(
blueprint
,
'.'
,
_
(
'Help'
))
def
index
(
docname
=
None
):
"""Render documentation page."""
try
:
document
=
blueprint
.
support
.
get_document
(
docname
or
cfg
[
"DOCUMENTATION_INDEX"
])
except
DocumentNotFoundError
:
abort
(
404
)
additional_breadcrumbs
=
[{
'text'
:
document
[
'title'
],
'url'
:
url_for
(
'.index'
,
docname
=
docname
)}]
return
render_template
(
'documentation/index.html'
,
document
=
document
,
breadcrumbs
=
current_breadcrumbs
+
additional_breadcrumbs
)
Event Timeline
Log In to Comment