Re: [basex-talk] http server ... outsider localhost

2012-12-31 Thread Andy Bunce
Hi Peter, I wonder if this problem is related to a change I suggested to the webapps/WEB_INF/jetty.xml file. Do you still get the problem if you remove the line below and restart? Set name=hostSystemProperty name=org.basex.serverhost default=//Set Or if you change default= to default=0.0.0.0

Re: [basex-talk] how to pass raw bytes intact?

2012-12-31 Thread Liam R E Quin
On Tue, 2013-01-01 at 10:52 +0800, jida...@jidanni.org wrote: I'm just trying to find a way to remove the wbr/ injected here, $ echo 'A你好/A'|perl -pwle 's![^[:ascii:]]!$wbr/!'|qprint -e A=E4wbr/=BD=A0=E5=A5=BD/A I don't have a qprint command on my system, so I'm not sure what's going on for

Re: [basex-talk] how to pass raw bytes intact?

2012-12-31 Thread jidanni
LREQ Your perl substitution is putting wbr/ after the first non-ascii LREQ character on the line, and 你 is for sure not an ascii character, LREQ so you get wbr/ after it. Not exactly after it. 1/3 of the way through it. I.e., shattered UTF-8. I was just curious if there was a way in basex if I