stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


Simple XML parsing with SAX and DOM (OnJava.com)







Simple XML parsing with SAX and DOM
(OnJava.com)

Simple XML parsing with SAX and DOM
(OnJava.com)
07/01/2002 08:28 AM




This is a GrokNews Entry: (what is grok?)





Similar Items

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 AM
CNET 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 AM

Article on Parsing RSS


Article on Parsing RSS 11/18/2002 12:58 PM
I 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 AM
2004-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 AM

Parsing XML with Perl


Parsing XML with Perl 07/21/2002 10:36 PM
CNET Jul 21 2002 10:12PM ET

Parsing RSS At All Costs


Parsing RSS At All Costs 01/22/2003 07:41 PM
In 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 AM
Our 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 PM
SAX/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 PM
Stickysauce Dec 19 2002 6:46PM ET

Features: Non-Extractive Parsing for XML


Features: Non-Extractive Parsing for XML 05/19/2004 07:15 PM
Changing 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 AM

This 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 AM
CNET 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 AM
In 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 PM
Stodgy, 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 PM
pyParsing Python library - version 1.0.1 released

Pull Parsing in C# and Java


Pull Parsing in C# and Java 05/23/2002 10:39 PM

Introduction to Event-Driven XML Parsing


Introduction to Event-Driven XML Parsing 02/10/2004 02:49 AM
Apple 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 AM
For 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 AM
In 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 PM
SSAX-SXML Release 5.1

The State of the Union Parsing Tool


The State of the Union Parsing Tool 02/05/2005 09:55 PM

style.org/stateoftheunion/parse
track this site | 3 links


WPkontakt message parsing error


WPkontakt message parsing error 12/24/2004 12:36 PM
Jaroslaw Sajko (Dec 23 2004)

Flaw in Microsoft JPEG Parsing


Flaw in Microsoft JPEG Parsing 09/14/2004 06:12 PM

Warcraft III Replay Parsing Library


Warcraft III Replay Parsing Library 08/09/2004 11:30 AM
W3RepLib 0.9 beta released!

Liberal XML parsing related to
personality?


Liberal XML parsing related to
personality?
02/12/2004 07:41 PM
The 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 AM

Parsing XML documents with Perl
(Builder.com)


Parsing XML documents with Perl
(Builder.com)
07/18/2002 07:34 PM

RE: Internet Explorer URL parsing
vulnerability


RE: Internet Explorer URL parsing
vulnerability
12/10/2003 01:52 PM
http-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 AM

Re: Internet Explorer URL parsing
vulnerability


Re: Internet Explorer URL parsing
vulnerability
12/09/2003 03:45 PM
soulshok_at_hippie.dk (Dec 09 2003)

Internet Explorer URL parsing
vulnerability


Internet Explorer URL parsing
vulnerability
12/09/2003 01:22 PM
bugtraq_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 PM
The 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 AM

Codewalkers.com: Parsing INI Files Made
Easy


Codewalkers.com: Parsing INI Files Made
Easy
12/16/2003 08:58 AM
When 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 AM
Bram 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 AM
On 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 PM
Mark 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 PM
EnGarde 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 AM
Internet 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 AM
http://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 AM

Restore 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 PM

Download Java 2 Platform Standard
Edition 5.0 RC


Download Java 2 Platform Standard
Edition 5.0 RC
09/03/2004 06:04 PM

Download Java 2 Platform Standard
Edition 5.0 Update 1


Download Java 2 Platform Standard
Edition 5.0 Update 1
12/24/2004 01:05 PM

Microsoft 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 AM
eWeek Apr 7 2005 11:51AM GMT

Free Download Manager v0.9


Free Download Manager v0.9 07/10/2004 10:25 AM
Using 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 AM
G4 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 PM
Granted 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 AM
A 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 AM
Barefoot 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 AM
With 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 AM
Slashdot 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 PM
Alien 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 AM

Microsoft confirms Windows Server 2003,
HPC Edition


Microsoft confirms Windows Server 2003,
HPC Edition
06/24/2004 02:30 PM

