Text nodes and element nodes queryHi all,
The code below gets me a list of all the nodes within the node object
called xml_tags_root.
NodeList nl = xml_tags_root.getChildNodes();
The length of nodelist I get is double the number of actual elements!
This is because after every element node there is text node which is (I
think) the whitespace in the XML document.
Is there a way to get only the element nodes?
Please advice.
thanks,
ASD
Hi,
Look at getElementsByTagName(....)
Regards,
Arnaud
"asd" <arvindsd@yahoo.com> a �crit dans le message news:
1116833345.887839.95270@g47g2000cwa.googlegroups.com...
&...
how to Update/insert an xml element's text----> (<element> text</element>)hello friends,
how can we update or insert into an xml Element.
For example :
-------------------
<?xml version="1.0">
<request>
<main>
<name>ISO8856</name>
</main>
</request>
here when we run a java class file it should replace "ISO8856"with
"ISO9001". Any Assistance or example.
thanQ in adv.
Ajay
HANM wrote:
> <?xml version="1.0">
> <request>
> <main>
> <name>ISO8856</name>
> </main>
> </request>
>
> here when we run a java class file it should replace "ISO8856"with
> "ISO9001". Any Assistance or example.
If you use the W3C DOM Level 3 Core as implemented in Java 1.5 and later
then you can select the 'name' element and set its textContent e.g.
Element name = (Element)xmlDocument.getElementsByTagName("name").item(0);
name.setTextContent("ISO09001");
If you use DOM Level 2 Core (as implemente in Java 1.4) then you need to
access the firstChild and set its nodeValue
Element name = (Element)xmlDocument.getElementsByTagName("name").item(0);
name.getFirstChild().setNodeValue("ISO09001");
--
Martin Honnen
http://JavaScript.FAQTs.com/
Many good tutorials/articles exist on the web (and some bad ones, alas).
I usually point people to http://www.ibm.com/xml
--
Joe K...
text-textWondering how what I input to my UTF-8 terminal gets passed along
through my patched [1] trn ...
Cyrillic:
А Б В Г Д Е Ж З И Й К Л М Н О П
а б в г д е ж з и й к л м н о п
IPA:
ᴀ ᴁ ᴂ ᴃ ᴄ ᴅ ᴆ ᴇ ᴈ ᴉ ᴊ ᴋ ᴌ ᴍ ᴎ ᴏ
ɀ Ɂ ɂ Ƀ Ʉ Ʌ Ɇ ɇ Ɉ ɉ Ɋ ɋ Ɍ ɍ Ɏ ɏ
[1] https://groups.google.com/d/msg/comp.sys.raspberry-pi/7Z37Hdrm0DM/6aqD-reXFzAJ
...
text + textWhat is "text + text" supposed to do right now? It doesn't seem very
useful to me. What about making "text + text" as an equivalent for "text
|| text"? Most strongly-typed programming languages do this. And MS SQL
Server too, I think (CMIIW).
--
dave
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
Am Freitag, 8. Oktober 2004 12:57 schrieb David Garamond:
> What is "text + text" supposed to do right now?
Nothing.
> What about making "text + text" as an equivalent for "text
> || text"? Most strongly-typed programming languages do this. And MS SQL
> Server too, I think (CMIIW).
What would this gain except for bloat? It's not like SQL is utterly
compatible with any programming language; users will still have to learn all
the operators anyway.
--
Peter Eisentraut
http://developer.postgresql.org/~petere/
---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match
Peter Eisentraut wrote:
>>What is "text + text" supposed to do right now?
>
> Nothing.
Then are these bugs? (7.4.5 and 8.0.0beta1 give same results). Frankly,
the current behaviour is quite strange to me.
------------------
=...
XML DOM: XML/XHTML inside a text nodeIn my program, I get input from the user and insert it into an XHTML
document. Sometimes, this input will contain XHTML, but since I'm
inserting it as a text node, xml.dom.minidom escapes the angle brackets
('<' becomes '<', '>' becomes '>'). I want to be able to
override this behavior cleanly. I know I could pipe the input through
a SAX parser and create nodes to insert into the tree, but that seems
kind of messy. Is there a better way?
Thanks.
On Thu, 2 Nov 2005 noahlt@gmail.com wrote:
> In my program, I get input from the us...
Query xml with text()Hi,
i've some problems when i use text()
on page
http://orario.trenitalia.com/b2c/TimeTable?stazin=fewfw&stazout=roma&datag=04&datam=07&dataa=2008&timsh=15&timsm=09&x=20&y=7&lang=it&nreq=5&channel=tcom
if i do //B/text() it returns to me "Stazione di partenza: nessuna stazione
corrisponde ai criteri di ricerca impostati."
but if i try to do //B[text()="Stazione di partenza: nessuna stazione
corrisponde ai criteri di ricerca impostati."] it doesn't found any element.
i'm using the library javaXpCom to do the query on the webpage.
What's wrong on this query?
Thanks and sorry for my bad english
Ciccio Pasticcio wrote:
> Hi,
>
> i've some problems when i use text()
>
> on page
> http://orario.trenitalia.com/b2c/TimeTable?stazin=fewfw&stazout=roma&datag=04&datam=07&dataa=2008&timsh=15&timsm=09&x=20&y=7&lang=it&nreq=5&channel=tcom
> if i do //B/text() it returns to me "Stazione di partenza: nessuna stazione
> corrisponde ai criteri di ricerca impostati."
> but if i try to do //B[text()="Stazione di partenza: nessuna stazione
> corrisponde ai criteri di ricerca impostati."] it doesn't found any element.
Maybe it is an issue with leading and/or trailing white space. The
source of that page contains
<b>Stazione di partenza: nessuna stazione corrisponde ai criteri di
ricerca impos...
XSLT Select nodes without text-node children whose names starts with specifix textQuestion on XSL expression
Got this XML:
<Body>
<Page>
<Line no="9" detail="true">
<onefield>onefieldstext</onefield>
<twofield>twofieldstext</twofield>
</Line>
<Line no="10" detail="true">
<onefield>onefieldstext</onefield>
<fgman9>fgmanfieldstext</fgman9>
<twofield>twofieldstext</twofield>
</Line>
<Line no="11" detail="true">
<onefield>onefieldstext</onefield>
<twofield>twofieldstext</twofield>
</Line>
<Line no="12" detail="true">
<onefield>onefieldstext</onefield>
<twofield>twofieldstext</twofield>
</Line>
<Line no="13" detail="true">
<onefield>onefieldstext</onefield>
<fgman5>fgmanfieldstext</fgman5>
<twofield>twofieldstext</twofield>
</Line>
<Line no="14" detail="true">
<onefield>onefieldstext</onefield>
<twofield>twofieldstext</twofield>
</Line>
</Page>
</Body>
I would select the <Line/> nodes without text-node children whose names
is starting with "fgman" - in this example it is all <Line/> _except_
<fgman9/> and <fgman5/> in <Line/> with @no of 10 and 13.
I know that this works:
&...
xslt help needed with element nodes embedded in text nodeI'm but an amateur with xsl stylesheets. I need some help to the output
of text nodes with embedded element nodes like the following:
<uf><ns>This</ns> example</uf>
<uf>Another <ns>This</ns> example</uf>
<uf>Another <ns>This</ns></uf>
I need to output the ns strings in italics.
<xsl:apply-templates select="./uf" />
<xsl:template match="ns">
<i><xsl:value-of select="." /></i>
</xsl:template>
As long as the xml file is exported in lines as above the output is ok:
"This example". (In this email I don't indicate the italicised part string.)
But lately the document server hosting the application that contains xml
files of the sort above changed the export of xml files. Now there are
line breaks at each new element boundary:
<uf>
<ns>This</>
example
</uf>
With my xsl code I get an additional space at the beginning and the end
of the phrase: " This example ". I tried to get rid of them with
<xsl:template match="text()">
<xsl:value-of select="normalize-space()" />
</xsl:template>
But this results in "Thisexample".
What is to be done? (There is no option to substitute the mandatory
spaces with  ).
Volker
I tried <xsl:strip-space elements="uf" />.
It doesn't help either.
Volker
Volker Le...
file command: "XML document text" vs "XML document text"I've just used the file command on four files of RDF-XML with the
following output:
augtfidf.rdf: XML document text
kyoto.rdf: XML document text
stuff.rdf: XML document text
tfidf.rdf: XML document text
What does it mean that one of them has an extra space between "XML"
and "document"?
--
The kid's a hot prospect. He's got a good head for merchandising, an
agent who can take you downtown and one of the best urine samples I've
seen in a long time. [Dead Kennedys t-shirt]
On 16.10.2012 16:06, Adam Funk wrote:
> I've just used the file command on four files of RDF-XML with the
> following output:
>
> augtfidf.rdf: XML document text
> kyoto.rdf: XML document text
> stuff.rdf: XML document text
> tfidf.rdf: XML document text
>
> What does it mean that one of them has an extra space between "XML"
> and "document"?
Hard to tell without further information.
What does file *.rdf | od -c show you?
Janis
Janis Papanagnou wrote:
> On 16.10.2012 16:06, Adam Funk wrote:
>> I've just used the file command on four files of RDF-XML with the
>> following output:
>>
>> augtfidf.rdf: XML document text
>> kyoto.rdf: XML document text
>> stuff.rdf: XML document text
>> tfidf.rdf: XML document text
>>
>> What does it mean that one ...
text node has text but won't renderThis renders in Firefox perfectly well but the text in the red box remains
invisible. The program is a subset of a larger and doesn't do much. but
even after cutting out all the unneccessary stuf, I still can't get it to
work!!
Cheers,
Greg
===================
<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:svg="http://www.w3.org/2000/svg" >
<xhtml:head>
<xhtml:title>
Intermingled XHTML and SVG
</xhtml:title>
<xhtml:script type="text/javascript" language="JavaScript"><![CDATA[
function gogo(evt){
var targetObj = evt.target; //The object that received the event
var targetDoc = targetObj.ownerDocument; //Owner document var wg =
document.getElementById("SVGroot"); var lg =
document.getElementById("labelz"); //label
labelBox= targetDoc.createElementNS("http://www.w3.org/2000/svg",
"svg:rect"); labelBox.setAttributeNS(null, "id", "label1");
labelBox.setAttributeNS(null, "fill", "red");
labelBox.setAttributeNS(null, "fill-opacity", 1);
labelBox.setAttributeNS(null, "x", 700); labelBox.setAttributeNS(null,
"y", 400); labelBox.setAttributeNS(null, "width", 200);
labelBox.setAttributeNS(null, "height", 20);
labelBox.setAttributeNS(null, "visibility", "visible");
lg.appendC...
extracting text from an XML nodeHi,
suppose i get the simple xml sample:
<foo>
1
<bar>2</bar>
3
</foo>
Now suppose i want to extract all the text of only the 'foo' node, ie
expected result is '1 3'.
I tried both
<xsl:template match="foo">
<xsl:value-of select="text()" />
</xsl:template>
and
<xsl:template match="foo">
<xsl:value-of select="." />
</xsl:template>
but the former lead to '1' and the latter to '1 2 3' (using xsltproc &
firefox).
What did i missed ?
thanks,
-Nicolas
nicolas.edel@gmail.com wrote:
> Now suppose i want to extract all the text of only the 'foo' node
That isn't a built-in concept; you have to recast it as "all the text
nodes which are immediate children of the 'foo' node". (The built-in
text value of an element, as you discovered, is the value of all text
contained in it, directly or indirectly). Note too that the whitespace
(line breaks and indentation) will be part of the the text nodes unless
you explicitly strip that away.
<xsl:value-of select="text()" />
didn't work because value-of returns the contents of only the first
matching node. This is one case where xsl:for-each is appropriate, to
explicitly iterate through the text children.
--
Joe Kesselman / Beware the fury of a patient man. -- John Dryden
On Nov 30, 12:34 am, Joseph Kesselman <kesh...
Surrounding text with textI was wondering if it was possible to surround a text body with text
like so:
+--------------+
|ABCDEFGHIJKLM |
|H N|
|A Main Body O|
|L Text goes P|
|B here Q|
|-=+_ZYXWVUTSR |
| |
| |
| |
| |
+--------------+
This seems far-fetched, but just curious. I suppose that I could just
move stuff around by hand in the GIMP later on, but there's probably a
{better,more {extensible,clean}} way of doing it from (La)TeX.
-FreeSmith
ptjm@interlog.com (Patrick TJ McPhee) wrote in message news:<bffbhe$per$1@news.eusc.inter.net>...
> Peter Flynn had an example like that, which he either posted here or
> posted a link here. It was something to do with a certificate -- try
> searching for his name and that word in google.
>
> It wouldn't be hard to do with metapost. I have a macro called `pathalong'
> which puts text along an arbitrary path.
Well, it's been a while, but I finally finished it. It's a little job
I was doing for an upcoming wedding. At any rate, I used pstricks to
make the text go along a path, along with a couple of hacks for sizing
(from graphicx) and kerning along the line (from soul). Here's the
code (don't laugh):
CAUTION:THIS CODE MAY MAKE YOU WRETCH
---SNIP---
\documentclass{article}
\usepackage{graphicx}
\usepackage{pstricks,pst-text,nopageno}
\usepackage[width=8.5in]{geometry}
\usepackage{soul}
\begin{document}
\thispagestyle{empty}
\set...
Getting kind of abstract text snippets from text nodesHi everybody,
I am about implementing a little search engine that searches a phrase
over xml text nodes. I got
that all working fine but what I want as the results is not the
complete text of the textnode,
I would like to make an abstract like result list (such output that
you get with google searches.
For eg
.... I am the <b>substring</b> from a complete text node ...
where "substring" is the search term.
The problem is simple (I think): I want to extract all the text parts
of the complete text node,
where search searchterm is highlighted, surrounded by the text like
30
characters.
I found an intersting post "cut down text" which is almost that what
I
am looking for, but there the
text is just trimmed by x characters.
Is anybody here, that has an "elegant" way to solve that or some
hints
that get me to the solution? I am not able to use regex (would be
nice
though)
My parser is Sablotron so I am restricted to the functions that I
get.
(1.0).
Any help is greatly appreciated.
regards,
Andreas W Wylach
Think about dividing the text into three parts: before your target, the
target itself, and after the target. Process each appropriately. If you
want to report multiple instances within the same block of text, look at
the standard examples of recursive text processing.
--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry
"Andreas W. Wylach" <aw@ioc...
Text from required text box to read-only text boxHello,
I am fairly new to JavaScript and its use in Acrobat Professional.
My situation is this:
I have a form with a text box field which is required for the user to
enter his/her name. I would like the required text box to display the
name in all caps. I also need the user's name to appear in a read-only
text box later in the form, which I would like to have the first letter
of the user's first, middle initial, and last names to be capitalized.
I would also like to have all required fields on the form highlighted
in yellow, but the highlighting not printed. Lastly, I would like the...
Updating A Text String In A Text Field With An Update QueryIf I have the following string in a text field of a table:
"This is a test"
can I create an update query that will change, say, the string "is" to
"xyz" in the two locations where it occurs or would this require VBA?
Thanks,
Sheldon Potolsky
Use an Update query.
Something like this:
UPDATE Table1
SET [F1] = Replace([F1], "is", "xyz")
WHERE [F1] Like "*is*";
--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps ...
PagesI have a titel-textfield over a pic (headline) , text is black,
background for text transparent.
A second textfield should overlapp the first textline.....
When i arrange the second field with the same settings like the first,
the first text disappear...
How can i do, that the second text overpapps the first, all over the
pic.
Any help appreciated! Thanks for replies! I am german and hope that
the engish speaking people understand my problem! Soory!
Gerd
In article
<611db9e2-b085-4fe5-907a-ca714b0c32dd@m74g2000hsh.googlegroups.com>,
hurlebaus <gerd.schenk@freenet.de> wrote:...
text 2 textI'm rather new to ustation and am having trouble finding replacements for
all of my Acad lisp routines. One that I'd like to find changes a selected
text string to read like the second selected text string. I realize this
can all be done in the text editor but it's not all that quick. Does anyone
know of a macro or mdl which can handle this task? Thanks in
advance.---Calvin
I don't know of any application that will do what you describe, but have you
looked at Edit > Find/Replace text?
You may also find Bentley's discussion groups of assistance. Over there you
can meet other users of Bentley products, exchange ideas, and discuss a wide
range of technical subjects. These groups are an excellent technical
resource for all users of Bentley products and services. Hope to see you
there!
For more information take a peek at this page:
http://selectservices.bentley.com/discussion/index.htm
--
Best Regards,
Inga Morozoff [Bentley]
www.askinga.com
"jgonzales24" <jgonzales24@cox.net> wrote in message
news:xcLMb.13975$zs4.2376@fed1read01...
> I'm rather new to ustation and am having trouble finding replacements for
> all of my Acad lisp routines. One that I'd like to find changes a
selected
> text string to read like the second selected text string. I realize this
> can all be done in the text editor but it's not all that quick. Does
anyone
> know of a macro or mdl whi...
SQL Monitor not showing batch text or query textWe're running Sybase ASE 12.5.0.3 on a Win NT server. I am trying to
capture the SQL text run from an application.
I can see the process in the "Process Current SQL Statement Monitor",
but nothing shows up in the Batch Text, Stored Proc Text, or Query Plan
Text windows when I select the process. Any ideas why this isn't
working?
I have enabled "SQL batch capture" and "enable monitoring", and "max
SQL text monitored" is set to 4096. The monitoring service is started,
of course.
Unfortunately, we don't have a Sybase DBAdmin to handle this, and my
familiarity is with administering Sybase ASE seems to not be up to the
task.
We really need to find a way to capture the SQL queries run by this
application in order to get the data in a non-Crystal Reports format.
All help is appreciated.
Install the monitoring tables, and query monSysSQLText. See
www.sypron.nl/mda for instructions.
HTH,
Rob
-------------------------------------------------------------
Rob Verschoor
Certified Sybase Professional DBA for ASE 12.5/12.0/11.5/11.0
and Replication Server 12.5 / TeamSybase
Author of Sybase books (order online at www.sypron.nl/shop):
"Tips, Tricks & Recipes for Sybase ASE"
"The Complete Sybase Replication Server Quick Reference Guide"
"The Complete Sybase ASE Quick Reference Guide"
mailto:rob@YOUR.SPAM.sypron.nl.NOT.FOR.ME
http://www.sypron.nl
Sypron B.V....
How can I set the caption text of picture controls inside an array or how can I choose which array element is assigned using the array elements caption text property.I have 8 picture controls inside an array and I would like to set the caption text of these controls.
I have used the property node of the array and used the array elements property caption text to set the text.
The problem is however that I set the same text to all the picture controls inside the array.
My question is how to set caption text of specific elements (Picture control) that I have so far only been able to access using the array elements caption text property.
Some more help
1 You could use the caption of the array and...
editor for editing xml text nodesWe have xml documents which contain text imbedded as text content in
some xml structures.
These documents need to be translated by human translators from English
into, for example, Chinese.
We would like the translator to use an editor which shows him only the
text content of the xml document, or gives him only editing access to
the text content.
The translator should be unable to touch or modify the xml tags, so that
it is guaranteed that the xml-tags are unchanged when the translator
returns the translated document.
The translator simply replaces all English text accessible to him into
Chinese text.
Does anyone know an xml editing tool which has this feature, of allowing
only modification to the text node content?
Alois Zreindl wrote:
> We have xml documents which contain text imbedded as text content in
> some xml structures.
>
> These documents need to be translated by human translators from English
> into, for example, Chinese.
>
> We would like the translator to use an editor which shows him only the
> text content of the xml document, or gives him only editing access to
> the text content.
I am working on exactly this right now. It leaves the elements in
element content inviolable, but allows element markup in mixed content
(the only thing a translator should be touching).
Please contact me by email to discuss this further.
> The translator should be unable to touch or modify the xml tags, so that
> it is guara...
XML Schema for Node with attribute and textI've tried to find how to write a schema for this type of node
everywhere.
<Param name="FirstParam">ABCD</Param>
How do i arrange a complex type that contains an attribute and a text.
This :
<xs:complexType name="Param">
<xs:attribute name="name" />
</xs:complexType>
Result as :
<invalid char="13" code="cvc-complex-type.1.2" line="3086"
resource="file:///C:/WINNT/Profiles/svaillan/Desktop/XML
Schema/test.xml">element Param must be empty but is not</invalid>
This :
<xs:complexType name="Param">
<xs:all>
<xs:element name="text" type="xs:string" />
</xs:all>
<xs:attribute name="name" />
</xs:complexType>
Result as :
<invalid char="13" code="cvc-complex-type.1.2.3" line="3086"
resource="file:///C:/WINNT/Profiles/svaillan/Desktop/XML
Schema/test.xml">text not allowed: |ABCD|</invalid>
I just dont know where to add the unnamed <xs:element ... > tag.
Anyone can help me figure this out?
Thx
In article <de3c2ad2.0311281339.e74b69b@posting.google.com>,
Simon Vaillancourt <svaillancourt@mediagrif.com> wrote:
% I've tried to find how to write a schema for this type of node
% everywhere.
%
% <Param name="FirstParam">ABCD</Param>
%
% How do...
Why treat text nodes as nodes?One of the things I find most unnatural about most XML APIs is that
they try to abstract both elements and text into some kind of "node"
object when they have virtually nothing in common. The reason these
APIs do it is to make it possible for both text and elements to be
children of elements.
But there is another way.
The XPath/XQuery data model does not allow two consecutive text nodes.
As far as I can tell, most XML processing software automatically merges
consecutive text nodes. This means that the number of text segments
directly under an element is bound by the number of sub-elements plus 1
(PIs and comments may be treated as "pseudo-elements" for this
purpose). As a result, it is always possible to associate each text
segment with the element immediately preceding it within the parent and
associate the first text element with the parent itself.
No more text nodes.
The only API I know that uses this trick is the ElementTree API for
Python by Fredrik Lundh (http://effbot.org/zone/element-index.htm).
Each Element object has a text and tail property for the text
immediately inside the element and text following it within its parent
element. Elements always have a tag, attributes and and zero or more
children - which are always other elements. No mixed types. The text
and tail attributes are always strings. This model should be very
convenient for statically-typed languages like Java or C++. I find it
ironic that this idea is probably used only in Pyt...
SAX parsing problem, when element contains text like "[text]"Hello.
I try to parse some XML results of PubMed (the largest biomedical
article database).
The document contains elements like this: <articletitle>[Virus and RNA
silencing]</articletitle>
Now my problem is that the characters function of my SAX handler is
called twice for "[Virus and RNA silencing]".
The first time I get "[Virus and RNA silencing" and the second time
"]".
I am not very experienced regarding XML and XML processing. Why does
this happen? Why not one call for "[Virus and RNA silencing]"? And is
there a way to set a property for SAX to behave that (only one call)
way?
Best regards,
Kai
Kai Schlamp wrote:
> I try to parse some XML results of PubMed (the largest biomedical
> article database).
> The document contains elements like this: <articletitle>[Virus and RNA
> silencing]</articletitle>
> Now my problem is that the characters function of my SAX handler is
> called twice for "[Virus and RNA silencing]".
> The first time I get "[Virus and RNA silencing" and the second time
> "]".
> I am not very experienced regarding XML and XML processing. Why does
> this happen? Why not one call for "[Virus and RNA silencing]"? And is
> there a way to set a property for SAX to behave that (only one call)
> way?
This is expected behavior of a SAX parser.
You characters method should accumulate content and
endElement do the final proc...
xsl to retrieve text in table elements in xml
Hi,
I have an xml document which is as below:
<?xml version="1.0" encoding="UTF-8"?>
<fragment name="htmlPart">
<value><table>
<tr><td><b>Feature</b></td><td><b
>Benefit</b></td></tr>
<tr><td>some sample text runs here</td><td>some
sample text runs here too</td></tr>
<tr><td>some sample text runs here</td><td>some
sample text runs here too</td></tr>
<tr><td>Now I am here </td><td>Now what am I
going to do here</td></tr>
<tr><td>some stuff lies here too</td><td>Please
give suggestions</td></tr></table>
</value>
</fragment>
3 "fragment name ="htmlpart" elements are present in this document..
For each fragment name ="htmlpart", the xsl I need should create an
element "<fragment name="tr"> and map the tr values from the text above
in its "value" element.
The same needs to be done for "td".
Please provide an answer to this.
Thanks,
figo
*** Sent via Develo...