-
See also http://thread.gmane.org/gmane.comp.web.pyblosxom.devel/2166
in 1.5 trunk plugins/comments.py:
When absolute_path == "" (ie the post is in no category, but under the datadir root), the comments will not be read in
in cb_story(), this check kicks in:
if entry['absolute_path'] and not entry.has_key("nocomments"):
and neither the number of comments for the post will be shown (in...
2010-01-05 12:57:17 UTC by spaetz
-
I can't reproduce this with trunk which will become PyBlosoxm 1.5, so I think this is fixed now.
Marking it as FIXED. If you can still reproduce this with svn trunk, reopen.
2010-01-03 19:27:53 UTC by willhelm
-
The config.py template has a flavourdir property now. This will be out in PyBlosxom 1.5.
Marking this as FIXED.
2010-01-03 19:25:44 UTC by willhelm
-
I reworked setup.py, so this is fixed. Not sure when it was--probably when we switched to requiring setuptools.
2010-01-03 19:24:30 UTC by willhelm
-
config.py has to be a valid Python file, so you are limited to characters that can go in a Python file.
You should use the UTF-8 form for this character.
Marking this as WONTFIX.
2010-01-03 19:20:58 UTC by willhelm
-
Fixed in r1327. This will go out in PyBlosxom 1.5.
Marking as FIXED.
2010-01-03 19:18:02 UTC by willhelm
-
Should be fixed in r1348 and r1346.
Marking as FIXED. This will go out with PyBlosxom 1.5.
2010-01-03 19:16:40 UTC by willhelm
-
Ran in the same problem in trunk today. This appears to be a bug in the OS X implementation of os.path.splitext
On that platform os.path.splitext(".svn")
returns
('.svn', '')
on Linux
('', '.svn')
Here's a quick patch to fix it on OS X.
Index: renderers/blosxom.py
===================================================================
--- renderers/blosxom.py (revision 1363)
+++...
2009-11-28 06:26:56 UTC by cbaus
-
Check out current SVN version and attempt to perform static rendering of simple site. Pyblosxom won't run due to ".svn" directories being present in the flavours.
rendering '/2009/Sep/22/index.html' ...
Traceback (most recent call last):
File "/home/ajft/src/pyblosxom/pyblosxom/bin/pyblosxom-cmd", line 25, in
sys.exit(command_line_handler("pyblosxom-cmd", sys.argv))
File...
2009-09-22 05:08:52 UTC by ajft
-
ryanbarrett committed revision 1338 to the pyblosxom SVN repository, changing 1 files.
2009-09-17 17:04:21 UTC by ryanbarrett