Skip to main content

js.yui

Introduction

This library packages YUI for fanstatic. It is aware of YUI’s structure and different modes (normal, minified, debug).

This requires integration between your web framework and fanstatic, and making sure that the original resources (shipped in the resources directory in js.yui) are published to some URL.

js.yui basic tests

Here are some basic tests for js.yui.

Let’s check the YUI structure by picking out a resource in it:

>>> import js.yui
>>> from fanstatic import init_needed
>>> needed = init_needed(base_url='http://localhost')
>>> needed.need(js.yui.fonts)
>>> print needed.render()
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/fonts/fonts.css" />

Let’s try a resource that has a dependency on fonts, namely grids:

>>> needed = init_needed(base_url='http://localhost')
>>> needed.need(js.yui.grids)
>>> print needed.render()
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/fonts/fonts.css" />
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/grids/grids.css" />

Let’s need two resources at the same time:

>>> needed = init_needed(base_url='http://localhost')
>>> needed.need(js.yui.grids)
>>> needed.need(js.yui.reset)
>>> print needed.render()
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/fonts/fonts.css" />
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/reset/reset.css" />
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/grids/grids.css" />

Let’s get the same, minified:

>>> needed = init_needed(base_url='http://localhost', minified=True)
>>> needed.need(js.yui.grids)
>>> needed.need(js.yui.reset)
>>> print needed.render()
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/fonts/fonts-min.css" />
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/reset/reset-min.css" />
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/grids/grids-min.css" />

Now let’s try to see consolidation: we include grids and reset at the same time. Since this time we enable rolling up, we expect to see the rollup reset-fonts-grids:

>>> needed = init_needed(
...     base_url='http://localhost', rollup=True)
>>> needed.need(js.yui.grids)
>>> needed.need(js.yui.reset)
>>> print needed.render()
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/reset-fonts-grids/reset-fonts-grids.css" />

Requesting minification has no effect on rollups, as the original rollup is already minified:

>>> needed = init_needed(
...     base_url='http://localhost', rollup=True, minified=True)
>>> needed.need(js.yui.grids)
>>> needed.need(js.yui.reset)
>>> print needed.render()
<link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/yui/reset-fonts-grids/reset-fonts-grids.css" />

CHANGES

2.8.2-1 (2011-04-13)

  • Update to fanstatic 0.11.1.

  • No longer list the resources it self as it’s own minified version.

2.8.2 (2011-01-07)

Release files for js.yui 2.8.2-1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for js.yui 2.8.2-1
File Size Uploaded
js.yui-2.8.2-1.tar.gz 2.3 MB Details

Release files / js.yui-2.8.2-1.tar.gz

Download URL js.yui-2.8.2-1.tar.gz
Size 2.3 MB
Tags Source
SHA-256 checksum
How to use checksums
7bc96628b10bec2d33b8549c155ab02939485d6dffe3b5b4f261adabbe39bf1b
BLAKE2b-256 checksum
How to use checksums
c466f897c3b1123c082febcf150fba009d75ebe54e2d77816eccc75999beaf80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

2.8.2-1 This release

1 release file

2.8.2

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page