You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Isidro Vila Verde <jv...@serprest.pt> on 2004/05/11 23:50:46 UTC

cforms validation bug?

After some time unsuccessfully trying t put my cforms code working with
validation a I had to take the examples in cocoon/samples/blocks/forms/ and
step by step change the file form1.xml, until I see where was my mistake. 

And... for my surprise!!! I found if I comment the line <fd:value-count
exact="2"/> the validation won't work anymore.

Is this a bug? A feature? Or something wrong in my configuration?


    <fd:multivaluefield id="drinks">
      <fd:label>Indicate which 2 of the following drinks you'd like to
receive:</fd:label>
      <fd:datatype base="string"/>
      <fd:validation>
        <!--fd:value-count exact="2"/-->            <!-- commented line in
cocoon/samples/blocks/forms/form1.xml -->
      </fd:validation>
      <fd:selection-list>
        <fd:item value="Maes"/>
        <fd:item value="Jupiler"/>
        <fd:item value="Leffe"/>
        <fd:item value="Hoegaarden"/>
        <fd:item value="Coca Cola"/>
      </fd:selection-list>
    </fd:multivaluefield>
 
 
 
Isidro Vila Verde
email:jvv@serprest.pt
web: http://serprest.pt/
tel: 223743701
tel: 969103006 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org


RE: cforms validation bug?

Posted by Isidro Vila Verde <jv...@serprest.pt>.
-> -----Mensagem original-----
-> De: Joerg Heinicke [mailto:joerg.heinicke@gmx.de] 
-> Enviada: quinta-feira, 13 de Maio de 2004 19:52
-> Para: users@cocoon.apache.org
-> Assunto: Re: cforms validation bug?
-> 
-> On 13.05.2004 14:33, Isidro Vila Verde wrote:
-> 
-> > Not exactly. It means without a <fd:value-count> it break the 
-> > validation in the complete form.
-> > If I comment out the <fd:validation> node it won't work also.
-> 
-> Works for me. Tested it with cforms sample form1 and form1.flow.
-> 
-> Joerg

Tkank you Joerg.

It must be something with my enviroment. 

I am using cocoon-2.1.5, jetty-4.2.20RC0, j2sdk1.4.2_04, linux distribution
mandrake 7.2, Linux kernel 2.4.18

Isidro



