Das eez kaput! Sometime around 2002 I spaced the entire database table that mapped individual entries to categories. Such is life. What follows is a random sampling of entries that were associated with the category. Over time, the entries will be updated and then it will be even more confusing. Wander around, though, it's still a fun way to find stuff.
browser.block.target_new_window
Mozilla pref to suppress new windows also disables the "Please wait..."
server push hack in buglist.cgi.
The product includes an AxKit plugin, an AxKit provider and DTDs and Stylesheets to make delivering SXW files to the web a trivial matter, and the results are pretty too.
via laura holderOn June 17th, every year, the family goes through a private ritual: we photograph ourselves to stop a fleeting moment, the arrow of time passing by.
Cosset \Cos"set\, v. t. To treat as a pet; to fondle. She was cosseted and posseted and prayed over and made much of. --O. W. Holmes. web1913
cosset v : treat with excessive indulgence; "grandparents often pamper the children"; "Let's not mollycoddle our students!" [syn: {pamper}, {featherbed}, {cocker}, {baby}, {coddle}, {mollycoddle}, {spoil}, {indulge}] wn
An expression of disbelief, anger, or dismay.
ex. When Bob found out he got ripped off for his computer, he muttered "Schreibtischfuhrer."
Extremely hot.
ex. God, it's hotter than a pickle today.
An exclamation of surprise. Originates from Oor Wullie as chronicled in the Sunday Post (Uk)
ex. Jings, would you look at the size of that.
description
element in RSS. Wouldn't it be nice to have a markup language that you
could add structure and logic to? To which arbitrary tags could be
applied and that still "just worked" when the document proper is sent
to a browser. Even if the backend magic suddenly broke, the site might
look like crap but presumably it would still be usuable. HTML is, we'll
all agree, not the best candidate at first blush. XHTML, on the other
hand, comes pretty close. Through the magic of parameter entities and
the ability to define and tweak them
inside
the
DOCTYPE
declaration, you can essentially wrap (X)HTML in your own case-specific
tags.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" [ <!ENTITY % dtdMods SYSTEM "http://www.eatdrinkfeelgood.org/dtd.mod"> %dtdMods; ]>This is still an imperfect solution. The first problem is that the browsers have never been taught to deal with this syntax so the
%dtdMods;]>
from the DOCTYPE declaration gets printed to the browser window. Dunno.
The second problem involves the fact that I am overriding the
%Block;
entity, in
dtd.mod
, which is used to
determine
the child elements for the
body
tag. The good news is that I can re-assign the list of valid children,
in this case :
abstract
;
section
;
include
, thus applying more structure to my document than a pure formatting
language allows out of the box. Since the children of the first two
elements are
p
and
div
, respectively, I can start tapping away in HTML to my heart's content.
The bad news is that the
%Block;
entity is also used by the
blockquote
and
noscript
tags. There isn't much to do about this since you can't redefine
elements; oh well. A third problem is that you can not use already
defined parameter entities inside new definitions...
<!ENTITY % foo "(a|b|%c;|d)*">...without causing the w3c validator grief. I don't know why. Rudimentary testing suggests that you should not waste your time trying to assign styles to your new tags. Your mileage may vary.