unsubscribe

2017-08-02 Thread Mitch Sewart
--- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus

unsubscribe

2017-08-02 Thread Brian Barnes

Re: Log and special characters

2017-08-02 Thread tomcat
On 02.08.2017 11:25, Ben RUBSON wrote: We would then be able to correctly log 'André' Actually, this is how I most often get it, on the web and in scam emails : "Hi André," To the savvy and experienced multilingual-application-programming expert, this of course is entirely transparent : -

Re: MP framework

2017-08-02 Thread Perrin Harkins
You can run Dancer on mod_perl using Plack. The Dancer documentation covers it. Or there's Catalyst. These frameworks are trying to be independent of the web server they run on, so they don't tie in to mod_perl beyond taking advantage of the speed. That doesn't stop you from mixing them with

Re: Log and special characters

2017-08-02 Thread tomcat
On 02.08.2017 11:25, Ben RUBSON wrote: On 02 Aug 2017, at 11:17, André Warnier (tomcat) wrote: On 02.08.2017 10:59, Ben RUBSON wrote: On 02 Aug 2017, at 10:52, André Warnier (tomcat) wrote: On 01.08.2017 19:30, Ben RUBSON wrote: Hi, The following

Re: MP framework

2017-08-02 Thread tomcat
On 02.08.2017 11:49, 风河 wrote: We actually use both dancer and modperl. but dancer works separately, it doesn't require modperl installed. So I was asking if there is a framework for modperl which behaves as something like dancer. This is a bit vague as a question, for anyone to provide an

Re: MP framework

2017-08-02 Thread 风河
We actually use both dancer and modperl. but dancer works separately, it doesn't require modperl installed. So I was asking if there is a framework for modperl which behaves as something like dancer. On Wed, Aug 2, 2017, at 05:42 PM, André Warnier (tomcat) wrote: > On 02.08.2017 11:19, 风河 wrote:

Re: MP framework

2017-08-02 Thread tomcat
On 02.08.2017 11:19, 风河 wrote: Hi currently we were developing the methods mostly as handlers. is there a new popular framework for full stack development of modperl? Yes, many. See here : http://lmgtfy.com/?q=perl+web+development+frameworks We (still) use Template::Toolkit, which many

unsubscribe

2017-08-02 Thread Timon Roth

Re: Log and special characters

2017-08-02 Thread Ben RUBSON
> On 02 Aug 2017, at 11:17, André Warnier (tomcat) wrote: > > On 02.08.2017 10:59, Ben RUBSON wrote: >> >>> On 02 Aug 2017, at 10:52, André Warnier (tomcat) wrote: >>> >>> On 01.08.2017 19:30, Ben RUBSON wrote: Hi, The following UTF-8 :

Re: Log and special characters

2017-08-02 Thread Eric Aarts
What a stunning coincidence… 风河 starting a new conversation ‘MP framework’ just after André his reply on ‘Log and special characters’. Totally agree with you André, as we serve customers all over Europe and in China. Regards, Eric On Wed, Aug 2, 2017 at 11:17 AM, André Warnier (tomcat)

MP framework

2017-08-02 Thread 风河
Hi currently we were developing the methods mostly as handlers. is there a new popular framework for full stack development of modperl? thanks.

Re: Log and special characters

2017-08-02 Thread tomcat
On 02.08.2017 10:59, Ben RUBSON wrote: On 02 Aug 2017, at 10:52, André Warnier (tomcat) wrote: On 01.08.2017 19:30, Ben RUBSON wrote: Hi, The following UTF-8 : warn("warn with special char ééèè"); $r->log->error("log with special char ééèè"); Produces : warn with special

Re: Log and special characters

2017-08-02 Thread tomcat
On 01.08.2017 19:30, Ben RUBSON wrote: Hi, The following UTF-8 : warn("warn with special char ééèè"); $r->log->error("log with special char ééèè"); Produces : warn with special char ééèè at ... [Tue Aug 01 19:25:28.914947 2017] [perl:error] [pid 56938] [client 127.0.0.1:59952] log with

Re: Log and special characters

2017-08-02 Thread Ben RUBSON
> On 01 Aug 2017, at 19:30, Ben RUBSON wrote: > > $r->log->error("log with special char ééèè"); > > [Tue Aug 01 19:25:28.914947 2017] [perl:error] [pid 56938] [client > 127.0.0.1:59952] log with special char \xc3\xa9\xc3\xa9\xc3\xa8\xc3\xa8 > > Why all these \x symbols ?