summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-08-09- Change urldispatch internals: Route object is now constructed usingChris McDonough
a path, a name, and a factory instead of a name, a matcher, a generator, and a factory.
2009-08-04Reverse.Chris McDonough
2009-08-04- Allow ``repoze.bfg.traversal.find_interface`` API to use a classChris McDonough
object as the argument to compare against the ``model`` passed in. This means you can now do ``find_interface(model, SomeClass)`` and the first object which is found in the lineage which has ``SomeClass`` as its class (or the first object found which has ``SomeClass`` as any of its superclasses) will be returned.
2009-07-28- Fixed documentation bugs related to forget and remember in security APIChris McDonough
docs.
2009-07-27Reorder authentication policies by most common to least.Chris McDonough
2009-07-23Logo that matches background of docs sidebar contributed by Mike Naberezny.Chris McDonough
2009-07-22Back to dev.Chris McDonough
2009-07-22Prep for 1.0.1.Chris McDonough
2009-07-22- Added support for ``has_resource``, ``resource_isdir``, andChris McDonough
``resource_listdir`` to the resource "OverrideProvider"; this fixes a bug with a symptom that a file could not be overridden in a resource directory unless a file with the same name existed in the original directory being overridden.
2009-07-22Actually, now that I think about it, this is probably wrong. I'm revertingChris Rossi
this change for now. What I observed is that in a ZODB based app, the ZODB connection was closed when I let the closer fall out of scope. I see from examining the code, though, that this is a side effect of the environ that the closer hangs on to getting deleted. There is nothing here that pops the registry when the closer is deleted. You still have to call the closer for that to happen.
2009-07-22Document close on '__del__' behavior of closer.Chris Rossi
2009-07-21Declared the Paste and PasteDeploy dependencies.Shane Hathaway
2009-07-20Fixed documentation bug showing invalid test for values from the ``matchdict``.Tres Seaver
o They are stored as attributes of the ``Article``, rather than subitems.
2009-07-20Fixed documentation bug showing wrong environment key for the ``matchdict``Tres Seaver
produced by the matching route. Thanks to leopay for the catch.
2009-07-20Small wording change courtesy of Russ FerridayPaul Everitt
2009-07-09- Added a workaround for a bug in Python 2.6, 2.6.1, and 2.6.2 havingChris McDonough
to do with a recursion error in the mimetypes module when trying to serve static files from Paste's FileApp: http://bugs.python.org/issue5853. Symptom: File "/usr/lib/python2.6/mimetypes.py", line 244, in guess_type return guess_type(url, strict) RuntimeError: maximum recursion depth exceeded. Thanks to Armin Ronacher for identifying the symptom and pointing out a fix.
2009-07-08Rendering.Chris McDonough
2009-07-08Rendering.Chris McDonough
2009-07-08Rendering.Chris McDonough
2009-07-07Reverse.Chris McDonough
2009-07-07SQLite.Chris McDonough
2009-07-06- Minor edits to tutorials for accuracy based on feedback.Chris McDonough
- Back to dev.
2009-07-06Prep for 1.0.Chris McDonough
2009-07-05Get rid of secondary header.Chris McDonough
2009-07-05(no commit message)Chris McDonough
2009-07-05SpellingChris McDonough
2009-07-05Spelling.Chris McDonough
2009-07-05Spellcheck.Chris McDonough
2009-07-05Spelling.Chris McDonough
2009-07-05Specific.Chris McDonough
2009-07-05Spelling.Chris McDonough
2009-07-05Deleting the database.Chris McDonough
2009-07-05Note changes.Chris McDonough
2009-07-05Tweak and change test output.Chris McDonough
2009-07-05Delete the database.Chris McDonough
2009-07-04Wording changes.Chris McDonough
2009-07-03(no commit message)Chris McDonough
2009-07-03Wording.Chris McDonough
2009-07-03Not a publisher, a router.Chris McDonough
2009-07-03(no commit message)Chris McDonough
2009-07-03Make sure tutorial still works.Chris McDonough
2009-07-03Back to dev.Chris McDonough
2009-07-03Prep for b2.Chris McDonough
2009-07-03Audit grammar in bfgwik2 tutorial.Chris McDonough
2009-07-03bfgwiki tutorial audit.Chris McDonough
2009-07-03API docs audit.Chris McDonough
2009-07-03- ``remoteuserauthenticationpolicy`` ZCML directive didn't workChris McDonough
without an ``environ_key`` directive (didn't match docs).
2009-07-03General editing walkthrough.Chris McDonough
2009-07-03Note no-spaces-in-path issue.Chris McDonough
2009-07-03- Fix ``configure_zcml`` filespec check on Windows. Previously if anChris McDonough
absolute filesystem path including a drive letter was passed as ``filename`` (or as ``configure_zcml`` in the options dict) to ``repoze.bfg.router.make_app``, it would be treated as a package:resource_name specification.