Windows 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 AM
Microsoft 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 AM
AFP - 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 PM
The following papers have been recently posted to New Papers on:
http://freesoftware.mit.edu
http://opensource.mit.edu

PAPER 1

Author:
Vadén Tere

Title:
Intellectual Property, Open Source and Free Software
http://opensource.mi t.edu/papers/vaden.pdf

Abstract
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 2

Authors:
Garzarelli, Giampaolo & Roberto Galoppini

Title:
Capability Coordination in Modular Organization: Voluntary FS/OSS Production and the Case of Debian GNU/Linux
http:/ /opensource.mit.edu/papers/garzarelligaloppini.pdf

Abstract:
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 3

Author:
Modica, Salvatore

Title:
Knowledge Transfer in R&D Outsourcing (and Linux-Vs-Windows)
http://opensource.m it.edu/papers/modica.pdf

Abstract:
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 4

Author
Dafermos, George

Title:
Blogging the Market
http://opensourc e.mit.edu/papers/dafermos3.pdf

Abstract:
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 5

Author:
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.pdf

Abstract:
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 6

Updated 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.pdf

Abstract
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 7

Abstract 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 AM
Copenhagen 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 AM
dBusinessNews.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 PM
JOEL 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 PM
The 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 PM
The 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 AM
The 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 AM
The 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 PM
BrightHand Dec 16 2003 11:26AM ET

Simple XML parsing with SAX and DOM (OnJava.com)

The following phrases have been identified by the grok system as matching this entry: "windows mobile 2003 second edition" eap chap "fbi gui manager" "encoder price", in iran (formartist or "form artist") unable parse xml copybook xml xslt "c#" opensource "c standard library.chm" codingdifinitionctp crack "eye candy 5 impact" "download free" motorola (cox) dct6412 iii dvr hack

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

W3C Advisory
Committee Elects New
Advisory Board

Beehive Forum 0.1
released

'mnoGoSearch 3.1.20
(3.1.x)' released

MS Warns of Commerce
Server Flaw

'PHP Ticket 0.6'
released

Web Services
Security Spec Sent
to OASIS

Serious OpenSSH Flaw
Detected

SOAP Version 1.2
Last Call Working
Drafts Published

Overture UK on
Yahoo.com for UK
searchers.

Stat check -
Language
distribution in
AllTheWebs index

Micro Fonts - Whats
Up With That?

Ask Jeeves Does the
Logo Thing

'payex PHP Class
1.0' announced at
freshmeat.net

'Spyce 1.1.8'
announced at
freshmeat.net

'PHP Ticket 0.6'
announced at
freshmeat.net

'Javuh 1.0.4'
announced at
freshmeat.net

HTML Utopia --
Designing Without
Tables

Oracle 9i is a
native XML database

The JSP Files -
Parts 1 to 4: The
Red Pill

The JSP Files --
Parts 1 to 4: The
Red Pill

Foster The Feel Good
Factor

PHP Class
'Schematron'
released

PHP CLI For
Beginners

Variables and Paths
DSDL Examined
Cataloging XML
Vocabularies

Enforcing
Association
Cardinality

Schematron
DTML Basics (part 2)
BPMI Aims to
Reinvent Business
Process Design

XML Finds Its Voice
New XML-Based Spec
Published

Scratching the
Surface: Getting
Started with PHP
Fusebox

Mojo Webstats: 1.0
released

PHP Date + Time
Primer

Cofax 1.9.9d
released

Web Database
Applications with
PHP and MySQL: A
Book Review

Build Your Own
Database Driven
Website Using PHP &
MySQL

C++ Tricks of the
Trade: Friend
Functions

Database Design
Principles With
MySQL

Google Search
Appliance Updated

Google Wins More
Webbys

Slashdot Interviews
Craig Silverstein

Google API for
MovableType

AlltheWeb versus
Google

Heisenberg and
Google

Spell Check a String
with ASP and
Microsoft Word
Automation

Google Shows Up on
AOL.co.uk

Auto Bidding Coming
to Overture

Google Displaying
Meta Description

what is grok?