« Return to Thread: grok.ResourceDirectory docs

grok.ResourceDirectory docs

by Jasper Spaans-4 :: Rate this Message:

Reply to Author | View in Thread

Hi,

The current grok universe lacks useful documentation for
grok.DirectoryResource (written by j-w), which is rather helpful when doing
stuff with hurry.resource. Here's a small snippet of code which documents
that for eternity in the list-archives. Here's the sample, I'll put it in
the site tonight.

import grok
from hurry.jquery import jquery
from hurry.resource import Library, ResourceInclusion

class jsdir(grok.DirectoryResource):
    grok.name('js')
    grok.path('js')

localjs = Library('js')

sprintf = ResourceInclusion(localjs, 'jquery.sprintf.js', depends=[jquery])

Now, putting something like sprintf.need() in your views at the right place
will cause the publisher to include the snippets for both jquery and
jquery.sprintf

Cheers,
--
Jasper Spaans

Fox-IT Experts in IT Security!                                
I www.fox-it.com
_______________________________________________
Grok-dev mailing list
Grok-dev@...
http://mail.zope.org/mailman/listinfo/grok-dev

 « Return to Thread: grok.ResourceDirectory docs