Simple XML parsing with SAX and DOM (OnJava.com)
Grok Headline matches for Simple XML parsing with SAX and DOM (OnJava.com)
Parsing XML documents with Perl's
XML::Simple
Parsing XML documents with Perl's
XML::Simple
09/20/2004 12:46 AMCNET Sep 20 2004 4:09AM GMT
[O'Reilly's Onjava.com]Java vs. .NET
Security, Part 2
[O'Reilly's Onjava.com]Java vs. .NET
Security, Part 2
12/11/2003 06:12 AMArticle on Parsing RSS
Article on Parsing RSS
11/18/2002 12:58 PMI have put up an article on how I parse RSS files. Also, in the same
article I provide my RSS parser as a free download. I'd appreciate
any feedback on it.
The WAI compliancy will have to wait another day. One thing the Bobby
accessibility validator doesn't like about my site is the links below
every new post. The "permalink" and "comments" are specifically what
it doesn't like. This is because the same text is repeated for each
news post, although each one points to something (slightly) different.
I don't want to get rid of these links, so I'm looking for a suitable
(perhaps graphical) alternative.
Parsing OWL in RDF/XML Published
Parsing OWL in RDF/XML Published
01/22/2004 03:25 AM2004-01-21: The Web Ontology Working Group has released Parsing OWL in
RDF/XML as a Working Group Note. The OWL language is used to publish
and share sets of terms called ontologies, supporting advanced Web
search, software agents and knowledge management. This document
describes a strategy for OWL-RDF parsers. Read about the Semantic Web.
(News archive)
More XML: Parsing with Evolt.org
More XML: Parsing with Evolt.org
08/14/2002 08:16 AMParsing XML with Perl
Parsing XML with Perl
07/21/2002 10:36 PMCNET Jul 21 2002 10:12PM ET
Parsing RSS At All Costs
Parsing RSS At All Costs
01/22/2003 07:41 PMIn his second Dive into XML column, Mark Pilgrim describes his
parse-at-all-costs parser of ill-formed RSS feeds, using Python's
sgmllib.
dtddoc step 1: Parsing a DTD
dtddoc step 1: Parsing a DTD
10/02/2002 09:35 AMOur quest to build a better automatic DTD documentation tool begins
with a quick look at some of the available DTD parsers for Java, Perl,
and PHP. By Michael Classen. 1002
Functional XML Parsing Framework 5.1
Functional XML Parsing Framework 5.1
09/16/2004 09:22 PMSAX/DOM/SXML parsers with support for XML namespaces and validation.
Parsing a Querystring With Perl
Parsing a Querystring With Perl
12/19/2002 07:40 PMStickysauce Dec 19 2002 6:46PM ET
Features: Non-Extractive Parsing for XML
Features: Non-Extractive Parsing for XML
05/19/2004 07:15 PMChanging the way XML parsers are written can make parsing more
efficient and more flexible.
RSS native parsing in the next Firebird
RSS native parsing in the next Firebird
02/10/2004 02:42 AMThis is new to me. I was checking out the nightly builds of
Firebird 0.8 betas (windows and linux, mac<
/a>) and they'
ve got an rss button and panel that parses RSS, with titles
linking to the main window. Slick, but they need to let you track
which ones have new/old items.
update: It turns out I'm actually a dumbass. I
installed this RSS
extension so long ago I forgot about it, and because I never saw
it show up in any menu, I figured it never "took" on my Firebird
install. Then when I had the new nightly build the toolbars were out
of whack on first run so I went to customize them and saw the RSS
button for the first time, and assumed it came with Firebird 0.8. My
bad.
Parsing the News.com RSS feed with PHP
Parsing the News.com RSS feed with PHP
12/11/2003 02:48 AMCNET Dec 11 2003 2:44AM ET
BitFlux Blog: Parsing Bad XML in PHP 5.1
BitFlux Blog: Parsing Bad XML in PHP 5.1
08/19/2004 10:10 AMIn a new note from the
BitFlux
blog, Christian Stocker has information about the latest patch
comitted to the PHP 5.1 branch that
allows you to parse not
well-formed XML documents and adds the missing elements, eg. missing
closing tags.
Independently Parsing Perl
Independently Parsing Perl
06/17/2005 04:30 PMStodgy, boring languages have great editors. What's keeping Perl from
refactoring support, perfect syntax highlighting, and other advanced
transformation techniques? It's really difficult to parse Perl.
Fortunately, Adam Kennedy's PPI project provides a standalone Perl
parser that operates correctly on all but 28 of the 38,000 CPAN
modules. Here's how it works and what you can do with it.
Python parsing module
Python parsing module
12/18/2003 01:00 PMpyParsing Python library - version 1.0.1 released
Pull Parsing in C# and Java
Pull Parsing in C# and Java
05/23/2002 10:39 PMIntroduction to Event-Driven XML Parsing
Introduction to Event-Driven XML Parsing
02/10/2004 02:49 AMApple documents the new-in-Panther NSXMLParser class.
High Speed XML Parsing is Not Intuitive
High Speed XML Parsing is Not Intuitive
02/11/2004 03:58 AMFor a PHP weblog, there haven't been many PHP articles or links
recently. This is because I feel most recent PHP articles I read have
nothing fresh to say, repeating material I linked to 2 or 3 years ago.
Perhaps I'm getting jaded. So to keep things fresh, here's a new
article, mostly original, and hopefully of some interest to everyone!
Last year, Tim Bray, one of the co-authors of the XML spec,
mentioned that he used Perl regular expressions to parse
XML.
Now here's the dirty secret; most of it is
machine-generated XML, and in most cases, I use the perl regexp engine
to read and process it.
I was struck by this because I would have thought XPath or SAX
would provide better performance
as they are APIs tuned specifically for XML.
I decided to do some benchmarks to determine which techniques were
better. I also wanted a realistic test, so I benchmarked parsing the
RSS feed of this
web-site, searching for the contents of all title tags, and returning
the contents as an array. The RSS file is from Nov 2003 (yes i did
this benchmark that long ago), and is about 20K and has 12 title tags,
so the returned array will have 12 title strings.
The techniques used were:
1. Regular expression:
preg_match_all('/<title>([^<]*)/',$rss,$titles_arr))
2. Explode('<title>', $rss) then strip the matching </title>
tag using strpos() and substr().
3. XPath, using $title_nodes = $ctx->xpath_eval("//title");
4. SAX, wrote an element handler function that matched and
processed the title tag.
5. DOM, using $titles = $dom->get_elements_by_tagname('title').
Intuitively, this should have been the slowest, as the whole tree is
generated.
Results
Here are the timings for processing the RSS file 1000 times. Faster
is better.
seconds Relative
to REGEX
REGEX 0.1080 1.00
EXPLODE 0.1696 1.57
DOM 6.3212 58.53
XPATH 8.3417 77.24
SAX 10.0851 93.38
Conclusion
Intutively, I would have thought that XPath would be the fastest
as XPath expressions can be compiled and tuned for XML. But the best
performance was achieved using regular expressions, which is
what Tim is using.
It appears that the DOM, SAX and XPath libraries remain immature
(compared to the Perl-compatible regex library) and are not highly
optimized. Strangely enough, DOM performance is better than XPath and
SAX! Perhaps someone else can explain why.
If anyone is interested, i can post the source.
Test platform: Windows 2000, PHP 4.3.3. I also tested on Linux, PHP
4.3.2, with similar results.