> 
-> ---------------------------------------------------------------------
-> To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
-> For additional commands, e-mail: users-help@cocoon.apache.org
-> 
-> 
-> ---
-> Incoming mail is certified Virus Free.
-> Checked by AVG anti-virus system (http://www.grisoft.com).
-> Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
->  
-> 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org


Re: cforms validation bug?

Posted by Joerg Heinicke <jo...@gmx.de>.
On 13.05.2004 14:33, Isidro Vila Verde wrote:

> Not exactly. It means without a <fd:value-count> it break the validation in
> the complete form. 
> If I comment out the <fd:validation> node it won't work also.

Works for me. Tested it with cforms sample form1 and form1.flow.

Joerg

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org


RE: cforms validation bug?

Posted by Isidro Vila Verde <jv...@serprest.pt>.
 

-> -----Mensagem original-----
-> De: Joerg Heinicke [mailto:joerg.heinicke@gmx.de] 
-> Enviada: quinta-feira, 13 de Maio de 2004 00:42
-> Para: users@cocoon.apache.org
-> Assunto: Re: cforms validation bug?
-> 
-> On 12.05.2004 00:53, Isidro Vila Verde wrote:
-> 
-> >     <fd:multivaluefield id="drinks">
-> >       <fd:label>Indicate which 2 of the following drinks 
-> you'd like to 
-> > receive:</fd:label>
-> >       <fd:datatype base="string"/>
-> >       <fd:validation>
-> >         <!--fd:value-count exact="2"/-->    <!-- WON'T 
-> VALIDATE ANY FIELD
-> > -->
-> >       </fd:validation>
-> >       <fd:selection-list>
-> >         <fd:item value="Maes"/>
-> >         <fd:item value="Jupiler"/>
-> >         <fd:item value="Leffe"/>
-> >         <fd:item value="Hoegaarden"/>
-> >         <fd:item value="Coca Cola"/>
-> >       </fd:selection-list>
-> >     </fd:multivaluefield>
-> 
-> Shall this mean with an empty <fd:validation> you can break 
-> the validation in the complete form? Or is the error bound 
-> to some specific use case?

Not exactly. It means without a <fd:value-count> it break the validation in
the complete form. 
If I comment out the <fd:validation> node it won't work also.

      <!--fd:validation>
        <fd:value-count exact="2"/>
      </fd:validation-->

I experiment that problem with form1 example provide with coocon and with my
own code.

I have a small form definition where I need to include a dummy
multivaluefield widget, with a <fd:value-count>, just to validation work.
Here you have my form definition. 

<?xml version="1.0" encoding="iso-8859-1"?>
<fd:form xmlns:fd="http://apache.org/cocoon/forms/1.0#definition"
xmlns:i18n="http://apache.org/cocoon/i18n/2.1">
	<fd:widgets>
		<fd:multivaluefield id="dummy"> <!-- ONLY FOR VALIDATION
MECHANISM WORKS -->
			<fd:label>label</fd:label>
			<fd:datatype base="string"/>
			<fd:validation>
				<fd:value-count exact="2"/>
			</fd:validation>
			<fd:selection-list>
				<fd:item value="Maes"/>
			</fd:selection-list>
		</fd:multivaluefield>
		<fd:field id="email" required="true">
			<fd:help>Your email </fd:help>
			<fd:hint>Email that you had used to
register</fd:hint>
			<fd:label>Email</fd:label>
			<fd:datatype base="string"/>
			<fd:validation>
				<fd:email/>
			</fd:validation>
		</fd:field>
		<fd:field id="password" required="true">
			<fd:label>Password</fd:label>
			<fd:datatype base="string"/>
			<fd:validation>
				<fd:length min="6">
					<fd:failmessage>It must contain at
least 6 caracters</fd:failmessage>
				</fd:length>
			</fd:validation>
		</fd:field>
	</fd:widgets>
</fd:form>

With this it works. If I remove the dummy widget won't.


Probably I have a better work around for this, but I have lot of things to
learn in the coocoon framework and I don't understand all the concepts
completely. And probably it is something with my configuration (by the way I
use Jetty).

Isidro

Isidro Vila Verde
email:jvv@serprest.pt
web: http://serprest.pt/
tel: 223743701
tel: 969103006

-> 
-> Joerg
-> 
-> ---------------------------------------------------------------------
-> To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
-> For additional commands, e-mail: users-help@cocoon.apache.org
-> 
-> 
-> ---
-> Incoming mail is certified Virus Free.
-> Checked by AVG anti-virus system (http://www.grisoft.com).
-> Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
->  
-> 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org


Re: cforms validation bug?

Posted by Joerg Heinicke <jo...@gmx.de>.
On 12.05.2004 00:53, Isidro Vila Verde wrote:

>     <fd:multivaluefield id="drinks">
>       <fd:label>Indicate which 2 of the following drinks you'd like to
> receive:</fd:label>
>       <fd:datatype base="string"/>
>       <fd:validation>
>         <!--fd:value-count exact="2"/-->    <!-- WON'T VALIDATE ANY FIELD
> -->
>       </fd:validation>
>       <fd:selection-list>
>         <fd:item value="Maes"/>
>         <fd:item value="Jupiler"/>
>         <fd:item value="Leffe"/>
>         <fd:item value="Hoegaarden"/>
>         <fd:item value="Coca Cola"/>
>       </fd:selection-list>
>     </fd:multivaluefield>

Shall this mean with an empty <fd:validation> you can break the 
validation in the complete form? Or is the error bound to some specific 
use case?

Joerg

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org


RE: cforms validation bug?

Posted by Isidro Vila Verde <jv...@serprest.pt>.
Sorry. 

I don't explain very well. 

In that particular example there are a lot of fileds with validations, but
if I comment just this one, it won't validate any other field.

This is the complete file which isn't validate at all if I comment that
single line



<fd:form xmlns:fd="http://apache.org/cocoon/forms/1.0#definition"
         xmlns:i18n="http://apache.org/cocoon/i18n/2.1">
  
  <fd:widgets>
    <fd:field id="tab-state">
      <fd:datatype base="string"/>
    </fd:field>
  
    <fd:field id="email" required="true">
      <fd:datatype base="string"/>
      <!-- new-style validation, outside of the datatype -->
      <fd:validation>
        <fd:email/>
      </fd:validation>
      <fd:label>Enter an <b>email</b> address:</fd:label>
      <fd:help>
        An email address must be in <i>[name]@[domain].[tld]</i> format.
        <br/>
        And if you do not know what <b>email</b> address is, then well,
chances are
        that you do not have it. However, if you have access to the
Internet,
        you can easily get yourself one!
        <br/>
        Choose one of the following options:
        <ul>
          <li><a href='http://mail.yahoo.com/'>Yahoo! Mail</a></li>
          <li><a href='http://www.hotmail.com/'>Hotmail</a></li>
        </ul>
        <small>Anyway, the point of all this was to show a popup help with
mixed html content.</small>
      </fd:help>
    </fd:field>
  
    <fd:booleanfield id="somebool">
      <fd:label>Put me <em>on</em> or <em>off</em>.</fd:label>
    </fd:booleanfield>
  
    <fd:field id="fourchars">
      <fd:label>Select something that's 4 characters long:</fd:label>
      <fd:datatype base="string"/>
      <fd:validation>
        <fd:length exact='2*2'/>
      </fd:validation>
      <fd:selection-list src="forms/a-choices.xml"/>
    </fd:field>
  
    <fd:field id="account">
      <fd:label>Indicate the size of your bank account (in
m<sup>3</sup>):</fd:label>
      <fd:datatype base="long"/>
      <fd:selection-list>
        <fd:item value="1"/>
        <fd:item value="2"/>
        <fd:item value="3">
          <fd:label>three</fd:label>
        </fd:item>
        <fd:item value="4"/>
        <fd:item value="5"/>
      </fd:selection-list>
    </fd:field>
  
    <fd:field id="cowheight">
      <fd:label>Indicate your height (in cows):</fd:label>
      <fd:datatype base="long"/>
      <fd:selection-list>
        <fd:item value="1"/>
        <fd:item value="2"/>
        <fd:item value="3">
          <fd:label>three</fd:label>
        </fd:item>
        <fd:item value="4"/>
        <fd:item value="5"/>
      </fd:selection-list>
    </fd:field>
  
    <fd:field id="number1" required="true">
      <fd:label>Please enter a number<br/>
      <small>(will automatically set a correct value below if
needed)</small>:</fd:label>
      <fd:datatype base="long"/>
      <fd:on-value-changed>
        <javascript>
          java.lang.System.err.println("Was here!");
          var newValue = event.source.value;
          if (newValue != null) {
            var number2 = event.source.parent.getWidget("number2");
            if (number2.value == null) {
              number2.setValue(new java.lang.Long(newValue.intValue() + 1));
            }
          }
        </javascript>
      </fd:on-value-changed>
    </fd:field>
  
    <fd:field id="number2" required="true">
      <fd:label>Enter another number, larger than the other
number:</fd:label>
      <fd:datatype base="long"/>
      <fd:validation>
        <fd:range min="number1 + 1">
          <fd:failmessage>This number should be larger than the first
number.</fd:failmessage>
        </fd:range>
      </fd:validation>
    </fd:field>
  
    <fd:multivaluefield id="drinks">
      <fd:label>Indicate which 2 of the following drinks you'd like to
receive:</fd:label>
      <fd:datatype base="string"/>
      <fd:validation>
        <!--fd:value-count exact="2"/-->    <!-- WON'T VALIDATE ANY FIELD
-->
      </fd:validation>
      <fd:selection-list>
        <fd:item value="Maes"/>
        <fd:item value="Jupiler"/>
        <fd:item value="Leffe"/>
        <fd:item value="Hoegaarden"/>
        <fd:item value="Coca Cola"/>
      </fd:selection-list>
    </fd:multivaluefield>
  
    <fd:aggregatefield id="visa" required="true">
      <fd:label>Enter your (16-digit) visa number (without spaces)
        <br/>Your credit card will be billed.
        <br/><small>Valid test number is: 4111111111111111</small>
      </fd:label>
      <fd:help>Use a fake number if <a
href="http://cocoon.apache.org">Cocoon</a> is not running on your local
computer</fd:help>
      <fd:datatype base="string"/>
      <fd:split pattern="([0-9]{4})([0-9]{4})([0-9]{4})([0-9]{4})">
        <fd:map group="1" field="part1"/>
        <fd:map group="2" field="part2"/>
        <fd:map group="3" field="part3"/>
        <fd:map group="4" field="part4"/>
        <fd:failmessage>Not a valid 16-digit visa number.</fd:failmessage>
      </fd:split>
      <fd:combine expression='Concat(part1,part2,part3,part4)'/>
      <fd:widgets>
        <fd:field id="part1">
          <fd:datatype base="string"/>
        </fd:field>
        <fd:field id="part2">
          <fd:datatype base="string"/>
        </fd:field>
        <fd:field id="part3">
          <fd:datatype base="string"/>
        </fd:field>
        <fd:field id="part4">
          <fd:datatype base="string"/>
        </fd:field>
      </fd:widgets>
      <fd:validation>
        <fd:mod10>
          <fd:failmessage>Invalid credit card number.</fd:failmessage>
        </fd:mod10>
      </fd:validation>
    </fd:aggregatefield>
  
    <fd:field id="ipaddress" required="true">
      <fd:label>Please enter your IP address</fd:label>
      <fd:datatype base="string"/>
      <fd:validation>
        <fd:regexp
pattern="^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01
]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])$">
          <fd:failmessage>Invalid IP address.</fd:failmessage>
        </fd:regexp>
      </fd:validation>
    </fd:field>
  
    <fd:field id="birthdate" required="true">
      <fd:label>Your birthdate (dd/MM/yyyy):</fd:label>
      <fd:datatype base="date">
        <fd:convertor>
          <fd:patterns>
            <fd:pattern>dd/MM/yyyy</fd:pattern>
            <!-- The above pattern is a non-locale-specific pattern. You can
            also add locale-specific patterns by adding more fd:pattern
