Sponsorised links
2007
selector - WSGI Delegation
This distribution provides WSGI middleware for "RESTful" mapping of URL paths to WSGI applications. Selector now also comes with components for environ based dispatch and on-the-fly middleware composition. There is a very simple optional mini-language for path expressions. Alternately we can easily use regular expressions directly or even create our own mini-language. There is a simple "mapping file" format that can be used. There are no architecture specific features (to MVC or whatever). Neither are there any framework specific features. Best of all, selector is the simplest thing that will work well (IMHO).
Sponsorised links
2006
CSS selectors: basic browser support | l–c–n.com
These charts compare basic support for the various selectors, pseudo-classes and pseudo-elements defined in the CSS Selectors module
CSS event:Selectors
以 CSS-selector 做 function assignment 的 javascript library,類似 Behaviour,但這個可以有 multiple selector,和自動的 element attachment
Most Popular Search Terms for Google, Yahoo, MSN, AOL, etc.
Daily Rankings of the most popular search terms for Google, Yahoo, MSN, AOL, etc. Sometimes includes top percentage gainers in query activity.
2005
Eric's Archived Thoughts: Universal Child Replacement
there is a way to simulate child selection without actually using the child combinator. The general pattern is to use a normal descendant selection in your first rule, and then “undo” the first rule with a second that has a universal selector in the middle. Suppose you want to boldface any p element that’s a child of a div, but no others. The solution:
div p {font-weight: bold;}
div * p {font-weight: normal;}
1
(14 marks)
