Search the web
Sign In
New User? Sign Up
gobo-eiffel · Gobo Eiffel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 998 - 1041 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
998
... OK. ... This is a good idea. We even could make attribute 'accept_errors' obsolete then since attribute 'exit_code' would take over it's role as well. The...
Sven Ehrke
svenehrkeweb
Offline Send Email
Nov 2, 2003
8:41 am
999
... If I am not mistaken the way libxslt solved this was with EXSLT, where functions/extensions can be defined in Javascript. Example: ...
Marcio Marchini
sglebs
Offline Send Email
Nov 2, 2003
2:51 pm
1000
Hello, Gobo 3.3 is now available for download from the usual places in SourceForge and gobosoft.com. The CVS repository in SourceForge has been tagged GE_3_3. ...
Eric Bezault
gobosoft
Offline Send Email
Nov 3, 2003
2:50 pm
1003
Hello, Are there people out there that are still using Gobo with ISE 5.1 or SmallEiffel -0.74? The latest Gobo releases have not been tested with these two...
Eric Bezault
gobosoft
Offline Send Email
Nov 11, 2003
9:51 am
1005
Hi Franck, for a project at ETH Zurich, we use the Gobo XML parser. Since students are involved, we use Gobo 3.1 that is delivered with ISE Eiffel 5.3 to make...
Patrick Schoenbach
pschoenbach
Offline Send Email
Nov 16, 2003
12:10 am
1006
... 3.1 already used the full Eiffel parser that parses DTDs, so it should work fine. Could you give me a small example of document it fails to parse? It's not...
Franck Arnaud
nenieorg
Offline Send Email
Nov 16, 2003
3:20 am
1007
... The file looks like this: <?xml version="1.0"?> <!DOCTYPE map SYSTEM "traffic02.dtd"> <map name="Paris" images="images"> <background> <polygon> <color...
Patrick Schoenbach
pschoenb@...
Send Email
Nov 16, 2003
2:48 pm
1008
... http://gobo-eiffel.sourceforge.net/gobo/doc/xml/using.html last paragraph, 'Resolution of external entities'. So, set the file resolver, or include the DTD...
Franck Arnaud
nenieorg
Offline Send Email
Nov 16, 2003
7:43 pm
1009
... My code looks like this, but it still does not work (parse error): make is -- Create parser. do xml_parser := new_xml_parser create tree_pipe.make ...
Patrick Schoenbach
pschoenb@...
Send Email
Nov 16, 2003
8:56 pm
1010
... Looks OK. Is traffic02.dtd in the process' current directory? You can try to see if the file resolver object is called, and if yes why it fails to find the...
Franck Arnaud
nenieorg
Offline Send Email
Nov 16, 2003
9:55 pm
1011
Hi, Sorry if this has already been asked. But why does XM_FORMATTER not insert newlines and tabs to have a nice looking XML file? My second issue is that I'm...
Emmanuel Stapf [ES]
manus_eiffel
Offline Send Email
Nov 18, 2003
7:50 am
1012
... Hash: SHA1 ... Because it certain circumstances it would introduce white space where non is warranted. It works for data based XML, but it's not so easy ...
Berend de Boer
berenddeboer
Offline Send Email
Nov 18, 2003
9:39 am
1013
... As Berend said, it's because (content) whitespace is data in XML, that is we don't know which tags contain character data where whitespace matters. I'll...
Franck Arnaud
nenieorg
Offline Send Email
Nov 18, 2003
8:24 pm
1024
... Our use of XML is basic. Either an XML element has other XML elements, or it has some text data. As a consequence when it has an XML element we want the...
Emmanuel Stapf [ES]
manus_eiffel
Offline Send Email
Nov 26, 2003
6:06 am
1025
... Hash: SHA1 ... A completely different option is eposix. It has a streaming XML writer (EPX_XML_WRITER), so you cannot dynamically create a document, but...
Berend de Boer
berenddeboer
Offline Send Email
Nov 26, 2003
6:57 am
1026
When I have a generated XM_DOCUMENT generated by the XM_FORMATTER created with: create xm_document.make_with_root_named ("ROOT", create ...
Emmanuel Stapf [ES]
manus_eiffel
Offline Send Email
Nov 26, 2003
7:09 am
1027
... Emmanuel> <ROOT xmlns="" xmlns:ns1=""></ROOT> Emmanuel> However, Internet Explorer reports an error on this XML Emmanuel> file: Emmanuel> << The XML page...
Colin Paul Adams
colin@...
Send Email
Nov 26, 2003
8:00 am
1029
... What about: <element ...> My text is here and we should not remove the whitespace </element> I'd expect a normaliser to normalise to your...
Franck Arnaud
nenieorg
Offline Send Email
Nov 26, 2003
5:27 pm
1030
... It's a documented ;-) bug in XM_FORMATTER: doc/xml/TODO.txt> - check XM_FORMATTER handling of namespaces If it works at all in some case, you're lucky...
Franck Arnaud
nenieorg
Offline Send Email
Nov 26, 2003
5:36 pm
1031
Hi, I have a problem using XM_PRETTY_PRINT_FILTER. I have an XML document with the following tag: <my_element> Some random text. </my_element> Using...
Neil Collier [ES]
peel_man
Offline Send Email
Dec 2, 2003
1:14 am
1032
... I think you are suffering from an aliasing problem. The newline string is, as acceptable, a once string, so you will always get the same object for all...
Franck Arnaud
nenieorg
Offline Send Email
Dec 2, 2003
4:05 am
1033
Thanks Arnaud, Very informative. I have tried to duplicate on a smaller system but everything works ok. It seems, as you pointed out, the content string is...
Neil Collier [ES]
peel_man
Offline Send Email
Dec 4, 2003
5:19 pm
1034
... Franck> It's a documented ;-) bug in XM_FORMATTER: Franck> doc/xml/TODO.txt> - check XM_FORMATTER handling of Franck> namespaces Franck> If it works at all...
Colin Paul Adams
colin@...
Send Email
Dec 5, 2003
7:30 pm
1035
... Interesting. If I skimmed the xml-names-1.1 correctly, it means 'ns1 is not a defined prefix anymore', not to be confused with 'ns1 refers to the ""...
Franck Arnaud
nenieorg
Offline Send Email
Dec 6, 2003
3:20 am
1036
... Franck> Interesting. If I skimmed the xml-names-1.1 correctly, it Franck> means 'ns1 is not a defined prefix anymore', not to be Franck> confused with 'ns1...
Colin Paul Adams
colin@...
Send Email
Dec 6, 2003
8:47 am
1037
How do you tell the XML parser to operate in namespace aware mode? Or put it another way, how does the parser know whether or not this document is well-formed:...
Colin Paul Adams
colin@...
Send Email
Dec 7, 2003
9:20 am
1038
... XM_EIFFEL_PARSER: -- Namespace mode disable_namespaces -- Disable namespace parsing and allow strict -- XML 1.0 names (eg ":" or ":a:b:c:"). -- Namespace...
Franck Arnaud
nenieorg
Offline Send Email
Dec 7, 2003
3:46 pm
1039
... Could you explain your aversion to DTDs? I just started a project that will make use of XML. Several of the members will be generating XML files of the...
Brian Heilig
heiligb
Offline Send Email
Dec 8, 2003
8:36 pm
1040
... There's nothing wrong with what DTDs do (typing the structure of an XML document) it's just that it's a poor way to do this job, and there is a failure of...
Franck Arnaud
nenieorg
Offline Send Email
Dec 8, 2003
9:01 pm
1041
... Well, I'd hoped to use the Gobo XML parser. As we are just getting started, there is still time to switch. What does Gobo support? What do you recommend? ...
Heilig, Brian
heiligb
Offline Send Email
Dec 8, 2003
10:42 pm
Messages 998 - 1041 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help