elements
            here, with a locale attribute on them. -->
          </fd:patterns>
        </fd:convertor>
      </fd:datatype>
      <fd:validation>
        <fd:range min="Date(1850, 1, 1)" max="Date(2150, 1, 1)">
          <fd:failmessage>Dead and not born yet should not bother filling
this form</fd:failmessage>
        </fd:range>
      </fd:validation>
    </fd:field>
  
    <fd:field id="altbirthdate" required="true">
      <fd:label>Select a date on which you'd rather had been
born:</fd:label>
      <fd:datatype base="date">
        <fd:convertor variant="date" style="full"/>
      </fd:datatype>
      <fd:selection-list>
        <!-- The convertor element here is used to specify how the values
             in the value attributes of the fd:item elements should be
             interpreted. -->
        <fd:convertor type="formatting">
          <fd:patterns>
            <fd:pattern>yyyyMMdd</fd:pattern>
          </fd:patterns>
        </fd:convertor>
        <fd:item value="13020711"/>
        <fd:item value="19120623"/>
        <fd:item value="19690721"/>
        <fd:item value="19700506"/>
        <fd:item value="19781014"/>
        <fd:item value="20010911"/>
      </fd:selection-list>
    </fd:field>
  
    <fd:field id="dieselprice" required="true">
      <fd:label>Price for a liter diesel:</fd:label>
      <fd:datatype base="decimal">
        <fd:convertor variant="number">
          <fd:patterns>
            <fd:pattern>#.00</fd:pattern>
          </fd:patterns>
        </fd:convertor>
      </fd:datatype>
    </fd:field>
  
    <fd:repeater id="contacts">
      <fd:validation>
        <!-- This demonstrates validating a repeater: we check here if all
