Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install hurry.zoperesource

How to install hurry.zoperesource

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install hurry.zoperesource
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.7 Available View build log
0.6 Available View build log
Windows (64-bit)
0.7 Available View build log
0.6 Available View build log
Mac OS X (10.5+)
0.7 Available View build log
0.6 Available View build log
Linux (32-bit)
0.7 Available View build log
0.6 Available View build log
Linux (64-bit)
0.7 Available View build log
0.6 Available View build log
 
License
ZPL
Lastest release
version 0.7 on Jan 5th, 2011

Zope integration for hurry.resource

This package provides Zope integration for hurry.resource. This means it's taking care of three things:

  • maintain the needed resources throughout the request/response cycle.
  • know how to make a URL to a resource.
  • make so that resource references are automatically inserted in the HTML header.

This library fulfills these conditions for a Zope Toolkit/Grok setup.

We'll run through a few tests to demonstrate it. Note that the real code being tested is not in this document itself, but in the views described in ftesting.zcml.

We need to be in a request to make this work, so let's up a request to a page we have set up in ftesting.zcml that should cause the inclusion of a single resource in its header:

>>> from zope.testbrowser.testing import Browser
>>> browser = Browser()
>>> browser.handleErrors = False
>>> browser.open('http://localhost/hurry.zoperesource.test_single')
>>> print browser.contents
<html>
<head>
    <script type="text/javascript" src="http://localhost/@@/foo/a.js"></script>
<BLANKLINE>
</head>
<body>
<p>the widget HTML itself</p>
</body>
</html>

If a resource happens to need another resource, this resource is also automatically included:

>>> browser.open('http://localhost/hurry.zoperesource.test_multiple')
>>> print browser.contents
<html>
<head>
    <script type="text/javascript" src="http://localhost/@@/foo/a.js"></script>
  <script type="text/javascript" src="http://localhost/@@/foo/b.js"></script>
<BLANKLINE>
</head>
<body>
<p>the widget HTML itself</p>
</body>
</html>

Let's force all javascript resources to be forced to be included at the bottom now, just before the </body> tag:

>>> browser.open('http://localhost/hurry.zoperesource.test_bottom')
>>> print browser.contents
<html>
<head>
</head>
<body>
<p>the widget HTML itself</p>
<script type="text/javascript" src="http://localhost/@@/foo/a.js"></script>
<script type="text/javascript" src="http://localhost/@@/foo/b.js"></script></body>
</html>

CHANGES

0.7 (2010-10-01)
  • Created ResourceDirectories now are registered for IBrowserRequest the base class of the previously used IDefaultBrowserLayer. So this package can be used when the layer used by the application does not extend IDefaultBrowserLayer, as e. g. z3c.layer.pagelet does.
0.6 (2010-07-29)
  • Update to work with hurry.resource 0.10 and later. This uses the entry point mechanism to configure any libraries.

    Note that this needs hurry.resource-based packages that themselves have been updated to hurry.resource 0.10's way of defining an entry point and including the resource path in the library. See the hurry.resource documentation for more information.

0.5 (2010-07-24)
  • Drop the zope.app.component dependency.
  • Register the ILibraryUrl adapter for ILibrary instead of Library, to be less specific for the adapter lookup.
  • Clearly specify license as ZPL.
0.4 (2009-12-16)
  • Updated required packages.
  • Use a newer version of hurry.resource which can insert the snippets into HTML itself.
0.3 (2008-12-05)
  • resource.need() needed a request object set up in order to function. This is rather annoying in tests, which often don't have a request object set up. We now instead return a dummy NeededResources object in such cases (which will then be thrown away). As a result, it's always safe to call resource.need() during tests, though if no request can be found it will have no effect.
0.2 (2008-10-13)
  • Add support for rendering fragments at the bottom of the page. When you call hurry.resource.bottom resources which are marked bottom-safe will be rendered at the bottom of the web page instead of in the <head> section. When you call hurry.resource.bottom(force=True), all .js resources will be included at the bottom.
0.1 (2008-10-11)
  • Initial public release.

Download

Subscribe to package updates

Last updated Jan 5th, 2011

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.