World: r3wp
[XML] xml related conversations
older newer | first last |
Maxim 12-Apr-2006 [366x2] | my god reading the w3c spec for XML is insane. |
XML overcomplicates soooo many things. its like the standard, for people who can't make up their minds: You can do this, or that or this too, but only when this and that or this occur outside and inside that other thing. | |
Sunanda 12-Apr-2006 [368] | XML was intended to be a simplification of SGML. But they forgot to ask first "why is SGML apparently some complicated?" So they ended up adding back in most of the complications in an ad hoc way. |
Allen 12-Apr-2006 [369x2] | XML was a simple 2 page spec originally. |
I think that might be why the microformats are taking off. They use XML in its simplest, intended form. | |
Graham 12-Apr-2006 [371x2] | I'm on a list discussing, inter alia, CCR .. which stands for continuity of care record. It's XML, and so guys are saying it's taken them 50,000 lines to write the parsing code etc. |
Possibly an exaggeration on their part. | |
Pekr 12-Apr-2006 [373x2] | I think not, Graham .... we have such a problem ... big corporation, we try to define xml formats. The trouble is, big products do wrap it for you, but what about smaller companies? |
not to mention browser incompatibilities, because in the case of XML, browser is your "preview" interface ... | |
Geomol 12-Apr-2006 [375] | If you need a simple XML spec, don't forget my RebXML: http://home.tiscali.dk/john.niclasen/rebxml/ (Only a couple of pages.) It's an easy way to work with XML inside REBOL, and on the same page you'll find scripts for converting between XML and RebXML. |
Pekr 12-Apr-2006 [376] | I think that current situation of XML world shows, that it is rather absurd situation .... the idea of automatic exchange of docs, their specs, without involvement of ppl, is naive .... |
Geomol 12-Apr-2006 [377x2] | I remember talk a few years ago, that MS would make their .doc format XML based. And people thought, that would mean, it would become an 'open' format, which could now be read and written by any wordprocessor. If you have somehing like: #{78797A7138373837} in binary, and choose to make it into XML: <xyzq>8787</xyzq> does that make you know, what it mean? No, of course not. Some MS employee later told in an interview, that MS of course would guard their IP - 'intellectual property'. I don't know, where the story ended, and I don't care much, as I keep away from MS formats. |
If you choose to have your doc formats in something like the XML-based OpenDocument, where every tag is explained in an open specification, then it can be used. (Only problem then is XML itself with it's problems.) | |
Maxim 12-Apr-2006 [379x3] | saved out a 15 cell spread sheet in microsoft xml yesterday... 58kb of data HAHAHHAHAHAHAHA |
geomol, does RebXML handle namespaces and unicode? | |
Geomol, just looked over rebxml... I've build a similar engine, even simpler actually. but it might become a little bit smarter in a few weeks... maybe supporting more of the XML 1.0 specs like &chars conversion and such. | |
Pekr 12-Apr-2006 [382] | maxim - have you used Gawain's xml parser, or is it your own one? |
Maxim 12-Apr-2006 [383x5] | my own when I started the project I did not have many days to "get on with it" and for various reasons all the tools I tried didn't properly load the specification I was trying to load. |
but there where some errors in the datafile itself, in the begining. | |
it had to do with http dowloading of the chunks... | |
my tool currenctly loads 1MB of xml tags in under a second. its almost as fast as load/markup. | |
yet builds a nested block of blocks much like RebXML. | |
Pekr 12-Apr-2006 [388] | does it work SAX way or DOM way? I mean - load first, then parse, or parse while reading way? |
Maxim 12-Apr-2006 [389x2] | it does all in one shot. I read through the string once and have a nifty recursion with tail handling. |
I want to try out with rebcode one day. it would probably go about 10 times faster or more. | |
Pekr 12-Apr-2006 [391] | hmm, I think that our problem is not lack of speed, but lack of fully compliant xml parser at first.... |
Maxim 12-Apr-2006 [392x2] | yep. |
reading the xml spec... its no wonder. | |
Pekr 12-Apr-2006 [394] | no wonder what? |
Rebolek 12-Apr-2006 [395] | pekr: no wonder there's still no fully compliant xml parser |
[unknown: 9] 12-Apr-2006 [396] | my god reading the w3c spec for XML is insane. LOL |
Allen 12-Apr-2006 [397] | I always thought the c in W3c meant committee not consortium. ;-) |
Geomol 13-Apr-2006 [398] | Maxim yes, RebXML can handle namespace tags and unicode. |
Maxim 13-Apr-2006 [399] | Geomol, you might just have made yourself a new user :-) I'll try to stress-test RebXML next week, gauging speed, features and stability. |
Maxim 20-Apr-2006 [400] | anyone know if any XML Schema integration has been done in REBOL? |
[unknown: 9] 21-Apr-2006 [401] | We have done a little in Qtask. WE save the tasks as XML (and call it XLS so that Excel can load it). We will be writing an RSS reader soon. |
Graham 25-Apr-2006 [402x4] | there's a new script in the library %rebelxml.r ( not sure why it isn't rebolxml.r ) |
what's the difference between RebXML, and rebelxml and other implementations? | |
which is best to use? | |
( I know nothing really of XML .. just know I have to parse some data, and rewrite out my data as xml ) | |
Maxim 25-Apr-2006 [406] | I'm using rebxml as the loader and then write a dialect over it to convert to my preffered (easier to use) block format. |
Graham 25-Apr-2006 [407] | what do think of this new script ? |
Maxim 25-Apr-2006 [408x3] | Its news to me, but in my useage, Its easier for me to have rebol loaded blocks, cause I can use path notation directly, in order to access the data, just as if they where objects. |
I must admit that just by looking at the docs, I prefer Geomol's solution better, its more approachable. | |
that's my 2 cents. and a 2 minute overlook of rebelxml.r | |
Graham 25-Apr-2006 [411] | Where's your script ? :) |
Maxim 25-Apr-2006 [412x2] | rebxml can be found here, with docs :-) http://home.tiscali.dk/john.niclasen/rebxml/ |
also, although I have not looked at rebelxml in this regard, rebxml handles many of the xml idiosyncracies in the XML specification like empty tags, CDATA blocks, and some level of character conversion to handle unicode and & escaped chars. | |
Geomol 26-Apr-2006 [414] | Great to see my work is being used! :-) |
Joe 26-Apr-2006 [415] | How does rebxml compare to gavin withead xml-parser.r ? |
older newer | first last |