On page
https://lists.sourceforge.net/lists/listinfo/chiba-users
there is NO unsubscribe option.
Please remove me from this Mailing-List
Matt Adams
mattad-at-email.com
----- Original Message -----
From: chi...@li...
Date: Sat, 31 Jul 2004 20:15:55 -0700
To: chi...@li...
Subject: Chiba-users digest, Vol 1 #173 - 3 msgs
Re: Send Chiba-users mailing list submissions to
Re: chi...@li...
Re:
Re: To subscribe or unsubscribe via the World Wide Web, visit
Re: https://lists.sourceforge.net/lists/listinfo/chiba-users
Re: or, via email, send a message with subject or body 'help' to
Re: chi...@li...
Re:
Re: You can reach the person managing the list at
Re: chi...@li...
Re:
Re: When replying, please edit your Subject line so it is more specific
Re: than "Re: Contents of Chiba-users digest..."
Re:
Re:
Re: Today's Topics:
Re:
Re: 1. Re: deploy target in chiba-sandbox build - question... (Joern Turner)
Re: 2. Re: how to show checkbox with associated images (Joern Turner)
Re: 3. Re: style attribute on xforms:input and xforms:output (Joern Turner)
Re:
Re: --__--__--
Re:
Re: Message: 1
Re: Date: Sat, 31 Jul 2004 10:58:54 +0200
Re: From: Joern Turner <joe...@we...>
Re: To: Noha Beshir <Noh...@pw...>
Re: CC: chi...@li...
Re: Subject: Re: [Chiba-users] deploy target in chiba-sandbox build - question...
Re:
Re: Noha Beshir wrote:
Re: > Hello everyone, I have a small question of interest regarding the
Re: > deploy target in the build.xml file for chiba-sandbox. I have this
Re: > problem which is that when I run the deploy target, I get a crash at
Re: > line 425: <copy todir="${deploy.dir}/${forms.dir}/debug"
Re: > description="debug test files" > <fileset dir="debug"/> </copy>
Re: these lines made it into the build file by error and simply weren't
Re: meant to be there - please simply delete them and everything should be fine.
Re:
Re: i've corrected the build file in CVS.
Re:
Re: Joern
Re: >
Re: > the error message says it's caused by the fact that my current
Re: > directory where I run the target from doesn't contain a folder named
Re: > debug. By creating a debug folder, I fix my problem and the target
Re: > builds successfully, so I don't think it's a big deal, but this just
Re: > raises the question of whether I'm doing something wrong with where
Re: > I'm keeping my project. I'm developing on one machine and will
Re: > eventually be deploying my war on another machine, so my development
Re: > machine doesn't have a server, tomcat or otherwise on it... Is this
Re: > ok?
Re: >
Re: > Also, with respect to my previous classpath problem when I was
Re: > getting failed builds for the compile-all target, the problem had
Re: > been that another project I was running had copied some files to the
Re: > jdk/jre/lib/endorsed folder. This was causing a problem because when
Re: > chiba was compiling, it used the xercesImpl.jar in the endorsed
Re: > folder instead of its own. I thought I'd let you know for anyone who
Re: > might have been wondering.
Re: >
Re: > if anyone knows the answer to my first question, I'd really
Re: > appreciate it. Thanks, Noha
Re: >
Re: >
Re: > ------------------------------------------------------- This SF.Net
Re: > email is sponsored by OSTG. Have you noticed the changes on
Re: > Linux.com, ITManagersJournal and NewsForge in the past few weeks?
Re: > Now, one more big change to announce. We are now OSTG- Open Source
Re: > Technology Group. Come see the changes on the new OSTG site.
Re: > www.ostg.com _______________________________________________
Re: > Chiba-users mailing list Chi...@li...
Re: > https://lists.sourceforge.net/lists/listinfo/chiba-users
Re: >
Re:
Re:
Re:
Re: --__--__--
Re:
Re: Message: 2
Re: Date: Sat, 31 Jul 2004 11:05:32 +0200
Re: From: Joern Turner <joe...@we...>
Re: To: Rex Zhou <rz...@ci...>
Re: CC: chiba-developer <chi...@li...>,
Re: chiba-users <chi...@li...>
Re: Subject: Re: [Chiba-users] how to show checkbox with associated images
Re:
Re: Rex Zhou wrote:
Re:
Re: > Hi, I need to use checkbox, and also need put associated images there,
Re: > anyone know how to do that?
Re: > I need use this control in my project, please help me!
Re: >
Re: > thanks,
Re: >
Re: > rex
Re: >
Re: > <xf:select appearance="full" bind="image-b">
Re: > <xf:itemset bind="image-b">
Re: > <xf:label bind="image-label-b">
Re: > <img src="???????"/> //
Re: > ------------------> it doesn't work here
Re: > </xf:label>
Re: > <!--xf:output value="????????"/-->
Re: > <xf:value bind="image-value-b"/>
Re: > </xf:itemset>
Re: > </xf:select>
Re:
Re: try something like this:
Re: <xf:select appearance="full" bind="image-b">
Re: <xf:itemset bind="image-b">
Re: <xf:label src="mygif.gif"/>
Re: <!-- will be resolved against baseURI of ChibaBean -->
Re: <!--xf:output value="????????"/-->
Re: <xf:value bind="image-value-b"/>
Re: </xf:itemset>
Re: </xf:select>
Re:
Re: this should work with any gif, jpg or png file.
Re:
Re: look at the 'label' template in html4.xsl for reference.
Re:
Re: hope this helps,
Re:
Re: Joern
Re:
Re:
Re: --__--__--
Re:
Re: Message: 3
Re: Date: Sat, 31 Jul 2004 11:26:42 +0200
Re: From: Joern Turner <joe...@we...>
Re: To: Ignacio Parga <nac...@ho...>
Re: CC: chi...@li...
Re: Subject: Re: [Chiba-users] style attribute on xforms:input and xforms:output
Re:
Re: Ignacio Parga wrote:
Re:
Re: > I want to use the style attribute for indicating absolute positions for=
Re: =20
Re: > xforms:input and xforms:output
Re: > but when modifying the xsl i just get the empty string for them, but=20
Re: > there's problemon accessing general ones like id,class,...
Re:
Re: simply use the ids instead of style. the id of the original xforms=20
Re: control will be preserved in the output and you can write a css matcher=20
Re: for it e.g.
Re:
Re: to style
Re: <xf:input id=3D"123"...
Re:
Re: write
Re: #123{font-size:10pt;....}
Re:
Re: please note that the actual control will get an id with '-value'=20
Re: attached -> '123-value' so to style the widget itself write
Re:
Re: #123-value{...
Re:
Re: hope this helps,
Re:
Re: Joern
Re: >=20
Re: > How can this be solved? Am I doing something wrong in the xsl or is the=
Re: =20
Re: > chiba code cutting those attributes?
Re: >=20
Re: > _________________________________________________________________
Re: > Reparaciones, servicios a domicilio, empresas, profesionales... Todo en=
Re: =20
Re: > la gu=EDa telef=F3nica de QDQ. http://qdq.msn.es/msn.cfm
Re: >=20
Re: >=20
Re: >=20
Re: > -------------------------------------------------------
Re: > This SF.Net email is sponsored by BEA Weblogic Workshop
Re: > FREE Java Enterprise J2EE developer tools!
Re: > Get your free copy of BEA WebLogic Workshop 8.1 today.
Re: > http://ads.osdn.com/?ad_id=3D4721&alloc_id=3D10040&op=3Dclick
Re: > _______________________________________________
Re: > Chiba-users mailing list
Re: > Chi...@li...
Re: > https://lists.sourceforge.net/lists/listinfo/chiba-users
Re: >=20
Re:
Re:
Re:
Re:
Re: --__--__--
Re:
Re: _______________________________________________
Re: Chiba-users mailing list
Re: Chi...@li...
Re: https://lists.sourceforge.net/lists/listinfo/chiba-users
Re:
Re:
Re: End of Chiba-users Digest
--
___________________________________________________________
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm
|