tpxmlpartner-developers Mailing List for TurboPower XML Partner
Brought to you by:
tpsfadmin
You can subscribe to this list here.
| 2004 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Richard L. <ri...@li...> - 2006-03-15 09:10:35
|
In message <BAY...@ph...>, minhal alsaad=20 <min...@ho...> writes >Hi sir, >How to get XML partner not to throw an exception when including Swedish=20 >special characters (=C5,=C4,=D6). This is probably an encoding issue. Can you please send me a sample=20 document which demonstrates the problem? Richard Light --=20 Richard Light SGML/XML and Museum Information Consultancy ri...@li... |
|
From: minhal a. <min...@ho...> - 2006-03-15 09:02:10
|
Hi sir, How to get XML partner not to throw an exception when including Swedish special characters (Å,Ä,Ö). Best regards _________________________________________________________________ Don't just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/ |
|
From: <ben...@id...> - 2004-05-25 08:40:47
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Richard L. <ri...@li...> - 2004-02-23 16:22:34
|
I've just been looking through my XMLPartner code, to see what changes I have made myself. The only issue I could find relates to namespace resolution when the built-in prefix 'xml' is used (i.e. in xml:space or xml:lang). Since this is not declared in the document, it will cause a "namespace not declared" parsing error unless steps are taken to prevent this. What I did was, within TXpNode.ResolveNSPrefix, to add a constant: function TXpNode.ResolveNSPrefix(const sPrefix : DOMString) : DOMString; var oNode : TXpNode; oNode2 : TXpNode; const XmlNameSpaceUri : DOMString = 'http://www.w3.org/XML/1998/namespace'; begin ... and then add a second test: if sPrefix = '' then begin ... {!! rbl 11.12.2003: deal silently with 'xml' namespace: } end else if sPrefix = 'xml' then Result := XmlNameSpaceUri else begin { Lookup namespace } ... I'm sure there are other ways of dealing with this, but hope this suggestion will get the ball rolling (and start to move XmlPartner forward again ...). Richard -- Richard Light SGML/XML and Museum Information Consultancy ri...@li... |
|
From: regatta D. <one...@ya...> - 2004-02-20 16:59:35
|
I downloaded the XmlPartner application files, and when trying to compile/load the XmlPartner package for Delphi 6.0 (XMLPartner_PD60.dpk), I got the following error message in Delphi: Error in module: CONTAINS clause is incorrect. __________________________________ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools |