How to Design XML Documents
Aug 27 2:51:29
Back online!
Jul 30 16:17:53
Response to "Knowledge Management 2.0"
Jul 18 2:45:52
Drupal Apps
Jun 3 7:17:00
Google Sites and the AJAX universe
May 21 1:18:39
Note to self (since I keep forgetting the magic incantation) -- this is how you declare entities in E4X XML documents under Askari (my scripting-optimized version of Rhino):
js> var x =
<?xml version="1.0"?>
<!DOCTYPE x [<!ENTITY nbsp ' '>]>
<x>test non-breaking space</x>;
js> print(x);
test non-breaking space
js>