Re: [Xsltforms-support] Xsltforms-support Digest, Vol 7, Issue 2
Brought to you by:
alain-couthures
From: Dominique R. <dr...@gm...> - 2009-12-04 21:25:36
|
Just a little remark Problems about XSLTForms with environment dependencies such IIS versions, Java Tools, Browser version are not mainly areas of concern for XForms XSLTForms was made because none of browsers were able to provide XForms Turn around of browsers bugs cost is about tens of $ billions since 1995 Just a little remark Dominique Rabeuf XSLTForms Support since April 2009 2009/12/4 <xsl...@li...> > Send Xsltforms-support mailing list submissions to > xsl...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > or, via email, send a message with subject or body 'help' to > xsl...@li... > > You can reach the person managing the list at > xsl...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xsltforms-support digest..." > > > Today's Topics: > > 1. exist xml db 'Task Manager' example xforms (Stephen Cameron) > 2. Re: exist xml db 'Task Manager' example xforms (Wolfgang Meier) > 3. Forms are not loading after redirect (Wojtek) > 4. Forms are not loading after redirect (Wojtek) > 5. .properties files (Jason Kleban) > 6. JQuery & styling advice (Jason Kleban) > 7. Re: Forms are not loading after redirect (Klotz, Leigh) > 8. Re: Forms are not loading after redirect (Wojtek) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 03 Dec 2009 09:59:11 +1100 > From: Stephen Cameron <Ste...@ut...> > Subject: [Xsltforms-support] exist xml db 'Task Manager' example > xforms > To: xsl...@li... > Message-ID: <4B1...@ut...> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Can someone please tell me how to access the untranslated xforms for the > exist 'Task Manager' demo, I want to know how the 'Edit Projects' button > is implemented. > > I've downloaded and installed exist but cannot see the forms in the db > via the java admin client??? > > Thanks! > > -- > Regards > > Stephen Cameron > > Data Programmer > Integrated Marine Observing System (IMOS) > eMarine Information Infrastructure Project > University of Tasmania, Private Bag 21, Hobart, TAS 7001, Australia > > Tel: +61 3 6226 8507 > Fax: +61 3 6226 2997 > Email: ste...@ut... > URL: http://www.imos.org.au/eMII.html > > > > > ------------------------------ > > Message: 2 > Date: Thu, 3 Dec 2009 00:02:04 +0100 > From: Wolfgang Meier <wol...@ex...> > Subject: Re: [Xsltforms-support] exist xml db 'Task Manager' example > xforms > To: Stephen Cameron <Ste...@ut...> > Cc: xsl...@li... > Message-ID: > <19f...@ma...> > Content-Type: text/plain; charset=UTF-8 > > > Can someone please tell me how to access the untranslated xforms for the > > exist 'Task Manager' demo, I want to know how the 'Edit Projects' button > > is implemented. > > Please have a look at > > webapp/xforms/tasks/todo-list.xml > > in eXist's installation directory. This file contains the entire > xforms code for the app. > > Wolfgang > > > > ------------------------------ > > Message: 3 > Date: Fri, 04 Dec 2009 01:13:48 +0100 > From: Wojtek <spa...@ju...> > Subject: [Xsltforms-support] Forms are not loading after redirect > To: xsl...@li... > Message-ID: <4B1...@ju...> > Content-Type: text/plain; charset=ISO-8859-2; format=flowed > > Hi, > > I'm pretty new in the subject of XForms and of XSLTForms. I am creating > an application using JSP, and I try to use XSLTForms, but I faced the > problem, which looks like belongs to XSLTForms. > > After submitting a form, i redirect back to the form using: > <jsp:forward> > ( i have also tried with pageContext.forward() ) > but after succesful redirection forms are not loading. Page looks like > without XSLTForms. It is still the same page, which was properly > rendered a while ago before redirection, source looks the same. Anybody > has the idea what the problem might be? > > I have tested the same case with Mozilla XForms and it worked. > > Thanks for help! > Wojtek > > > > ------------------------------ > > Message: 4 > Date: Fri, 04 Dec 2009 01:26:02 +0100 > From: Wojtek <spa...@ju...> > Subject: [Xsltforms-support] Forms are not loading after redirect > To: xsl...@li... > Message-ID: <4B1...@ju...> > Content-Type: text/plain; charset=ISO-8859-2; format=flowed > > Hi, > > I'm pretty new in the subject of XForms and of XSLTForms. I am creating > an application using JSP, and I try to use XSLTForms, but I faced the > problem, which looks like belongs to XSLTForms. > > After submitting a form, i redirect back to the form using: > <jsp:forward> > ( i have also tried with pageContext.forward() ) > but after succesful redirection forms are not loading. Page looks like > without XSLTForms. It is still the same page, which was properly > rendered a while ago before redirection, source looks the same. Anybody > has the idea what the problem might be? > > I have tested the same case with Mozilla XForms and it worked. > > Thanks for help! > Wojtek > > > > > ------------------------------ > > Message: 5 > Date: Fri, 4 Dec 2009 08:47:47 -0800 > From: Jason Kleban <ja...@bi...> > Subject: [Xsltforms-support] .properties files > To: xsl...@li... > Message-ID: > <4c7...@ma...> > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > Some information about compatibility with IIS and ASP.Net: > > I've gotten the XSLTForms to work properly on IIS, delivered as dynamically > generated ASPX page rather than a static xml - I don't know if anyone has > worked on that already but I'd be happy to share tips. > > One compatibility issue that I've noticed is that the .properties files, > such as messages.properties, are not servered by IIS (7.0 in my case) by > default. In such a scenario, the date-picker will not function correctly, > among other problems. Once you realize that the resources won't load, it > is > easy to add the mime-type in the IIS msc panel if you have rights. I added > .properties to have a mimetype of text/plain and that fixes it. If > possible, I'd recommend changing .properties to something else, but I don't > have any recommendation of what the extension should be. > > Rather than putting the mime-type in the IIS configuration, I've just read > that it can be done at the web.config level: > > <configuration> > <system.webServer> > <staticContent> > <mimeMap fileExtension=".properties" mimeType="text/plain" /> > </staticContent> > </system.webServer> > </configuration> > > Jason Kleban > 949 259 3923 > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 6 > Date: Fri, 4 Dec 2009 08:34:33 -0800 > From: Jason Kleban <ja...@bi...> > Subject: [Xsltforms-support] JQuery & styling advice > To: xsl...@li... > Message-ID: > <4c7...@ma...> > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I LOVE this project - I've worked extensively with InfoPath and Forms > Server > to create full-featured forms for product demonstrations. Unfortuately, > InfoPath & Forms Server is so expensive that none of the many mid-large > clients I've worked with will actually budget for it. XForms is neat and > is > one of very few, if not ONLY viable InfoPath alternative, but by itself > still needs a compatible browser/plugin. XSLTForms seems to be a well > implemented solution. So accolades to the creators! > > I've searched the sourceforge list archive, and I've only seen it asked > once, with no answer. What is required to get JQuery working with > XSLTForms? I've figured out some of the CSS issues by following advice to > wrap my external css documents in <css></css> but similar suggestions of > CDATA for javascript is not effective. I can get XSLTForms OR JQuery > functionality, but not both. Is this an XML, an XHTML issue, or an > XSLTForms compatibility issue? > > I'm really only looking to be able to leverage the JQuery UI calendar > control for now which is styled a little fancier than the basic xsltforms > implementation - but I'm sure there will be other places it would be > useful. > > Also, I'm having trouble location information on how to appropraitely style > XSLTForms-generated controls. Is there a guide or some tips? I don't > necessarily want to go all-out with table-less forms layouts, I just want > to > give some inner shadow effects, alignment, and colors. > > Thanks, > > Jason > -------------- next part -------------- > An HTML attachment was scrubbed... > > ------------------------------ > > Message: 7 > Date: Fri, 4 Dec 2009 09:20:47 -0800 > From: "Klotz, Leigh" <Lei...@XE...> > Subject: Re: [Xsltforms-support] Forms are not loading after redirect > To: "Wojtek" <spa...@ju...>, > <xsl...@li...> > Message-ID: > <E25...@US...> > Content-Type: text/plain; charset="iso-8859-1" > > Wojtek, > This may not be your issue, but check the Content-Type header on the > returned HTTP response after the forward. > If it's not application/xml it will not work in IE8 (at least). > Leigh. > > -----Original Message----- > From: Wojtek [mailto:spa...@ju...] > Sent: Thursday, December 03, 2009 4:14 PM > To: xsl...@li... > Subject: [Xsltforms-support] Forms are not loading after redirect > > Hi, > > I'm pretty new in the subject of XForms and of XSLTForms. I am creating an > application using JSP, and I try to use XSLTForms, but I faced the problem, > which looks like belongs to XSLTForms. > > After submitting a form, i redirect back to the form using: > <jsp:forward> > ( i have also tried with pageContext.forward() ) but after succesful > redirection forms are not loading. Page looks like without XSLTForms. It is > still the same page, which was properly rendered a while ago before > redirection, source looks the same. Anybody has the idea what the problem > might be? > > I have tested the same case with Mozilla XForms and it worked. > > Thanks for help! > Wojtek > > > > ------------------------------ > > Message: 8 > Date: Fri, 04 Dec 2009 19:59:31 +0100 > From: Wojtek <spa...@ju...> > Subject: Re: [Xsltforms-support] Forms are not loading after redirect > To: "Klotz, Leigh" <Lei...@XE...> > Cc: xsl...@li... > Message-ID: <4B1...@ju...> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi! > > Thanks for your quick reply. Unfortunately it looks like this is not a > problem. I had Content-type set to text/xml, after changing it to > application/xml it is still the same. Besides, I am not using IE, I work > under Ubuntu, and testing it under Firefox and built-in eclipse browser. > After turning on, Mozilla XForms addon it works fine, after turning of > and attaching XSLTForms it is not working any more - even under Firefox. > But ONLY after redirect, normally it works fine. Of course, it looks > like it is a content-type problem, but if I use firebug and check > headers, they look fine. > > Any other ideas? > Wojtek > > Klotz, Leigh pisze: > > Wojtek, > > This may not be your issue, but check the Content-Type header on the > returned HTTP response after the forward. > > If it's not application/xml it will not work in IE8 (at least). > > Leigh. > > > > -----Original Message----- > > From: Wojtek [mailto:spa...@ju...] > > Sent: Thursday, December 03, 2009 4:14 PM > > To: xsl...@li... > > Subject: [Xsltforms-support] Forms are not loading after redirect > > > > Hi, > > > > I'm pretty new in the subject of XForms and of XSLTForms. I am creating > an application using JSP, and I try to use XSLTForms, but I faced the > problem, which looks like belongs to XSLTForms. > > > > After submitting a form, i redirect back to the form using: > > <jsp:forward> > > ( i have also tried with pageContext.forward() ) but after succesful > redirection forms are not loading. Page looks like without XSLTForms. It is > still the same page, which was properly rendered a while ago before > redirection, source looks the same. Anybody has the idea what the problem > might be? > > > > I have tested the same case with Mozilla XForms and it worked. > > > > Thanks for help! > > Wojtek > > > > > > > ------------------------------ > > > ------------------------------------------------------------------------------ > Join us December 9, 2009 for the Red Hat Virtual Experience, > a free event focused on virtualization and cloud computing. > Attend in-depth sessions from your desk. Your couch. Anywhere. > http://p.sf.net/sfu/redhat-sfdev2dev > > ------------------------------ > > _______________________________________________ > Xsltforms-support mailing list > Xsl...@li... > https://lists.sourceforge.net/lists/listinfo/xsltforms-support > > > End of Xsltforms-support Digest, Vol 7, Issue 2 > *********************************************** > |