BitFlux Blog: Parsing Bad XML - Part 2
BitFlux Blog: Parsing Bad XML - Part 2
08/20/2004 08:31 AMIn response to his
introduction of the
non-well-formed XML patch the other day, Christian Stocker has a
new posting with
a bit of
a rebuttal on the subject.
S-exp-based XML parsing/query/conversion
S-exp-based XML parsing/query/conversion
09/16/2004 07:33 PMSSAX-SXML Release 5.1
The State of the Union Parsing Tool
The State of the Union Parsing Tool
02/05/2005 09:55 PMstyle.org/stateoftheunion/parse
track this
site | 3 links
WPkontakt message parsing error
WPkontakt message parsing error
12/24/2004 12:36 PMJaroslaw Sajko (Dec 23 2004)
Flaw in Microsoft JPEG Parsing
Flaw in Microsoft JPEG Parsing
09/14/2004 06:12 PMWarcraft III Replay Parsing Library
Warcraft III Replay Parsing Library
08/09/2004 11:30 AMW3RepLib 0.9 beta released!
Liberal XML parsing related to
personality?
Liberal XML parsing related to
personality?
02/12/2004 07:41 PMThe heat of the discussion on liberal XML parsing has subsided, so
this is actually a little late. That's because I wasn't sure if I
should post this. But a post by Dave Winer today convinced me to post
it anyway. Let me just say up front that I could be completely wrong.
?
Boost performance when parsing (Java
Pro)
Boost performance when parsing (Java
Pro)
09/12/2002 07:48 AMParsing XML documents with Perl
(Builder.com)
Parsing XML documents with Perl
(Builder.com)
07/18/2002 07:34 PMRE: Internet Explorer URL parsing
vulnerability
RE: Internet Explorer URL parsing
vulnerability
12/10/2003 01:52 PMhttp-equiv_at_excite.com (Dec 09 2003)
dtddoc step 1: Parsing a DTD
(WebReference.com)
dtddoc step 1: Parsing a DTD
(WebReference.com)
10/08/2002 09:14 AMRe: Internet Explorer URL parsing
vulnerability
Re: Internet Explorer URL parsing
vulnerability
12/09/2003 03:45 PMsoulshok_at_hippie.dk (Dec 09 2003)
Internet Explorer URL parsing
vulnerability
Internet Explorer URL parsing
vulnerability
12/09/2003 01:22 PMbugtraq_at_zapthedingbat.com (Dec 09 2003)
URL Parsing Bug in IE Invites Phishing
Attacks
URL Parsing Bug in IE Invites Phishing
Attacks
06/11/2004 09:09 PMThe bug, which affects fully patched versions of IE, lets malicious
sites assume the privileges of more trusted zones.
Making the News: Parsing RSS Feeds With
PHP
Making the News: Parsing RSS Feeds With
PHP
11/13/2002 08:59 AMCodewalkers.com: Parsing INI Files Made
Easy
Codewalkers.com: Parsing INI Files Made
Easy
12/16/2003 08:58 AMWhen working with a PHP script, sometimes it's just easier to have
some of the configuration options outside of the souce. Not only does
this make things a bit more friendly for the user, but it makes less
debugging for you in the long run. But, to harness this feature, you
might need a shove in the right direction - and that's where
this new article
comes in.
OpenSSL ASN.1 parsing bugs PoC / brute
forcer
OpenSSL ASN.1 parsing bugs PoC / brute
forcer
01/16/2004 10:59 AMBram Matthys (Syzop) (Jan 15 2004)
Incremental XML Parsing and Validation
in a Text Editor
Incremental XML Parsing and Validation
in a Text Editor
12/15/2003 02:29 AMOn 10 December 2003 at XML 2003 in Philadelphia, James Clark presented
the ideas and implementation behind his nXML XML editing mode for GNU
Emacs.
[OpenSSL Advisory] Denial of Service in
ASN.1 parsing
[OpenSSL Advisory] Denial of Service in
ASN.1 parsing
11/04/2003 12:13 PMMark J Cox (Nov 04 2003)
[ESA-20031104-029] 'openssl' ASN.1
parsing denial of service
[ESA-20031104-029] 'openssl' ASN.1
parsing denial of service
11/04/2003 01:23 PMEnGarde Secure Linux (Nov 04 2003)
Grok Description matches for Simple XML parsing with SAX and DOM (OnJava.com)
GrokA matches for Simple XML parsing with SAX and DOM (OnJava.com)
Quask FormArtist Free Edition
Quask FormArtist Free Edition
07/29/2004 09:52 AMInternet Works Jul 29 2004 1:47PM GMT
Free Not-For-Resale Copy of Visual Basic
.NET 2003 Standard Edition*
Free Not-For-Resale Copy of Visual Basic
.NET 2003 Standard Edition*
05/28/2004 01:48 AMhttp://msdn.microsoft.com/vbasic/art/atthemovies/vbm_poster_controls.j
pg
Have the new Windows Mobile? Download
free themes.
Have the new Windows Mobile? Download
free themes.
07/08/2004 08:56 AMRestore Defaults button was removed in
the Microsoft Windows Mobile 2003 Second
Edition
Restore Defaults button was removed in
the Microsoft Windows Mobile 2003 Second
Edition
05/25/2004 04:37 PMDownload Java 2 Platform Standard
Edition 5.0 RC
Download Java 2 Platform Standard
Edition 5.0 RC
09/03/2004 06:04 PMDownload Java 2 Platform Standard
Edition 5.0 Update 1
Download Java 2 Platform Standard
Edition 5.0 Update 1
12/24/2004 01:05 PMMicrosoft Releases Windows Server 2003
SP1The software vendor releases to
manufacturing and as a free download
Microsoft Releases Windows Server 2003
SP1The software vendor releases to
manufacturing and as a free download
04/07/2005 07:09 AMeWeek Apr 7 2005 11:51AM GMT
Free Download Manager v0.9
Free Download Manager v0.9
07/10/2004 10:25 AMUsing power of this free download accelerator and manager you can
downloads files and complete websites up to 600% faster than before.
It utilizes complete bandwidth of your internet connection even if you
download from slow web sites. Features of the download manager
include: easy integration with Internet Explorer and Opera, powerful
scheduler, antivirus integration, adjusting traffic usage, resuming
downloads, downloading complete websites. [Freeware 1.16 MB]
Download of the Day: AVG Free Edition
Download of the Day: AVG Free Edition
07/08/2004 03:56 AMG4 Tech TV Jul 8 2004 8:10AM GMT
AudioUnits Manager 1.0 a free download
AudioUnits Manager 1.0 a free download
05/24/2004 03:40 PMGranted Software has released version 1.0 of their AudioUnits Manager
software, reports MusicOnTheMac...
Free mobile phone advertising for Irish
pubs now available on Ireland Pub Guide
- Mobile Edition.
Free mobile phone advertising for Irish
pubs now available on Ireland Pub Guide
- Mobile Edition.
06/23/2004 02:36 AMA new free advertising service is now available for pubs throughout
Ireland. Publicans can freely advertise their premises to one of the
largest audience of people looking for things to do in Ireland, both
on the web and now on their mobile phone at
http://mobile.irelandpubguide.com. [PRWEB Jun 23, 2004]
Barefoot Software Launch Australian
Swimsuit Edition-Free, a Free Mobile
Phone and Wireless Device Service for
Cardmate on Symbian Devices
Barefoot Software Launch Australian
Swimsuit Edition-Free, a Free Mobile
Phone and Wireless Device Service for
Cardmate on Symbian Devices
06/12/2004 02:48 AMBarefoot Software Asia Limited (BSAL) is pleased to announce the
launch Australian Swimsuit Edition-Free (ASE), via the Barefoot
Software website (http://www.barefootsoft.com) for immediate download.
ASE is a Cardmate application for mobile phones which is being
launched for Free as a promotional application to end users who have a
Symbian based mobile phone. ASE, the first Australian swimsuit model
application for Smartphone devices in the World can initially be
downloaded by users who have a Nokia (6600/3650/7650), Sony Ericsson
P800/P900 and other compatible phones from the barefoot Web site.
[PRWEB Jun 12, 2004]
Business Contact Manager for Outlook
2003 Update: Windows Small Business
Server 2003
Business Contact Manager for Outlook
2003 Update: Windows Small Business
Server 2003
12/03/2003 12:40 AMWith this update you can use Windows Small Business Server 2003 to run
Business Contact Manager for Outlook 2003.
Download: Windows Server 2003 commands
Download: Windows Server 2003 commands
05/29/2004 04:47 AM“Get detailed information on Windows Server 2003 system and file
system commands, command syntax, and command switches with this
one-page sample chart from our Quick Reference: Server Commands
Pak.”
Iran: Even If Windows Is Free, Linux Is
Preferred
Iran: Even If Windows Is Free, Linux Is
Preferred
09/21/2004 02:52 AMSlashdot Sep 21 2004 5:18AM GMT
[UPDATED] Alien Skin Software Announces
Eye Candy 5: Impact
[UPDATED] Alien Skin Software Announces
Eye Candy 5: Impact
06/17/2005 04:40 PMAlien Skin Software today announced Eye Candy 5: Impact. A set of 10
plug-in filters for Adobe Photoshop and other compatible host
programs, Impact creates chrome, bevels, glass buttons,
perspective...
[~ This is just a sample, visit MacMerc.com for the full story! ~]
HPC Edition of Windows Server 2003 on
Tap for 2005
HPC Edition of Windows Server 2003 on
Tap for 2005
06/24/2004 01:20 AM“Windows Server 2003, HPC Edition, is expected to ship in the
second half of 2005. With so much time before the delivery deadline,
pricing and packaging decisions are far from final. For now, Microsoft
says Windows Server 2003, HPC Edition, will offer customers a
Windows-based solution with a single simplified environment for
developing HPC applications, deploying HPC clusters and managing the
clusters.”
Dell unable to ship Pentium 4 Expensive
Edition yet
Dell unable to ship Pentium 4 Expensive
Edition yet
11/04/2003 08:39 AMMicrosoft confirms Windows Server 2003,
HPC Edition
Microsoft confirms Windows Server 2003,
HPC Edition
06/24/2004 02:30 PMWindows Server 2003, Enterprise x64
Edition 180-day Evaluation (RTM)
Released
Windows Server 2003, Enterprise x64
Edition 180-day Evaluation (RTM)
Released
04/01/2005 11:11 AMMicrosoft has released the trial version of Windows Server 2003,
Enterprise x64 Edition. This lasts for 180 days and can be downloaded
via the link in the headline above.
Windows may be free in Iran, but
security fears spark Linux drive (AFP)
Windows may be free in Iran, but
security fears spark Linux drive (AFP)
09/20/2004 08:31 AMAFP - Iran has become the latest country to edge towards ditching the
ubiquitous Microsoft computer operating system in favour of the
open-source Linux solution, even if its refusal to abide by copyright
laws means that the Islamic republic does not pay a penny to Bill
Gates.
New Papers at Opensource and Free
Software MIT
New Papers at Opensource and Free
Software MIT
01/01/2004 12:18 PMThe following papers have been recently posted to New Papers on:
http://freesoftware.mit.eduhttp://opensource.mit.eduPAPER 1Author:
Vadén
Tere
Title:
Intellectual Property, Open Source
and Free Softwarehttp://opensource.mi
t.edu/papers/vaden.pdfAbstract
The notion of
intellectual property is used in order to create digital commodities.
While the commodification of code is useful for certain kinds of
knowledge intesive work (the Taylorist forms), it severely disrupts
other types of knowledge creation. Applying Scott Lash's division of
knowledge creation into organisational and disorganisational types, we
also gain insight into the different positions towards IP held by
different wings of the FOSS community.
PAPER
2Authors:
Garzarelli, Giampaolo & Roberto
Galoppini
Title:
Capability Coordination in
Modular Organization: Voluntary FS/OSS Production and the Case of
Debian GNU/Linuxhttp:/
/opensource.mit.edu/papers/garzarelligaloppini.pdfAbstract:
The paper analyzes voluntary Free Software/Open
Source Software (FS/OSS) organization of work. The empirical setting
considered is the Debian GNU/Linux operating system. The paper finds
that the production process is hierarchical notwithstanding the
modular (nearly decomposable) architecture of software and of
voluntary FS/OSS organization. But voluntary FS/OSS project
organization is not hierarchical for the same reasons suggested by the
most familiar theories of economic organization: hierarchy is
justified for coordination of continuous change, rather than for the
direction of static production. Hierarchy is ultimately the overhead
attached to the benefits engendered by modular organization.
PAPER 3Author:
Modica,
Salvatore
Title:
Knowledge Transfer in R&D
Outsourcing (and Linux-Vs-Windows)http://opensource.m
it.edu/papers/modica.pdfAbstract:
Why did
Microsoft not hire all those smart programmers who ended up developing
Linux through the internet? Because, we answer, the value of the
information about its operating system that Microsoft should have
transferred to any of them to render her productive would have been
too high compared to her expected individual contribution, so that
after writing a contract with Microsoft the typical developer would
have run away to sell the acquired knowledge on the market. On the
other hand, knowledge transfer in R&D outsourcing is not always so
critical, and for example in the pharmaceutical and chemical
industries research contracts are extensively used, usually in the
context of a long term relationship between firm and innovator. We
analyze this kind of repeated interaction, and find that when the
knowledge-transfer problem is not blocking, the firm should transfer
to the innovator as much information as it is compatible with the
latter's incentive constraints.
PAPER 4Author
Dafermos, George
Title:
Blogging the Markethttp://opensourc
e.mit.edu/papers/dafermos3.pdfAbstract:
Weblogs
have been recently characterised as the "open source media". And in
much the same way that open source software is been deployed, marketed
and sold within both commercial and non-commercial contexts, weblogs
can advance both commercial and non-commercial objectives. However, in
this primary - research paper, the focus is on the benefits that
organisations can seize by embracing weblogs, and how weblogs are
bound to revitalise marketplace and workplace conversations. In
addition, several case studies are being analysed, ranging from
Slashdot and Openflows to Amazon, Macromedia, Groove Networks, and
Gizmodo.
PAPER 5Author:
McCormick, Chip
Title:
The Big Project That
Never Ends': Role and Task Negotiation Within an Emerging Occupational
Community (Dissertation in progress)http://opensourc
e.mit.edu/papers/mccormick.pdfAbstract:
This
dissertation involved in-depth interviews of over fifty open source
developers in two major open source projects. The primary areas of
interest were 1) conducting an ethnographic study of the work
practices and culture of 'post-burecratic' organizations to see what
lessons these groups may hold for managing intellectual labor and 2)
examining whether the open source movement represents a new
professional model for software engineering.
PAPER
6Updated Paper
Author:
Chiao,
Benjamin Hak-Fung
Title:
An Economic Theory of
Free and Open Source Software: A Tour from Lighthouse to Chinese-Style
Socialism (revised version)http://opensource.mi
t.edu/papers/chiao.pdfAbstract
The theory is that
free and open source software is private property under the guise of
common property. Such software is distributed mostly under the GNU
General Public License. The intents in The GNU Manifesto suggest
striking similarities between this license and communism. The
resulting economic properties, however, are similar to those of
Chinese-style socialism: both resulted from an increased separation of
legal and economic ownership. The phenomenal growth of China in the
last twenty five years and of such software in the past few years
could be attributed to such separation.
PAPER
7Abstract Submission
Author:
Muffatto, Moreno & Matteo Faldani
Title:
Open Source as a Complex Adaptive System - Published in
Emergence 5 (3)http://www.emergence.org/Abstract:
The Open Source community and its
activities can be considered to have the characteristics of a system.
The Open Source system is distinctive because it is neither controlled
by a central authority that defines strategy and organization nor
totally chaotic. It can be placed at a middle position between a
planned system and a chaotic one. In this sort of position there are
non-formal rules which allow the system to produce significant
results. The Complex Adaptive System theory can be used to better
understand and analyze the Open Source system. This work presents a
description of the main characteristics of the functioning of the Open
Source community regarding its organizational structure and
development process. The concept of complex adaptive system is then
introduced and its functioning mechanisms briefly described. Finally,
we will interpret the characteristics of the Open Source community in
the context of complex adaptive systems theory.
While mobile phone producers Nokia,
Siemens, SonyEricsson, and Motorola
expected 2003 to set
While mobile phone producers Nokia,
Siemens, SonyEricsson, and Motorola
expected 2003 to set
04/21/2004 07:26 AMCopenhagen Post Apr 21 2004 11:15AM GMT
IntelliGolf Eagle Edition -w/GPS- Ships
for Microsoft Windows Mobile-Based
Pocket PCs, Smartphones, and PalmOn
IntelliGolf Eagle Edition -w/GPS- Ships
for Microsoft Windows Mobile-Based
Pocket PCs, Smartphones, and PalmOn
03/25/2005 11:04 AMdBusinessNews.com Mar 25 2005 3:09PM GMT
Two Windows Mobile 2003 Smartphones from
i-Mate
Two Windows Mobile 2003 Smartphones from
i-Mate
04/14/2004 03:46 PMJOEL JOHNSON -- MobilePCMag has two exclusive reviews of i-Mate
smartphones running Microsoft's Windows Mobile 2003 Pocket PC Phone
Edition. The first is the i-Mate Pocket PC [pictured left], a 'beefy'
400Mhz slate-style GSM phone with an included camera in a svelte
package. At $850, it's beefy on the wallet,...
The XSLT C library for GNOME 1.1.6
The XSLT C library for GNOME 1.1.6
04/18/2004 08:25 PMThe XSLT C library developed for the GNOME project.
The XSLT C library for GNOME 1.1.0
The XSLT C library for GNOME 1.1.0
11/04/2003 06:00 PMThe XSLT C library developed for the GNOME project.
The XSLT C library for GNOME 1.1.3
The XSLT C library for GNOME 1.1.3
02/17/2004 10:02 AMThe XSLT C library developed for the GNOME project.
The XSLT C library for GNOME 1.1.8
The XSLT C library for GNOME 1.1.8
07/06/2004 08:18 AMThe XSLT C library developed for the GNOME project.
RumorMill: Motorola Planning Not One But
Three Windows Mobile Smart Phones
RumorMill: Motorola Planning Not One But
Three Windows Mobile Smart Phones
12/16/2003 01:38 PMBrightHand Dec 16 2003 11:26AM ET
Simple XML parsing with SAX and DOM (OnJava.com)