summaryrefslogtreecommitdiff
path: root/docs/narr/static.rst
AgeCommit message (Collapse)Author
2010-12-26- Merge "Static Assets" chapter into the "Assets" chapter.Chris McDonough
2010-12-26remove unused importChris McDonough
2010-12-24fix permission discussionChris McDonough
2010-12-24- Changed "Static Assets" narrative chapter: clarify that ``name`` representsChris McDonough
a prefix unless it's a URL, added an example of a root-relative static view fallback for URL dispatch, added an example of creating a simple view that returns the body of a file.
2010-12-22remove redundantJamaludin Ahmad
2010-12-18model -> resource; resource -> assetChris McDonough
2010-12-12fix merge conflictsCasey Duncan
2010-12-12fix name as per comment on commit d00dfb7Casey Duncan
2010-12-09fix docs: pyramid.configuration -> pyramid.configChris McDonough
2010-12-08clarify warningCasey Duncan
2010-12-08clarify paragraphs about traversal contextCasey Duncan
2010-12-08remove redundant statement was removedCasey Duncan
2010-12-08avoid using word mount which has too many other connotations, puritanism ↵Casey Duncan
notwithstanding
2010-12-08XXX fix add_static_view example confirm this is correct XXXCasey Duncan
2010-12-08XXX Fix example generated url, confirm this is correct XXXCasey Duncan
2010-12-08reword slightlyCasey Duncan
2010-12-08move long note to the end of section so as not to break up the flowCasey Duncan
2010-12-08clarify paragraph about name argumentCasey Duncan
2010-12-08rework paragraph about static view pathCasey Duncan
2010-12-08add commaCasey Duncan
2010-12-08smooth out bumpy sentenceCasey Duncan
2010-11-28Normalized narrative doc, code with linenos while text+bash don'tBlaise Laflamme
2010-11-16- The ``pyramid.settings.get_settings`` API is now deprecated. UseChris McDonough
``pyramid.threadlocals.get_registry().settings`` instead or use the ``settings`` attribute of the registry available from the request (``request.registry.settings``).
2010-11-12fix two references to a nonexistent functionChris McDonough
2010-11-09- All references to Pyramid-the-application were changed from :mod:`pyramid`Chris McDonough
to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal)
2010-11-07Minor documentation fixes.Marius Gedminas
2010-11-03de-zcml-ify various chapters and move ZCML to the declarative chapterChris McDonough
2010-10-25convert narrative docs to PyramidChris McDonough
2010-07-04documentation updatesChris McDonough
2010-07-02- The ``repoze.bfg.url.route_url`` API has changed. If a keywordChris McDonough
``_app_url`` is present in the arguments passed to ``route_url``, this value will be used as the protocol/hostname/port/leading path prefix of the generated URL. For example, using an ``_app_url`` of ``http://example.com:8080/foo`` would cause the URL ``http://example.com:8080/foo/fleeb/flub`` to be returned from this function if the expansion of the route pattern associated with the ``route_name`` expanded to ``/fleeb/flub``. - It is now possible to use a URL as the ``name`` argument fed to ``repoze.bfg.configuration.Configurator.add_static_view``. When the name argument is a URL, the ``repoze.bfg.url.static_url`` API will generate join this URL (as a prefix) to a path including the static file name. This makes it more possible to put static media on a separate webserver for production, while keeping static media package-internal and served by the development webserver during development.
2010-03-18quick fixes for static chapterCarlos de la Guardia
2010-01-18Prep for b1Chris McDonough
Merge a bunch of paper-based docs fixes Configure logging during bfgshell.
2010-01-17More reviews finished.Chris McDonough
2010-01-16Massive overhaul to deal with the reality that we don't map URLs directly to ↵Chris McDonough
code.