contacts are distinct.
           A repeater cannot itself display a validation error, and
therefore sets a validation
           error on a field in the offenting row. -->
        <fd:javascript>
          var list = new java.util.ArrayList();
          var success = true;
          // Iterate on all rows
          for (var i = 0; i &lt; widget.size; i++) {
            // Get the row
            var row = widget.getRow(i);
            // Compute a key combining the first and last name
            var key = row.getWidget("firstname").value + "/" +
row.getWidget("lastname").value;
            if (list.contains(key)) {
              // already in the list
              row.getWidget("firstname").setValidationError(new
Packages.org.apache.cocoon.forms.validation.ValidationError("Duplicate
contact name", false));
              success = false;
              break; // no need to continue
            }
            // Add the current row's key to the list
            list.add(key);
          }
          
          // Must return true/false
          return success;
          
        </fd:javascript>
      </fd:validation>
      <fd:widgets>
        <fd:field id="firstname">
          <fd:label>Firstname</fd:label>
          <fd:datatype base="string"/>
        </fd:field>
        <fd:field id="lastname">
          <fd:label>Lastname</fd:label>
          <fd:datatype base="string"/>
        </fd:field>
        <fd:field id="phone">
          <fd:label>Phone</fd:label>
          <fd:datatype base="string"/>
        </fd:field>
        <fd:field id="email">
          <fd:label>Email</fd:label>
          <fd:datatype base="string"/>
          <fd:validation>
            <fd:email/>
          </fd:validation>
        </fd:field>
        <fd:field id="birthdate">
          <fd:label>Birthdate (dd/MM/yyyy):</fd:label>
          <fd:datatype base="date">
            <fd:convertor>
              <fd:patterns>
                <fd:pattern>dd/MM/yyyy</fd:pattern>
              </fd:patterns>
            </fd:convertor>
          </fd:datatype>
        </fd:field>
        <fd:booleanfield id="select">
          <fd:label>Select</fd:label>
        </fd:booleanfield>
      </fd:widgets>
    </fd:repeater>
  
    <fd:repeater-action id="addcontact" action-command="add-row"
repeater="contacts">
      <fd:label>Add contact</fd:label>
    </fd:repeater-action>
  
    <fd:repeater-action id="removecontacts" action-command="delete-rows"
repeater="contacts" select="select">
      <fd:label>Remove selected contacts</fd:label>
    </fd:repeater-action>
  </fd:widgets>

</fd:form>




Isidro Vila Verde
email:jvv@serprest.pt
web: http://serprest.pt/
tel: 223743701
tel: 969103006

-> -----Mensagem original-----
-> De: JD Daniels [mailto:jd@datatrio.com] 
-> Enviada: segunda-feira, 12 de Abril de 2004 00:41
-> Para: users@cocoon.apache.org
-> Assunto: RE: cforms validation bug?
-> 
-> It looks to me like exactly correct behavior.. you are 
-> commenting out the validation rule, why would you expect it 
-> to validate after doing so?
-> 
-> JD
-> 
-> -----Original Message-----
-> From: Isidro Vila Verde [mailto:jvv@serprest.pt]
-> Sent: May 11, 2004 1:51 PM
-> To: users@cocoon.apache.org
-> Subject: cforms validation bug?
-> 
-> 
-> After some time unsuccessfully trying t put my cforms code 
-> working with validation a I had to take the examples in 
-> cocoon/samples/blocks/forms/ and step by step change the 
-> file form1.xml, until I see where was my mistake.
-> 
-> And... for my surprise!!! I found if I comment the line 
-> <fd:value-count exact="2"/> the validation won't work anymore.
-> 
-> Is this a bug? A feature? Or something wrong in my configuration?
-> 
-> 
->     <fd:multivaluefield id="drinks">
->       <fd:label>Indicate which 2 of the following drinks 
-> you'd like to receive:</fd:label>
->       <fd:datatype base="string"/>
->       <fd:validation>
->         <!--fd:value-count exact="2"/-->            <!-- 
-> commented line in
-> cocoon/samples/blocks/forms/form1.xml -->
->       </fd:validation>
->       <fd:selection-list>
->         <fd:item value="Maes"/>
->         <fd:item value="Jupiler"/>
->         <fd:item value="Leffe"/>
->         <fd:item value="Hoegaarden"/>
->         <fd:item value="Coca Cola"/>
->       </fd:selection-list>
->     </fd:multivaluefield>
-> 
-> 
-> 
-> Isidro Vila Verde
-> email:jvv@serprest.pt
-> web: http://serprest.pt/
-> tel: 223743701
-> tel: 969103006
-> 
-> ---
-> Outgoing mail is certified Virus Free.
-> Checked by AVG anti-virus system (http://www.grisoft.com).
-> Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
-> 
-> 
-> 
-> ---------------------------------------------------------------------
-> To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
-> For additional commands, e-mail: users-help@cocoon.apache.org
-> 
-> 
-> 
-> ---------------------------------------------------------------------
-> To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
-> For additional commands, e-mail: users-help@cocoon.apache.org
-> 
-> 
-> ---
-> Incoming mail is certified Virus Free.
-> Checked by AVG anti-virus system (http://www.grisoft.com).
-> Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
->  
-> 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004
 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org


RE: cforms validation bug?

Posted by JD Daniels <jd...@datatrio.com>.
It looks to me like exactly correct behavior.. you are commenting out the
validation rule, why would you expect it to validate after doing so?

JD

-----Original Message-----
From: Isidro Vila Verde [mailto:jvv@serprest.pt]
Sent: May 11, 2004 1:51 PM
To: users@cocoon.apache.org
Subject: cforms validation bug?


After some time unsuccessfully trying t put my cforms code working with
validation a I had to take the examples in cocoon/samples/blocks/forms/ and
step by step change the file form1.xml, until I see where was my mistake.

And... for my surprise!!! I found if I comment the line <fd:value-count
exact="2"/> the validation won't work anymore.

Is this a bug? A feature? Or something wrong in my configuration?


    <fd:multivaluefield id="drinks">
      <fd:label>Indicate which 2 of the following drinks you'd like to
receive:</fd:label>
      <fd:datatype base="string"/>
      <fd:validation>
        <!--fd:value-count exact="2"/-->            <!-- commented line in
cocoon/samples/blocks/forms/form1.xml -->
      </fd:validation>
      <fd:selection-list>
        <fd:item value="Maes"/>
        <fd:item value="Jupiler"/>
        <fd:item value="Leffe"/>
        <fd:item value="Hoegaarden"/>
        <fd:item value="Coca Cola"/>
      </fd:selection-list>
    </fd:multivaluefield>



Isidro Vila Verde
email:jvv@serprest.pt
web: http://serprest.pt/
tel: 223743701
tel: 969103006

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.672 / Virus Database: 434 - Release Date: 28-04-2004



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org