/usr/share/pyshared/Pyblosxom/plugins/pages.py is in pyblosxom 1.5.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | #######################################################################
# This file is part of Pyblosxom.
#
# Copyright (c) 2002-2011 Will Kahn-Greene
#
# Pyblosxom is distributed under the MIT license. See the file
# LICENSE for distribution details.
#######################################################################
"""
Summary
=======
Blogs don't always consist solely of blog entries. Sometimes you want
to add other content to your blog that's not a blog entry. For
example, an "about this blog" page or a page covering a list of your
development projects.
This plugin allows you to have pages served by Pyblosxom that aren't
blog entries.
Additionally, this plugin allows you to have a non-blog-entry front
page. This makes it easier to use Pyblosxom to run your entire
website.
Install
=======
This plugin comes with Pyblosxom. To install, do the following:
1. add ``Pyblosxom.plugins.pages`` to the ``load_plugins`` list in
your ``config.py`` file.
2. configure the plugin using the configuration variables below
``pagesdir``
This is the directory that holds the pages files.
For example, if you wanted your pages in
``/home/foo/blog/pages/``, then you would set it to::
py["pagesdir"] = "/home/foo/blog/pages/"
If you have ``blogdir`` defined in your ``config.py`` file which
holds your ``datadir`` and ``flavourdir`` directories, then you
could set it to::
py["pagesdir"] = os.path.join(blogdir, "pages")
``pages_trigger`` (optional)
Defaults to ``pages``.
This is the url trigger that causes the pages plugin to look for
pages.
py["pages_trigger"] = "pages"
``pages_frontpage`` (optional)
Defaults to False.
If set to True, then pages will show the ``frontpage`` page for
the front page.
This requires you to have a ``frontpage`` file in your pages
directory. The extension for this file works the same way as blog
entries. So if your blog entries end in ``.txt``, then you would
need a ``frontpage.txt`` file.
Example::
py["pages_frontpage"] = True
Usage
=====
Pages looks for urls that start with the trigger ``pages_trigger``
value as set in your ``config.py`` file. For example, if your
``pages_trigger`` was ``pages``, then it would look for urls like
this::
/pages/blah
/pages/blah.html
and pulls up the file ``blah.txt`` [1]_ which is located in the path
specified in the config file as ``pagesdir``.
If the file is not there, it kicks up a 404.
.. [1] The file ending (the ``.txt`` part) can be any file ending
that's valid for entries on your blog. For example, if you have
the textile entryparser installed, then ``.txtl`` is also a valid
file ending.
Template
========
pages formats the page using the ``pages`` template. So you need a
``pages`` template in the flavours that you want these pages to be
rendered in. I copy my ``story`` template and remove some bits.
For example, if you're using the html flavour and that is stored in
``/home/foo/blog/flavours/html.flav/``, then you could copy the
``story`` file in that directory to ``pages`` and that would become
your ``pages`` template.
Python code blocks
==================
pages handles evaluating python code blocks. Enclose python code in
``<%`` and ``%>``. The assumption is that only you can edit your
pages files, so there are no restrictions (security or otherwise).
For example::
<%
print "testing"
%>
<%
x = { "apple": 5, "banana": 6, "pear": 4 }
for mem in x.keys():
print "<li>%s - %s</li>" % (mem, x[mem])
%>
The request object is available in python code blocks. Reference it
by ``request``. Example::
<%
config = request.get_configuration()
print "your datadir is: %s" % config["datadir"]
%>
"""
__author__ = "Will Kahn-Greene"
__email__ = "willg at bluesock dot org"
__version__ = "2011-10-22"
__url__ = "http://pyblosxom.github.com/"
__description__ = (
"Allows you to include non-blog-entry files in your site and have a "
"non-blog-entry front page.")
__category__ = "content"
__license__ = "MIT"
__registrytags__ = "1.4, 1.5, core"
import os
import StringIO
import sys
import os.path
from Pyblosxom.entries.fileentry import FileEntry
from Pyblosxom import tools
from Pyblosxom.tools import pwrap_error
TRIGGER = "pages"
INIT_KEY = "pages_pages_file_initiated"
def verify_installation(req):
config = req.get_configuration()
retval = True
if not 'pagesdir' in config:
pwrap_error("'pagesdir' property is not set in the config file.")
retval = False
elif not os.path.isdir(config["pagesdir"]):
pwrap_error(
"'pagesdir' directory does not exist. %s" % config["pagesdir"])
retval = False
return retval
def cb_date_head(args):
req = args["request"]
data = req.get_data()
if INIT_KEY in data:
args["template"] = ""
return args
def cb_date_foot(args):
return cb_date_head(args)
def eval_python_blocks(req, body):
localsdict = {"request": req}
globalsdict = {}
old_stdout = sys.stdout
old_stderr = sys.stderr
try:
start = 0
while body.find("<%", start) != -1:
start = body.find("<%")
end = body.find("%>", start)
if start != -1 and end != -1:
codeblock = body[start + 2:end].lstrip()
sys.stdout = StringIO.StringIO()
sys.stderr = StringIO.StringIO()
try:
exec codeblock in localsdict, globalsdict
except Exception, e:
print "ERROR in processing: %s" % e
output = sys.stdout.getvalue() + sys.stderr.getvalue()
body = body[:start] + output + body[end + 2:]
finally:
sys.stdout = old_stdout
sys.stderr = old_stderr
return body
def is_frontpage(pyhttp, config):
if not config.get("pages_frontpage"):
return False
pathinfo = pyhttp.get("PATH_INFO", "")
if pathinfo == "/":
return True
path, ext = os.path.splitext(pathinfo)
if path == "/index" and not ext in [".rss20", ".atom", ".rss"]:
return True
return False
def is_trigger(pyhttp, config):
trigger = config.get("pages_trigger", TRIGGER)
if not trigger.startswith("/"):
trigger = "/" + trigger
return pyhttp["PATH_INFO"].startswith(trigger)
def cb_filelist(args):
req = args["request"]
pyhttp = req.get_http()
data = req.get_data()
config = req.get_configuration()
page_name = None
if not (is_trigger(pyhttp, config) or is_frontpage(pyhttp, config)):
return
data[INIT_KEY] = 1
datadir = config["datadir"]
data['root_datadir'] = config['datadir']
pagesdir = config["pagesdir"]
pagesdir = pagesdir.replace("/", os.sep)
if not pagesdir[-1] == os.sep:
pagesdir = pagesdir + os.sep
pathinfo = pyhttp.get("PATH_INFO", "")
path, ext = os.path.splitext(pathinfo)
if pathinfo == "/" or path == "/index":
page_name = "frontpage"
else:
page_name = pyhttp["PATH_INFO"][len("/" + TRIGGER) + 1:]
if not page_name:
return
# FIXME - need to do a better job of sanitizing
page_name = page_name.replace(os.sep, "/")
if not page_name:
return
if page_name[-1] == os.sep:
page_name = page_name[:-1]
if page_name.find("/") > 0:
page_name = page_name[page_name.rfind("/"):]
# if the page has a flavour, we use that. otherwise
# we default to the default flavour.
page_name, flavour = os.path.splitext(page_name)
if flavour:
data["flavour"] = flavour[1:]
ext = tools.what_ext(data["extensions"].keys(), pagesdir + page_name)
if not ext:
return []
data['root_datadir'] = page_name + '.' + ext
data['bl_type'] = 'file'
filename = pagesdir + page_name + "." + ext
if not os.path.isfile(filename):
return []
fe = FileEntry(req, filename, pagesdir)
# now we evaluate python code blocks
body = fe.get_data()
body = eval_python_blocks(req, body)
body = ("<!-- PAGES PAGE START -->\n\n" +
body +
"<!-- PAGES PAGE END -->\n")
fe.set_data(body)
fe["absolute_path"] = TRIGGER
fe["fn"] = page_name
fe["file_path"] = TRIGGER + "/" + page_name
fe["template_name"] = "pages"
data['blog_title_with_path'] = (
config.get("blog_title", "") + " : " + fe.get("title", ""))
# set the datadir back
config["datadir"] = datadir
return [fe]
|