Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(19) |
Nov
(94) |
Dec
(47) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(36) |
Feb
(70) |
Mar
(64) |
Apr
(59) |
May
(66) |
Jun
(50) |
Jul
(36) |
Aug
(31) |
Sep
(59) |
Oct
(44) |
Nov
(32) |
Dec
(65) |
2005 |
Jan
(71) |
Feb
(169) |
Mar
(156) |
Apr
(63) |
May
(68) |
Jun
(101) |
Jul
(111) |
Aug
(43) |
Sep
(58) |
Oct
(77) |
Nov
(92) |
Dec
(27) |
2006 |
Jan
(121) |
Feb
(119) |
Mar
(86) |
Apr
(102) |
May
(78) |
Jun
(87) |
Jul
(80) |
Aug
(81) |
Sep
(72) |
Oct
(32) |
Nov
(62) |
Dec
(35) |
2007 |
Jan
(60) |
Feb
(56) |
Mar
(80) |
Apr
(44) |
May
(49) |
Jun
(16) |
Jul
(42) |
Aug
(70) |
Sep
(66) |
Oct
(56) |
Nov
(32) |
Dec
(32) |
2008 |
Jan
(71) |
Feb
(38) |
Mar
(38) |
Apr
(68) |
May
(25) |
Jun
(27) |
Jul
(19) |
Aug
(41) |
Sep
(26) |
Oct
(14) |
Nov
(5) |
Dec
(14) |
2009 |
Jan
(15) |
Feb
(67) |
Mar
(62) |
Apr
(36) |
May
(22) |
Jun
(25) |
Jul
(4) |
Aug
(17) |
Sep
(5) |
Oct
(13) |
Nov
(30) |
Dec
(19) |
2010 |
Jan
(20) |
Feb
(5) |
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
|
2
|
3
(5) |
4
(2) |
5
|
6
|
7
(1) |
8
(3) |
9
(5) |
10
(3) |
11
(1) |
12
|
13
|
14
(1) |
15
|
16
(2) |
17
(5) |
18
|
19
(1) |
20
(3) |
21
(3) |
22
(3) |
23
(2) |
24
(9) |
25
|
26
|
27
(4) |
28
(1) |
29
(5) |
30
(5) |
31
(7) |
|
|
From: Joern Turner <joern.turner@ch...> - 2008-01-31 22:59:49
|
Adam Flinton wrote: > Dear All, > > Now I can repeat attributes I want to create a group with > > label : value > > such as > > <xforms:group appearance="full" > > <xforms:label>Models: </xforms:label> > <xforms:repeat id="rpt" > nodeset="@*[contains(local-name(),'model.')]" appearance="full"> > <xforms:trigger appearance="minimal"> > <xforms:label>Update</xforms:label> > <xforms:action ev:event="DOMActivate"> > <xforms:send submission="xmlprocess" /> > </xforms:action> > </xforms:trigger> > > <xforms:output value="local-name(.)"/> > <xforms:input ref="." class="xfInput_75"> > <!--<xforms:label><xforms:output > ref="local-name(.)"/></xforms:label>--> > </xforms:input> > </xforms:repeat> > </xforms:group> > > > Is there any way I can have a dynamic/xpath label e.g. local-name() > > In the above exmaple I am using an output but what I'd really like is to > be able to set the label to local-name()./> you essentially got it right. A label can 'only' have a binding expression (ref) to some instance node. This is an xpath location path. So there's really no way of having an xpath function directly on label. So circumvent that you can do what you tried (should have worked?) and nest an output in the label: <xf:label> <xf:output value="local-name(.)"/> </xf:label> > > Any ideas? > > > Adam > > > > ********************************************************************** > This message may contain confidential and privileged information. > If you are not the intended recipient please accept our apologies. > Please do not disclose, copy or distribute information in this e-mail > or take any action in reliance on its contents: to do so is strictly > prohibited and may be unlawful. Please inform us that this message has > gone astray before deleting it. Thank you for your co-operation. > > NHSmail is used daily by over 100,000 staff in the NHS. Over a million > messages are sent every day by the system. To find out why more and > more NHS personnel are switching to this NHS Connecting for Health > system please visit http://www.connectingforhealth.nhs.uk/nhsmail > ********************************************************************** > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Chiba-users mailing list > Chiba-users@... > https://lists.sourceforge.net/lists/listinfo/chiba-users |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-31 20:10:49
|
Dear All, Now I can repeat attributes I want to create a group with label : value such as <xforms:group appearance="full" > <xforms:label>Models: </xforms:label> <xforms:repeat id="rpt" nodeset="@*[contains(local-name(),'model.')]" appearance="full"> <xforms:trigger appearance="minimal"> <xforms:label>Update</xforms:label> <xforms:action ev:event="DOMActivate"> <xforms:send submission="xmlprocess" /> </xforms:action> </xforms:trigger> <xforms:output value="local-name(.)"/> <xforms:input ref="." class="xfInput_75"> <!--<xforms:label><xforms:output ref="local-name(.)"/></xforms:label>--> </xforms:input> </xforms:repeat> </xforms:group> Is there any way I can have a dynamic/xpath label e.g. local-name() In the above exmaple I am using an output but what I'd really like is to be able to set the label to local-name(). Any ideas? Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-31 17:04:12
|
Adam Flinton wrote: > Dear All, > > You have a bug wrt nodesets composed of attributes eg. I wish to list > all "model." attributes e.g. model.test="test" on an element. > > Fixed... In case you wish to fix this in the main src (hint hint)... The Class: org.chiba.xml.xforms.ui.RepeatItem The method: public void setPosition(int position) The problem: If you have a repeating nodeSet of Elements you get a "canonicalPath" of: /Elements[1]/Element[1] But if you have a repeating nodeSet of Attributes you get a "canonicalPath" of: /Element[1]/@model.test This gives rise to: path = /Elements[1]/Element[1] expressions at 0 = expressions at 1 = Elements[1] expressions at 2 = Element[1] XPathUtil.splitStep step = Element[1] XPathUtil.splitStep list1 size = 2 XPathUtil.splitStep list2 size = 2 parts.length = 2 parts at 0 = Element parts at 1 = 1 vs: path = /Element[1]/@model.test expressions at 0 = expressions at 1 = Element[1] expressions at 2 = @model.test XPathUtil.splitStep step = @model.test XPathUtil.splitStep list1 = 0 XPathUtil.splitStep list2 = 1 parts.length = 1 parts at 0 = @model.test i.e. no string parseable as an int at parts[1] Also asking parts for [1] will give an java.lang.ArrayIndexOutOfBoundsException as there is only [0] Fix: in setPosition(int position) instead of: this.contextPosition = Integer.parseInt(XPathUtil.getNodesetAndPredicates(canonicalPath)[1]); use this: int pos = 0; try{ pos = Integer.parseInt(XPathUtil.getNodesetAndPredicates(canonicalPath)[1]); } catch (java.lang.ArrayIndexOutOfBoundsException E) { pos = position; } this.contextPosition = pos; TIA Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Retter <adam.retter@de...> - 2008-01-31 15:26:33
|
You can generate an Eclipse project file from Maven for Chiba that will = automatically setup the build path etc with the correct jars on it :-) try - mvn eclipse:eclipse see - = https://www.chibaxforms.org/cgi-bin/trac.cgi/wiki/chiba_sandbox_maven -----Original Message----- From: chiba-users-bounces@... on behalf of Adam = Flinton Sent: Thu 31/01/2008 14:19 To: adam.flinton@... Cc: chiba-users Subject: Re: [Chiba-users] Maven-Eclipse question =20 I have found the repository but still can not see if there is any way=20 other than hunt & click to add the jars to the build path, so I have=20 dealt with it via setting up another project/folder & an ant script e.g. <property name=3D"jars" value=3D"jars" /> <property name=3D"mvn.repo" value=3D"D:\Documents and=20 Settings\adfl\.m2\repository" /> =20 <target name=3D"CopyJars" > <copy todir=3D"${jars}" flatten=3D"true" overwrite=3D"true"> <fileset dir=3D"${mvn.repo}"> <include name=3D"**/*.jar" /> </fileset> </copy> </target> Adam Adam Flinton wrote: > Is anyone using the Maven2 Eclipse plugin to build Chiba with? > > If so.... > > I have got Chiba core 1.4.0 to build happily etc with maven but....I = can=20 > not see where it put's the dependent jars so I can not see where to = set=20 > my Eclipse java builder paths to. > > Any idea where maven2 eclipse plugin downloads & stores the jars etc = as=20 > mentioned in ; > > <dependencies> > > <dependency> > <groupId>commons-codec</groupId> > <artifactId>commons-codec</artifactId> > <version>1.3</version> > </dependency> > <dependency> > <groupId>commons-httpclient</groupId> > <artifactId>commons-httpclient</artifactId> > <version>3.0.1</version> > </dependency> > <dependency> > <groupId>commons-jxpath</groupId> > <artifactId>commons-jxpath</artifactId> > <version>1.2-chiba-patched</version> > </dependency> > <dependency> > <groupId>commons-logging</groupId> > <artifactId>commons-logging</artifactId> > <version>1.0.4</version> > </dependency> > <dependency> > <groupId>commons-logging</groupId> > <artifactId>commons-logging-api</artifactId> > <version>1.0.4</version> > </dependency> > <dependency> > <groupId>javax.activation</groupId> > <artifactId>activation</artifactId> > <version>1.0.2</version> > </dependency> > <dependency> > <groupId>javax.mail</groupId> > <artifactId>mail</artifactId> > <version>1.3.3</version> > </dependency> > <dependency> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > <version>1.2.13</version> > </dependency> > <dependency> > <groupId>xerces</groupId> > <artifactId>xercesImpl</artifactId> > <version>2.8.0</version> > </dependency> > <dependency> > <groupId>xml-apis</groupId> > <artifactId>xml-apis</artifactId> > <version>1.0.b2</version> > </dependency> > <dependency> > <groupId>xmlrpc</groupId> > <artifactId>xmlrpc</artifactId> > <version>1.2</version> > </dependency> > > <dependency> > <groupId>net.sf.saxon</groupId> > <artifactId>saxon</artifactId> > <version>8.7</version> > </dependency> > <dependency> > <groupId>net.sf.saxon</groupId> > <artifactId>saxon-dom</artifactId> > <version>8.7</version> > </dependency> > > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>3.8.2</version> > <scope>provided</scope> > </dependency> > > </dependencies> > > ? > > TIA > > Adam > =20 ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** -------------------------------------------------------------------------= This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Chiba-users mailing list Chiba-users@... https://lists.sourceforge.net/lists/listinfo/chiba-users |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-31 14:20:02
|
I have found the repository but still can not see if there is any way other than hunt & click to add the jars to the build path, so I have dealt with it via setting up another project/folder & an ant script e.g. <property name="jars" value="jars" /> <property name="mvn.repo" value="D:\Documents and Settings\adfl\.m2\repository" /> <target name="CopyJars" > <copy todir="${jars}" flatten="true" overwrite="true"> <fileset dir="${mvn.repo}"> <include name="**/*.jar" /> </fileset> </copy> </target> Adam Adam Flinton wrote: > Is anyone using the Maven2 Eclipse plugin to build Chiba with? > > If so.... > > I have got Chiba core 1.4.0 to build happily etc with maven but....I can > not see where it put's the dependent jars so I can not see where to set > my Eclipse java builder paths to. > > Any idea where maven2 eclipse plugin downloads & stores the jars etc as > mentioned in ; > > <dependencies> > > <dependency> > <groupId>commons-codec</groupId> > <artifactId>commons-codec</artifactId> > <version>1.3</version> > </dependency> > <dependency> > <groupId>commons-httpclient</groupId> > <artifactId>commons-httpclient</artifactId> > <version>3.0.1</version> > </dependency> > <dependency> > <groupId>commons-jxpath</groupId> > <artifactId>commons-jxpath</artifactId> > <version>1.2-chiba-patched</version> > </dependency> > <dependency> > <groupId>commons-logging</groupId> > <artifactId>commons-logging</artifactId> > <version>1.0.4</version> > </dependency> > <dependency> > <groupId>commons-logging</groupId> > <artifactId>commons-logging-api</artifactId> > <version>1.0.4</version> > </dependency> > <dependency> > <groupId>javax.activation</groupId> > <artifactId>activation</artifactId> > <version>1.0.2</version> > </dependency> > <dependency> > <groupId>javax.mail</groupId> > <artifactId>mail</artifactId> > <version>1.3.3</version> > </dependency> > <dependency> > <groupId>log4j</groupId> > <artifactId>log4j</artifactId> > <version>1.2.13</version> > </dependency> > <dependency> > <groupId>xerces</groupId> > <artifactId>xercesImpl</artifactId> > <version>2.8.0</version> > </dependency> > <dependency> > <groupId>xml-apis</groupId> > <artifactId>xml-apis</artifactId> > <version>1.0.b2</version> > </dependency> > <dependency> > <groupId>xmlrpc</groupId> > <artifactId>xmlrpc</artifactId> > <version>1.2</version> > </dependency> > > <dependency> > <groupId>net.sf.saxon</groupId> > <artifactId>saxon</artifactId> > <version>8.7</version> > </dependency> > <dependency> > <groupId>net.sf.saxon</groupId> > <artifactId>saxon-dom</artifactId> > <version>8.7</version> > </dependency> > > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>3.8.2</version> > <scope>provided</scope> > </dependency> > > </dependencies> > > ? > > TIA > > Adam > ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-31 13:41:47
|
Is anyone using the Maven2 Eclipse plugin to build Chiba with? If so.... I have got Chiba core 1.4.0 to build happily etc with maven but....I can not see where it put's the dependent jars so I can not see where to set my Eclipse java builder paths to. Any idea where maven2 eclipse plugin downloads & stores the jars etc as mentioned in ; <dependencies> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>commons-jxpath</groupId> <artifactId>commons-jxpath</artifactId> <version>1.2-chiba-patched</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.0.2</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.3.3</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.13</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.8.0</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.0.b2</version> </dependency> <dependency> <groupId>xmlrpc</groupId> <artifactId>xmlrpc</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>saxon</artifactId> <version>8.7</version> </dependency> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>saxon-dom</artifactId> <version>8.7</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>provided</scope> </dependency> </dependencies> ? TIA Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-31 12:43:29
|
Dear All, You have a bug wrt nodesets composed of attributes eg. I wish to list all "model." attributes e.g. model.test="test" on an element. As such I have a repeat such as: <xforms:group appearance="full" > <xforms:label>Models: </xforms:label> <xforms:repeat id="rpt" nodeset="@*[contains(local-name(),'model.')]" appearance="full"> <xforms:trigger appearance="minimal"> <xforms:label>Update</xforms:label> <xforms:action ev:event="DOMActivate"> <xforms:send submission="xmlprocess" /> </xforms:action> </xforms:trigger> <xforms:input ref="." class="xfInput_75"> <xforms:label>Model :</xforms:label> </xforms:input> </xforms:repeat> </xforms:group> & that generates the following error: ERROR org.chiba.xml.xforms.Container : dispatch: exception during event flow org.chiba.xml.xforms.exception.XFormsException: java.lang.ArrayIndexOutOfBoundsException: 1 at org.chiba.xml.xforms.Container.dispatch(Unknown Source) at org.chiba.xml.xforms.Container.dispatch(Unknown Source) at org.chiba.xml.xforms.Container.initModels(Unknown Source) at org.chiba.xml.xforms.Container.init(Unknown Source) at org.chiba.xml.xforms.ChibaBean.init(Unknown Source) at org.chiba.web.WebAdapter.init(WebAdapter.java:198) at org.chiba.web.flux.FluxAdapter.init(FluxAdapter.java:151) at org.chiba.web.session.impl.XFormsSessionBase.init(XFormsSessionBase.java:278) at org.chiba.web.filter.XFormsFilter.doFilter(XFormsFilter.java:119) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869) at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667) at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) at java.lang.Thread.run(Thread.java:595) Caused by: java.lang.ArrayIndexOutOfBoundsException: 1 at org.chiba.xml.xforms.ui.RepeatItem.setPosition(Unknown Source) at org.chiba.xml.xforms.ui.Repeat.initializeRepeatItem(Unknown Source) at org.chiba.xml.xforms.ui.Repeat.initializeRepeat(Unknown Source) at org.chiba.xml.xforms.ui.Repeat.init(Unknown Source) at org.chiba.xml.xforms.Initializer.initializeUIElements(Unknown Source) at org.chiba.xml.xforms.ui.AbstractUIElement.initializeChildren(Unknown Source) at org.chiba.xml.xforms.ui.Group.init(Unknown Source) at org.chiba.xml.xforms.Initializer.initializeUIElements(Unknown Source) at org.chiba.xml.xforms.ui.AbstractUIElement.initializeChildren(Unknown Source) at org.chiba.xml.xforms.ui.Group.init(Unknown Source) at org.chiba.xml.xforms.Initializer.initializeUIElements(Unknown Source) at org.chiba.xml.xforms.Initializer.initializeUIElements(Unknown Source) at org.chiba.xml.xforms.Initializer.initializeUIElements(Unknown Source) at org.chiba.xml.xforms.core.Model.modelConstructDone(Unknown Source) at org.chiba.xml.xforms.core.Model.performDefault(Unknown Source) at org.chiba.xml.events.impl.DefaultXMLEventService.dispatch(Unknown Source) ... 23 more I can dig into the code if you like. Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam@so...> - 2008-01-30 23:50:18
|
Thanks Adam Paolo Di Pietro wrote: > You can use one of two ways: > > =20 > > The first one is to embed the image in the CSS: in this case the Send c= lass in the CSS has the following fragment: > > =20 > > =20 > > input.aSend > > { > > background-image: url('./send.png'); > > }=20 > > =20 > > The Xforms fragment looks like the following one: > > =20 > > <xf:trigger class=3D"pb s aSend" bind=3D"XformValid"> > > <xf:label>Avanti</xf:label> > > <xf:action> > > <xf:load resource=3D"uryToLoad" /> > > </xf:action > > </xf:trigger> > > =20 > > The result looks like this:=20 > > =20 > > =20 > > Hope it helps! > > =20 > > Paolo > > =20 > > -----Messaggio originale----- > Da: chiba-users-bounces@... [mailto:chiba-users-bounc= es@...] Per conto di Adam Flinton > Inviato: marted=EC 29 gennaio 2008 15.00 > A: pdipietro > Oggetto: [Chiba-users] Clickable image? > > =20 > > Dear All, > > =20 > > I have been asked to put on a form an image rather than a button or a=20 > > link which then opens a new page via an url (using javascript at presen= t). > > =20 > > A) How do I add a clickable image i.e. a trigger with an image instead=20 > > of a text link or button? > > =20 > > B) Is there any way of opening a new html document in a new window=20 > > without doing something similar to > > =20 > > <xforms:load=20 > > resource=3D"javascript:openNewWindow('./html/Documentation/models.html#= thismodel)"=20 > > /> > > =20 > > =20 > > ? > > =20 > > =20 > > Adam > > =20 > > =20 > > =20 |
From: <valerie.lavorato@cb...> - 2008-01-30 23:14:31
|
Expanding options to treat ED! http://89.169.172.237/azpp/ |
From: Joern Turner <joern.turner@ch...> - 2008-01-30 23:08:15
|
Adam Flinton wrote: > Joern Turner wrote: >> Hi *, >> >> we pushed Core 1.4.0 out. >> >> Chiba version 1.4.0 >> ------------------- >> This is a maintainance release with fixes a lot of detail issues plus >> adds some new XForms 1.1 features here and there. >> Most noteable is the migration to Maven 2 as a build tool to improve >> the build organisation of the rather grown >> ant files. This is intended to ease the integration of Chiba in >> several different scenarios and provide up-to-date >> versions of Chiba Core in our Maven repository. >> >> > > Any sort of change log? Of course - in subdir 'doc' see changes.txt and (same content) on the sourceforge download page (linked with every release). > > & your main page on Sourceforge needs updating to include this. > > Adam > > ********************************************************************** > This message may contain confidential and privileged information. > If you are not the intended recipient please accept our apologies. > Please do not disclose, copy or distribute information in this e-mail > or take any action in reliance on its contents: to do so is strictly > prohibited and may be unlawful. Please inform us that this message has > gone astray before deleting it. Thank you for your co-operation. > > NHSmail is used daily by over 100,000 staff in the NHS. Over a million > messages are sent every day by the system. To find out why more and > more NHS personnel are switching to this NHS Connecting for Health > system please visit http://www.connectingforhealth.nhs.uk/nhsmail > ********************************************************************** > |
From: Lars Windauer <lars.windauer@dr...> - 2008-01-30 22:08:27
|
Dear Adam, The Sourceforge page will be updated the next days. If you are interested in more up to date informations take a look at the Roadmap and Timeline category at https://www.chibaxforms.org/cgi-bin/trac.cgi The changelog is available at https://www.chibaxforms.org/cgi-bin/trac.cgi/browser/tags/R-CORE-1-4-0/doc/changes.txt Cheers Lars > Joern Turner wrote: > >> Hi *, >> >> we pushed Core 1.4.0 out. >> >> Chiba version 1.4.0 >> ------------------- >> This is a maintainance release with fixes a lot of detail issues plus >> adds some new XForms 1.1 features here and there. >> Most noteable is the migration to Maven 2 as a build tool to improve the >> build organisation of the rather grown >> ant files. This is intended to ease the integration of Chiba in several >> different scenarios and provide up-to-date >> versions of Chiba Core in our Maven repository. >> >> >> > > Any sort of change log? > > & your main page on Sourceforge needs updating to include this. > > Adam > > ********************************************************************** > This message may contain confidential and privileged information. > If you are not the intended recipient please accept our apologies. > Please do not disclose, copy or distribute information in this e-mail > or take any action in reliance on its contents: to do so is strictly > prohibited and may be unlawful. Please inform us that this message has > gone astray before deleting it. Thank you for your co-operation. > > NHSmail is used daily by over 100,000 staff in the NHS. Over a million > messages are sent every day by the system. To find out why more and > more NHS personnel are switching to this NHS Connecting for Health > system please visit http://www.connectingforhealth.nhs.uk/nhsmail > ********************************************************************** > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Chiba-developer mailing list > Chiba-developer@... > https://lists.sourceforge.net/lists/listinfo/chiba-developer > |
From: Paolo Di Pietro <pdipietro@di...> - 2008-01-30 00:23:23
|
From: Adam Flinton <adam.flinton@nh...> - 2008-01-29 13:56:23
|
Dear All, I have been asked to put on a form an image rather than a button or a link which then opens a new page via an url (using javascript at present). A) How do I add a clickable image i.e. a trigger with an image instead of a text link or button? B) Is there any way of opening a new html document in a new window without doing something similar to <xforms:load resource="javascript:openNewWindow('./html/Documentation/models.html#thismodel)" /> ? Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-29 12:04:54
|
Clarification : Help works within a group but not within a group within a repeat. Adam Adam Flinton wrote: > Dear All, > > Using Chiba 2. > > If I have a group such as: > > <xforms:group appearance="full"> > <xforms:label>Element : </xforms:label> > <xforms:input ref="@name" class="xfInput_75"> > <xforms:label>Name :</xforms:label> > <xforms:help>The name of the element. The name must be same as > the element it is describing (case sensitive)</xforms:help> > </xforms:input> > </xforms:group> > > > The help does not show up. > > Any ideas? > > TIA > > Adam > > ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-29 11:14:35
|
Joern Turner wrote: > Hi *, > > we pushed Core 1.4.0 out. > > Chiba version 1.4.0 > ------------------- > This is a maintainance release with fixes a lot of detail issues plus > adds some new XForms 1.1 features here and there. > Most noteable is the migration to Maven 2 as a build tool to improve the > build organisation of the rather grown > ant files. This is intended to ease the integration of Chiba in several > different scenarios and provide up-to-date > versions of Chiba Core in our Maven repository. > > Any sort of change log? & your main page on Sourceforge needs updating to include this. Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-29 11:10:33
|
BTW hint works but it's too small e.g. I get the popup but then I see "my hint text is quite long and consists of ............." Is there any way to make sure the hint size is big enough for the text within it or is it hard set? Adam Adam Flinton wrote: > Dear All, > > Using Chiba 2. > > If I have a group such as: > > <xforms:group appearance="full"> > <xforms:label>Element : </xforms:label> > <xforms:input ref="@name" class="xfInput_75"> > <xforms:label>Name :</xforms:label> > <xforms:help>The name of the element. The name must be same as > the element it is describing (case sensitive)</xforms:help> > </xforms:input> > </xforms:group> > > > The help does not show up. > > Any ideas? > > TIA > ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Adam Flinton <adam.flinton@nh...> - 2008-01-29 11:03:56
|
Dear All, Using Chiba 2. If I have a group such as: <xforms:group appearance="full"> <xforms:label>Element : </xforms:label> <xforms:input ref="@name" class="xfInput_75"> <xforms:label>Name :</xforms:label> <xforms:help>The name of the element. The name must be same as the element it is describing (case sensitive)</xforms:help> </xforms:input> </xforms:group> The help does not show up. Any ideas? TIA Adam ********************************************************************** This message may contain confidential and privileged information. If you are not the intended recipient please accept our apologies. Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Thank you for your co-operation. NHSmail is used daily by over 100,000 staff in the NHS. Over a million messages are sent every day by the system. To find out why more and more NHS personnel are switching to this NHS Connecting for Health system please visit http://www.connectingforhealth.nhs.uk/nhsmail ********************************************************************** |
From: Lars Windauer <lars.windauer@dr...> - 2008-01-28 11:35:07
|
I added a chiba-web jar to our archiva repository. Folloging pom.xml is an simple example project file to build projects based on Chiba Web. Executing 'mvn war:war' merges your webapp and the Chiba webapp in the target directory <project> <modelVersion>4.0.0</modelVersion> <groupId>com.chiba</groupId> <artifactId>chiba-example</artifactId> <version>0.1</version> <packaging>war</packaging> <build> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <workDirectory>tmp</workDirectory> <overlays> <overlay> <groupId>org.chiba</groupId> <artifactId>chiba-web</artifactId> <excludes> <exclude>forms/apps</exclude> <exclude>forms/demo</exclude> <exclude>forms/incubator</exclude> <exclude>forms/*.xhtml</exclude> <exclude>forms/**/*.xhtml</exclude> <exclude>forms/**/*.xml</exclude> </excludes> </overlay> </overlays> <archiveClasses>true</archiveClasses> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-idea-plugin</artifactId> <configuration> <jdkName>1.5</jdkName> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.1</version> <configuration> <source>1.5</source> <target>1.5</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.6</version> </plugin> </plugins> </build> <dependencies> <!-- CHIBA Dependencies --> <dependency> <groupId>org.chiba</groupId> <artifactId>chiba-web</artifactId> <version>2.1.1-SNAPSHOT</version> <type>war</type> </dependency> <dependency> <groupId>org.chiba</groupId> <artifactId>chiba</artifactId> <version>1.4.0</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>org.chiba</groupId> <artifactId>chiba-web-jar</artifactId> <version>2.1.1</version> <type>jar</type> <scope>provided</scope> </dependency> </dependencies> <repositories> <repository> <id>chiba</id> <name>Archiva Managed Internal Repository</name> <url>http://chibaxforms.org:8181/archiva/repository/chiba/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> </project> All available are listed at http://chibaxforms.org:8181/archiva/quickSearch.action?q=chiba-web-jar Have fun, cheers Lars |
From: Ronald van Kuijk <rvkuijk@gm...> - 2008-01-27 23:40:47
|
The company I work for does everything based on messages (xsd based). The DB just stores these messages as blobs and only retrieves a small amount of meta-data from them (we are even thinking of using Alfresco for this). Therefore the generation based on the schema2xforms that comes with Chiba is fine initially. We then want to use the 'designer' to customize these generated forms. Regarding 'Cuijk' It does not show up in our family tree, at least not from the time we have it (1715). Ronald On Jan 27, 2008 6:20 PM, holke visser <holke.visser@...> wrote: > Hi Ronald, > > Ok. Designing is what xfg is not about. It is a lot like the > generation of xfoms from xsd. It could very well be the same. Or maybe > it is about generating xsd's from the database design. Thanx for > pointing me out in this direction. > > Xfg is what happens before the actual forms design. It is not about > GUI or workflow. It only provides components for xforms developers so > they can focus on the the User interaction instead of the database > interaction. > > see xfg architecture: > http://code.google.com/p/xformsgenerator/wiki/XFGarchitecture > > I wish you good luck with your Designer. : ) > > Funny coincidence: I live in a place called Cuijk. > > 2008/1/27, Ronald van Kuijk <rvkuijk@...>: > > Hi Holke, > > > > Yes, I was refering to the xforms generator. In our case it is not so > much a > > generator, since the basic form will be generated from the xsd. It is > more > > like a designer, so you can add constraints, move input elements to > other > > places, add basic html markup, add questions that make other elements > > conditionally visible or not etc... > > > > I've not used the xfg since it could not handle xsd's very well, you > needed > > wsdl's which we haven't got nor intend to design. The ibm editor was not > to > > bad, but not up to our requirements and since it is not open source, we > > cannot contribute. Therefor we are thinking of a custom designer. > > > > Ronald. > > > > > > On Jan 24, 2008 1:01 AM, holke visser <holke.visser@...> wrote: > > > Hi Ronald, > > > > > > What do you mean by "this" If you are refering to the xform generator, > > > it is all very expiremental. I just choose php because that is the > > > serverside language I know best. After I switched from formfaces to > > > chiba as the xforms processor, I began having seconds thoughts about > > > php. An implementation in java could mean a closer alignment with > > > chiba. > > > > > > Unfortunately Java is not my language of speak. (In fact I am an > > > Oracle PL/SQL developer and know my way around wit php and javascript) > > > But on the other hand It doesn't use php that much. The transformation > > > of the logical formdesign to the actual xform is done by xsl. > > > > > > Here are some examples: > > > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test > > > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test2 > > > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test3 > > > > > > If you want, I am happy to share my architectural design with you. > > > I'll let you know when I updated > > > http://code.google.com/p/xformsgenerator/ . > > > > > > Thanx for the links. I will take a look at them. > > > I already found http://www.alphaworks.ibm.com/tech/xfg. > > Do you have > > > experience with it ? > > > > > > with kind regards > > > > > > > > > 2008/1/22, Ronald van Kuijk <rvkuijk@...>: > > > > > > > > > > > > > Hi Holke, > > > > > > > > Do you do this in PHP? To bad, since we (in the company I work for) > were > > > > thinking of doing some webbased designer stuff, but in java (jsf) > > > > > > > > btw, some interesting examples can be found on > > > > > > > > http://en.wikibooks.org/wiki/XForms > > > > > > > > more specifically they have a 'confirm delete example' > > > > > > > > http://en.wikibooks.org/wiki/XForms/Delete_Confirm > > > > > > > > I also came across > > > > http://www.forxdesign.co.za/ox-designer/MyPluto.html, > > but > > > > there was nothing there.... I might check again one day.. > > > > > > > > Ronald > > > > > > > > > > > > On Jan 20, 2008 11:04 PM, holke visser <holke.visser@...> > wrote: > > > > > > > > > > Hello chiba admin, > > > > > > > > > > I am investigating the possibilities of Chiba and found some > issues. > > > > > > > > > > see: > > > > > > http://code.google.com/p/xformsgenerator/wiki/ChibIssues > > > > . > > > > > > > > > > Some of them I already solved by using your mailing list. But some > of > > > > > them still stand. When I have clear examples of those I would like > to > > > > > post them in the mailing list. > > > > > > > > > > Is there a buglist so I can check if my issues are new. > > > > > > > > > > with kind regards > > > > > > > > > > Holke F. Visser > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > > This SF.net email is sponsored by: Microsoft > > > > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > > > > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > > > _______________________________________________ > > > > > Chiba-users mailing list > > > > > Chiba-users@... > > > > > > > https://lists.sourceforge.net/lists/listinfo/chiba-users > > > > > > > > > > > > > > > > > > > > > |
From: holke visser <holke.visser@gm...> - 2008-01-27 17:20:18
|
Hi Ronald, Ok. Designing is what xfg is not about. It is a lot like the generation of xfoms from xsd. It could very well be the same. Or maybe it is about generating xsd's from the database design. Thanx for pointing me out in this direction. Xfg is what happens before the actual forms design. It is not about GUI or workflow. It only provides components for xforms developers so they can focus on the the User interaction instead of the database interaction. see xfg architecture: http://code.google.com/p/xformsgenerator/wiki/XFGarchitecture I wish you good luck with your Designer. : ) Funny coincidence: I live in a place called Cuijk. 2008/1/27, Ronald van Kuijk <rvkuijk@...>: > Hi Holke, > > Yes, I was refering to the xforms generator. In our case it is not so much a > generator, since the basic form will be generated from the xsd. It is more > like a designer, so you can add constraints, move input elements to other > places, add basic html markup, add questions that make other elements > conditionally visible or not etc... > > I've not used the xfg since it could not handle xsd's very well, you needed > wsdl's which we haven't got nor intend to design. The ibm editor was not to > bad, but not up to our requirements and since it is not open source, we > cannot contribute. Therefor we are thinking of a custom designer. > > Ronald. > > > On Jan 24, 2008 1:01 AM, holke visser <holke.visser@...> wrote: > > Hi Ronald, > > > > What do you mean by "this" If you are refering to the xform generator, > > it is all very expiremental. I just choose php because that is the > > serverside language I know best. After I switched from formfaces to > > chiba as the xforms processor, I began having seconds thoughts about > > php. An implementation in java could mean a closer alignment with > > chiba. > > > > Unfortunately Java is not my language of speak. (In fact I am an > > Oracle PL/SQL developer and know my way around wit php and javascript) > > But on the other hand It doesn't use php that much. The transformation > > of the logical formdesign to the actual xform is done by xsl. > > > > Here are some examples: > > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test > > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test2 > > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test3 > > > > If you want, I am happy to share my architectural design with you. > > I'll let you know when I updated > > http://code.google.com/p/xformsgenerator/ . > > > > Thanx for the links. I will take a look at them. > > I already found http://www.alphaworks.ibm.com/tech/xfg. > Do you have > > experience with it ? > > > > with kind regards > > > > > > 2008/1/22, Ronald van Kuijk <rvkuijk@...>: > > > > > > > > > Hi Holke, > > > > > > Do you do this in PHP? To bad, since we (in the company I work for) were > > > thinking of doing some webbased designer stuff, but in java (jsf) > > > > > > btw, some interesting examples can be found on > > > > > > http://en.wikibooks.org/wiki/XForms > > > > > > more specifically they have a 'confirm delete example' > > > > > > http://en.wikibooks.org/wiki/XForms/Delete_Confirm > > > > > > I also came across > > > http://www.forxdesign.co.za/ox-designer/MyPluto.html, > but > > > there was nothing there.... I might check again one day.. > > > > > > Ronald > > > > > > > > > On Jan 20, 2008 11:04 PM, holke visser <holke.visser@...> wrote: > > > > > > > > Hello chiba admin, > > > > > > > > I am investigating the possibilities of Chiba and found some issues. > > > > > > > > see: > > > > http://code.google.com/p/xformsgenerator/wiki/ChibIssues > > > . > > > > > > > > Some of them I already solved by using your mailing list. But some of > > > > them still stand. When I have clear examples of those I would like to > > > > post them in the mailing list. > > > > > > > > Is there a buglist so I can check if my issues are new. > > > > > > > > with kind regards > > > > > > > > Holke F. Visser > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.net email is sponsored by: Microsoft > > > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > > _______________________________________________ > > > > Chiba-users mailing list > > > > Chiba-users@... > > > > > https://lists.sourceforge.net/lists/listinfo/chiba-users > > > > > > > > > > > > > > |
From: Augustus <kikeelera@pl...> - 2008-01-27 04:30:37
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> <img alt="sordid" src="cid:part1.07010006.02060604@..." height="621" width="437"><br> Relocation assistance available for the right candidate. mechanical, bsc mechanical, b. Local candidates or those willing to relocate at their own expense are encouraged to apply, as there is no relocation available for this position.<br> Strong technical skills need to be coupled with a client focus. You want the only boundary between you and success to be your capacity for growth.<br> Salary will be commensurate with experience and background. com for more information and a complete listing of career opportunities. Must be able to prepare drawings detailing the system designed and preform system design calculations. Salary is dependent upon qualifications and experience.<br> There is an IMMEDIATE need for an Engineer in Newark, DE. Where do you currently reside?<br> Describe your experience designing steel structures.<br> Which position are you applying for? EIT or PE registration is desired.<br> Educational and training accomplishments: List an certifications, training, licenses, awards, or degrees that you have earned.<br> com Project Engineer - Water Management Company: Woolpert, Inc.<br> Please detail your educational background including degrees, certifications, and awards received. Company offers full relocation assistance along with an excellent benefits package. You MUST be experienced with design of cross country FERC certificated domestic natural gas pipeline projects.<br> Describe your previous experience. Why are you leaving your present job?<br> Why are you the best candidate for the position? Individual will manage assigned tank inspections for compliance and mechanical condition and will participate as company representative on standards committees.<br> Requires some travel to project sites. You will be expected to travel to customer sites which could be as short as a few days or as long as several months depending on the project need. Drainage design, pond design and WMD permitting experience highly desired. There is limited travel with this position. civil, msc in civil, m.<br> Daily duties to include working on projects that involve all phases of highway design, from concept development to the preparation of final construction documents. PE certification would be a plus. Daily duties to include working on projects that involve all phases of highway design, from concept development to the preparation of final construction documents.<br> com Project Engineer - Water Management Company: Woolpert, Inc.<br> All candidates applying for this position must have a high school education and have a minimum of two years of field experience. Have you worked as a member of a project team?<br> Experience in stormwater management, ESRI ArcMap, HYDRA and XP-SWMM would be beneficial.<br> The ideal candidate will have a BSCE.<br> Additional tasks include coordinating equipment shipments, scheduling and monitoring installation activities, facilitating any on-site travel and per diem issues.<br> </body> </html> |
From: Ronald van Kuijk <rvkuijk@gm...> - 2008-01-27 00:25:29
|
Hi Holke, Yes, I was refering to the xforms generator. In our case it is not so much a generator, since the basic form will be generated from the xsd. It is more like a designer, so you can add constraints, move input elements to other places, add basic html markup, add questions that make other elements conditionally visible or not etc... I've not used the xfg since it could not handle xsd's very well, you needed wsdl's which we haven't got nor intend to design. The ibm editor was not to bad, but not up to our requirements and since it is not open source, we cannot contribute. Therefor we are thinking of a custom designer. Ronald. On Jan 24, 2008 1:01 AM, holke visser <holke.visser@...> wrote: > Hi Ronald, > > What do you mean by "this" If you are refering to the xform generator, > it is all very expiremental. I just choose php because that is the > serverside language I know best. After I switched from formfaces to > chiba as the xforms processor, I began having seconds thoughts about > php. An implementation in java could mean a closer alignment with > chiba. > > Unfortunately Java is not my language of speak. (In fact I am an > Oracle PL/SQL developer and know my way around wit php and javascript) > But on the other hand It doesn't use php that much. The transformation > of the logical formdesign to the actual xform is done by xsl. > > Here are some examples: > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test2 > http://xfg.vrouwe-dirkje.nl/xfg.php?formname=xfg_test3 > > If you want, I am happy to share my architectural design with you. > I'll let you know when I updated > http://code.google.com/p/xformsgenerator/ . > > Thanx for the links. I will take a look at them. > I already found http://www.alphaworks.ibm.com/tech/xfg. Do you have > experience with it ? > > with kind regards > > > 2008/1/22, Ronald van Kuijk <rvkuijk@...>: > > Hi Holke, > > > > Do you do this in PHP? To bad, since we (in the company I work for) were > > thinking of doing some webbased designer stuff, but in java (jsf) > > > > btw, some interesting examples can be found on > > > > http://en.wikibooks.org/wiki/XForms > > > > more specifically they have a 'confirm delete example' > > > > http://en.wikibooks.org/wiki/XForms/Delete_Confirm > > > > I also came across > > http://www.forxdesign.co.za/ox-designer/MyPluto.html, but > > there was nothing there.... I might check again one day.. > > > > Ronald > > > > > > On Jan 20, 2008 11:04 PM, holke visser <holke.visser@...> wrote: > > > > > > Hello chiba admin, > > > > > > I am investigating the possibilities of Chiba and found some issues. > > > > > > see: > > http://code.google.com/p/xformsgenerator/wiki/ChibIssues > > . > > > > > > Some of them I already solved by using your mailing list. But some of > > > them still stand. When I have clear examples of those I would like to > > > post them in the mailing list. > > > > > > Is there a buglist so I can check if my issues are new. > > > > > > with kind regards > > > > > > Holke F. Visser > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > Chiba-users mailing list > > > Chiba-users@... > > > https://lists.sourceforge.net/lists/listinfo/chiba-users > > > > > > > > |
From: Elena Colomo <elenacolomo@gm...> - 2008-01-24 16:09:19
|
Hello, in the release chiba-core 1.3.0 there was a tool to convert schemas '.xsd' in 'xform' in the folder org.chiba.tools and called schemabuilder. I have seen that the new release doesn't contain any of this, the folder tool is empty. Anyone knows why? Do you know what is going to happend in next releases? Thank you very much! |
From: Lars Windauer <lars.windauer@dr...> - 2008-01-24 13:45:08
|
Holke > Ok, > > I understand that bugfixing of old release is not a good idea. That is > why I wanted to use the latest release of Chiba. Can you tell me how I > can build a war file from the > https://chibaxforms.org/svn/repos/unstable source. I have Maven > already installed. ~/unstable/core represent chiba-sandbox and ~/unstable/web chiba-web. Everything works exactly the same as in all other branches. Simply switch to the project you want to build (the directory containing the pom.xml file) and call "mvn package". If you want to install the results of an project in your local Maven repository to use it in other Maven projects call 'mvn install'. For instance if you change the core version to 1.4.0-mycore you must run 'mvn install' before you can use chiba-core-1.4.0-mycore in chiba-web. If you want to get to know Maven better take a look at the "Better builds with Maven" book at http://www.devzuz.com/web/guest/products/resources#BBWM Everything regarding Chiba and Maven is listed at: https://www.chibaxforms.org/cgi-bin/trac.cgi/wiki/BuildingChibaSandbox and https://www.chibaxforms.org/cgi-bin/trac.cgi/wiki/BuildingChibaWeb hth lars > Thanx > > Holke > > 2008/1/24, Lars Windauer <lars.windauer@...>: > >>> I will try to checkout the latest version (3122) of Chiba from: >>> https://chibaxforms.org/svn/repos/trunk to confirm your test results. >>> >>> >> The trunk isn't anymore the latest Chiba version since we changed our >> Subversion organization and policies (see >> https://www.chibaxforms.org/cgi-bin/trac.cgi/wiki/SubversionUsage). >> >> The latest Chiba versions are now placed at >> https://chibaxforms.org/svn/repos/unstable while >> https://chibaxforms.org/svn/repos/trunk is reserved for stable release >> version. >> >> I'm not sure if it makes sense to fix your issue >> (https://www.chibaxforms.org/cgi-bin/trac.cgi/ticket/418) for Chiba-Web >> 2.1.x since the JavaScript API for Chiba Web 2.5 will be completely >> redesigned (every control will then be a widget) + Dojo 1.0 will be >> implemented. All this takes place at >> https://chibaxforms.org/svn/repos/branches/dojo09-2 >> >> Cheers >> >> Lars >> >> >>> 2008/1/24, Adam Retter <adam.retter@...>: >>> >>> >>>> Okay firstly - I am using Firefox 2.0.0.11 on Ubuntu 7.04 with >>>> Chiba-Web-2.2.0 in Tomcat 6.0.14 with Sun Java 1.6.0_03 >>>> >>>> Issue1 >>>> ====== >>>> I dont get the same results as you, here both the string and date values >>>> disappear as you said you expect :-) >>>> Although, the date picker control does not show up when the form is first >>>> loaded - I guess this is a bug? >>>> >>>> Issue2 >>>> ====== >>>> Yes this happens hear as well - I wonder if it is linked to the date picker >>>> control not appearing on the first load of the form? >>>> >>>> Issue3 >>>> ====== >>>> I cant reproduce the same behaviour here. For me that field seems to accept >>>> any value without in-validating. Again the date picker control does not >>>> appear on the first load of the form, it appears once submit has been >>>> clicked. >>>> >>>> >>>> I dont really work on the scripted side of Chiba so im not sure if I can >>>> help here. Perhaps Joern or Lars could take a look... >>>> >>>> Excellent test cases though :-) >>>> >>>> Cheers Adam. >>>> >>>> >>>> >>>> -----Original Message----- >>>> From: holke visser [mailto:holke.visser@...] >>>> Sent: Thu 24/01/2008 06:25 >>>> To: Adam Retter >>>> Cc: chiba-users@... >>>> Subject: Re: [Chiba-users] Issue: Cannot forget date >>>> >>>> I use chiba in scripted mode. >>>> Attached are the testfiles. >>>> Drop them somewhere in the chiba-web/forms directory >>>> The webpage contains exact instructions to reproduce the problem. >>>> >>>> >>>> 2008/1/23, Adam Retter <adam.retter@...>: >>>> > >>>> > Are you using Chiba in scripted or non-scripted mode and can you provide >>>> > us with an ultra-minimal methodology for re-producing the issue please? >>>> > >>>> > Thanks Adam. >>>> > >>>> > >>>> > -----Original Message----- >>>> > From: chiba-users-bounces@... >>>> > [mailto:chiba-users-bounces@...] On >>>> Behalf Of holke >>>> > visser >>>> > Sent: 20 January 2008 22:17 >>>> > To: chiba-users@... >>>> > Subject: [Chiba-users] Issue: Cannot forget date >>>> > >>>> > >>>> > When I submit a form and the server returns null values for the >>>> > instance elements, then the date control still holds that value I >>>> > entered before submitting. So the date control is out of sync with the >>>> > instance. Below is the code to reproduce the problem. >>>> > >>>> > Does anybody know a solution or a workaround ? >>>> > >>>> > thanx in advance >>>> > >>>> > ------------- >>>> > <?xml version="1.0"?> >>>> > <html xmlns="http://www.w3.org/1999/xhtml"; >>>> > xmlns:xf="http://www.w3.org/2002/xforms"; >>>> > xmlns:ev="http://www.w3.org/2001/xml-events"; >>>> > xmlns:xsd="http://www.w3.org/2001/XMLSchema"; >>>> > >>>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> >>>> > <head> >>>> > <title>CANNOT FORGET DATE</title> >>>> > <xf:model id="xfg_test"> >>>> > >>>> > <xf:instance id="xfg_test" src="data/date.xml"> >>>> > <datamodel xmlns=""> >>>> > <insert> >>>> > <coltext/> >>>> > <coldate/> >>>> > </insert> >>>> > </datamodel> >>>> > </xf:instance> >>>> > >>>> > <xf:submission method="post" replace="instance" >>>> > id="submission_xfg_test" action="data/date.xml"/> >>>> > >>>> > </xf:model> >>>> > >>>> > </head> >>>> > <body> >>>> > <div>Fill in text field and date field</div> >>>> > <div>Click Submit</div> >>>> > <div>The text value dissapears while the date value remains.</div> >>>> > <br/> >>>> > <div>Instance src xmlfile contains only null values</div> >>>> > <div>Submission action xmlfile contains only null values aswell</div> >>>> > <div>replace="instance"</div> >>>> > >>>> > >>>> > <xf:group appearance="minimal"> <xf:label>CANNOT FORGET DATE</xf:label> >>>> > >>>> > <!--INSERT--> >>>> > <xf:repeat nodeset="insert" id="insert-repeat"> >>>> > <xf:input ref="coltext"> <xf:label>Text Field</xf:label> >>>> > </xf:input> >>>> > <xf:input ref="coldate" > <xf:label>Date Field</xf:label> >>>> > </xf:input> >>>> > </xf:repeat> >>>> > >>>> > <xf:submit submission="submission_xfg_test"> >>>> > <xf:label>Submit</xf:label> >>>> > </xf:submit> >>>> > <!--INSERT--> >>>> > >>>> > </xf:group> >>>> > </body> >>>> > </html> >>>> > >>>> > ------------- >>>> > date.xml >>>> > ------------- >>>> > <?xml version="1.0" encoding="iso-8859-1"?> >>>> > <xfg_test >>>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; >>>> > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> >>>> > <insert> >>>> > <coltext xsi:type="xsd:string" xsi:nil="true"></coltext> >>>> > <coldate xsi:type="xsd:date" xsi:nil="true"></coldate> >>>> > </insert> >>>> > </xfg_test> >>>> > >>>> > >>>> ------------------------------------------------------------------------ >>>> > - >>>> > This SF.net email is sponsored by: Microsoft >>>> > Defy all challenges. Microsoft(R) Visual Studio 2008. >>>> > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>>> > _______________________________________________ >>>> > Chiba-users mailing list >>>> > Chiba-users@... >>>> > https://lists.sourceforge.net/lists/listinfo/chiba-users >>>> > >>>> >>>> >>>> >>>> >>>> >>>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Microsoft >>> Defy all challenges. Microsoft(R) Visual Studio 2008. >>> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >>> _______________________________________________ >>> Chiba-users mailing list >>> Chiba-users@... >>> https://lists.sourceforge.net/lists/listinfo/chiba-users >>> >>> >> |
From: holke visser <holke.visser@gm...> - 2008-01-24 13:02:55
|
Hi Lars, Ok, I understand that bugfixing of old release is not a good idea. That is why I wanted to use the latest release of Chiba. Can you tell me how I can build a war file from the https://chibaxforms.org/svn/repos/unstable source. I have Maven already installed. Thanx Holke 2008/1/24, Lars Windauer <lars.windauer@...>: > > > I will try to checkout the latest version (3122) of Chiba from: > > https://chibaxforms.org/svn/repos/trunk to confirm your test results. > > > The trunk isn't anymore the latest Chiba version since we changed our > Subversion organization and policies (see > https://www.chibaxforms.org/cgi-bin/trac.cgi/wiki/SubversionUsage). > > The latest Chiba versions are now placed at > https://chibaxforms.org/svn/repos/unstable while > https://chibaxforms.org/svn/repos/trunk is reserved for stable release > version. > > I'm not sure if it makes sense to fix your issue > (https://www.chibaxforms.org/cgi-bin/trac.cgi/ticket/418) for Chiba-Web > 2.1.x since the JavaScript API for Chiba Web 2.5 will be completely > redesigned (every control will then be a widget) + Dojo 1.0 will be > implemented. All this takes place at > https://chibaxforms.org/svn/repos/branches/dojo09-2 > > Cheers > > Lars > > > > > 2008/1/24, Adam Retter <adam.retter@...>: > > > >> > >> > >> Okay firstly - I am using Firefox 2.0.0.11 on Ubuntu 7.04 with > >> Chiba-Web-2.2.0 in Tomcat 6.0.14 with Sun Java 1.6.0_03 > >> > >> Issue1 > >> ====== > >> I dont get the same results as you, here both the string and date values > >> disappear as you said you expect :-) > >> Although, the date picker control does not show up when the form is first > >> loaded - I guess this is a bug? > >> > >> Issue2 > >> ====== > >> Yes this happens hear as well - I wonder if it is linked to the date picker > >> control not appearing on the first load of the form? > >> > >> Issue3 > >> ====== > >> I cant reproduce the same behaviour here. For me that field seems to accept > >> any value without in-validating. Again the date picker control does not > >> appear on the first load of the form, it appears once submit has been > >> clicked. > >> > >> > >> I dont really work on the scripted side of Chiba so im not sure if I can > >> help here. Perhaps Joern or Lars could take a look... > >> > >> Excellent test cases though :-) > >> > >> Cheers Adam. > >> > >> > >> > >> -----Original Message----- > >> From: holke visser [mailto:holke.visser@...] > >> Sent: Thu 24/01/2008 06:25 > >> To: Adam Retter > >> Cc: chiba-users@... > >> Subject: Re: [Chiba-users] Issue: Cannot forget date > >> > >> I use chiba in scripted mode. > >> Attached are the testfiles. > >> Drop them somewhere in the chiba-web/forms directory > >> The webpage contains exact instructions to reproduce the problem. > >> > >> > >> 2008/1/23, Adam Retter <adam.retter@...>: > >> > > >> > Are you using Chiba in scripted or non-scripted mode and can you provide > >> > us with an ultra-minimal methodology for re-producing the issue please? > >> > > >> > Thanks Adam. > >> > > >> > > >> > -----Original Message----- > >> > From: chiba-users-bounces@... > >> > [mailto:chiba-users-bounces@...] On > >> Behalf Of holke > >> > visser > >> > Sent: 20 January 2008 22:17 > >> > To: chiba-users@... > >> > Subject: [Chiba-users] Issue: Cannot forget date > >> > > >> > > >> > When I submit a form and the server returns null values for the > >> > instance elements, then the date control still holds that value I > >> > entered before submitting. So the date control is out of sync with the > >> > instance. Below is the code to reproduce the problem. > >> > > >> > Does anybody know a solution or a workaround ? > >> > > >> > thanx in advance > >> > > >> > ------------- > >> > <?xml version="1.0"?> > >> > <html xmlns="http://www.w3.org/1999/xhtml"; > >> > xmlns:xf="http://www.w3.org/2002/xforms"; > >> > xmlns:ev="http://www.w3.org/2001/xml-events"; > >> > xmlns:xsd="http://www.w3.org/2001/XMLSchema"; > >> > > >> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> > >> > <head> > >> > <title>CANNOT FORGET DATE</title> > >> > <xf:model id="xfg_test"> > >> > > >> > <xf:instance id="xfg_test" src="data/date.xml"> > >> > <datamodel xmlns=""> > >> > <insert> > >> > <coltext/> > >> > <coldate/> > >> > </insert> > >> > </datamodel> > >> > </xf:instance> > >> > > >> > <xf:submission method="post" replace="instance" > >> > id="submission_xfg_test" action="data/date.xml"/> > >> > > >> > </xf:model> > >> > > >> > </head> > >> > <body> > >> > <div>Fill in text field and date field</div> > >> > <div>Click Submit</div> > >> > <div>The text value dissapears while the date value remains.</div> > >> > <br/> > >> > <div>Instance src xmlfile contains only null values</div> > >> > <div>Submission action xmlfile contains only null values aswell</div> > >> > <div>replace="instance"</div> > >> > > >> > > >> > <xf:group appearance="minimal"> <xf:label>CANNOT FORGET DATE</xf:label> > >> > > >> > <!--INSERT--> > >> > <xf:repeat nodeset="insert" id="insert-repeat"> > >> > <xf:input ref="coltext"> <xf:label>Text Field</xf:label> > >> > </xf:input> > >> > <xf:input ref="coldate" > <xf:label>Date Field</xf:label> > >> > </xf:input> > >> > </xf:repeat> > >> > > >> > <xf:submit submission="submission_xfg_test"> > >> > <xf:label>Submit</xf:label> > >> > </xf:submit> > >> > <!--INSERT--> > >> > > >> > </xf:group> > >> > </body> > >> > </html> > >> > > >> > ------------- > >> > date.xml > >> > ------------- > >> > <?xml version="1.0" encoding="iso-8859-1"?> > >> > <xfg_test > >> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; > >> > xmlns:xsd="http://www.w3.org/2001/XMLSchema"> > >> > <insert> > >> > <coltext xsi:type="xsd:string" xsi:nil="true"></coltext> > >> > <coldate xsi:type="xsd:date" xsi:nil="true"></coldate> > >> > </insert> > >> > </xfg_test> > >> > > >> > > >> ------------------------------------------------------------------------ > >> > - > >> > This SF.net email is sponsored by: Microsoft > >> > Defy all challenges. Microsoft(R) Visual Studio 2008. > >> > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> > _______________________________________________ > >> > Chiba-users mailing list > >> > Chiba-users@... > >> > https://lists.sourceforge.net/lists/listinfo/chiba-users > >> > > >> > >> > >> > >> > >> > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Chiba-users mailing list > > Chiba-users@... > > https://lists.sourceforge.net/lists/listinfo/chiba-users > > > > |