[web2py] Re: problem with import type field data

2016-08-02 Thread dfprojects
no help ? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group.

[web2py] Host configuration

2016-08-02 Thread Gael Princivalle
Hello. Someone can give some examples about the use of the Host configuration in appconfig.ini? Thanks. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) ---

Re: [web2py] Re: jquery-pjax

2016-08-02 Thread António Ramos
any demo with web2py? 2016-06-18 14:04 GMT+01:00 Massimo Di Pierro : > Nice library. It is a lot like web2py components but better. Perhaps > web3py should use pjax.js > > > On Tuesday, 14 June 2016 09:48:44 UTC-5, Niphlod wrote: >> >> great, simple, done. >> >> On Tuesday, June 14, 2016 at 2:34

[web2py] Web2Py tool: Amazon SNS integration

2016-08-02 Thread madhu nomula
Hi All, We have implemented a tool in web2py tool. Now we have to implement sending the stored data(tables information) to Amazon SNS. Can you please help me how to move the stored data to Amazon SNS. Thank you and appreciate your help in advance. Regards, MC -- Resources: - http://web2py.

[web2py] Web2py tool : Send emails to multiple user on schedule basis

2016-08-02 Thread madhu nomula
Hi All, I need help on below requirement. We have implemented Time sheet logging tool for users in web2py tool. Now the requirement is to send email notifications to the users of tool, to enter time sheet and submit. This email has to be sent for all users from 1 to 15 days of month and 16 to

[web2py] Re: problem with import type field data

2016-08-02 Thread Dave S
On Tuesday, August 2, 2016 at 10:21:01 AM UTC-7, dfpro...@gmail.com wrote: > > no help ? Sorry, I didn't see anything on my first look, so I was waiting for someone else to chime in. The symptoms in the message with the sample aren't quite the same as in the original post. Are you getting t

[web2py] Re: Web2py tool : Send emails to multiple user on schedule basis

2016-08-02 Thread Dave S
On Tuesday, August 2, 2016 at 10:51:36 AM UTC-7, madhu nomula wrote: > > Hi All, > > I need help on below requirement. > > We have implemented Time sheet logging tool for users in web2py tool. > > Now the requirement is to send email notifications to the users of tool, > to enter time sheet and

Re: [web2py] Re: jquery-pjax

2016-08-02 Thread Ricardo Pedroso
On 8/2/16, António Ramos wrote: > any demo with web2py? I'm using it at http://missportuguesa.pt in a simple way. in my first model file: request.pjax = True if request.env.get('HTTP_X_PJAX') == 'true' else False In layout.html: (...) Home Some page (...) {{ block content }

[web2py] Upgrade from 2.5.1 to latest

2016-08-02 Thread Tito Garrido
Hi Folks, I am trying to upgrade my web2py from 2.5.1 to latest and the appadmin text editor breaks... I have tried to get appadmin.html, layout.hmt and some js files from the Welcome app but it still complains: TypeError: editor is undefined var data = editor.getValue(); What is the best way

Re: [web2py] Re: jquery-pjax

2016-08-02 Thread Dave S
On Tuesday, August 2, 2016 at 12:04:08 PM UTC-7, Ricardo Pedroso wrote: > > On 8/2/16, António Ramos > wrote: > > any demo with web2py? > > I'm using it at http://missportuguesa.pt in a simple way. > > [detailed example] > Thanks, your code looks good (clear!) and the pjax readme at the githu

[web2py] Re: Upgrade from 2.5.1 to latest

2016-08-02 Thread Dave S
On Tuesday, August 2, 2016 at 1:09:39 PM UTC-7, Tito Garrido wrote: > > Hi Folks, > > I am trying to upgrade my web2py from 2.5.1 to latest and the appadmin > text editor breaks... I have tried to get appadmin.html, layout.hmt and > some js files from the Welcome app but it still complains: > >

[web2py] Re: Host configuration

2016-08-02 Thread Ron Chatterjee
I was thinking the same Gael. How we set up a web2py app if we get a brand new server and put that in a data center or lets say in a dedicated server including scheduler. On Tuesday, August 2, 2016 at 1:23:18 PM UTC-4, Gael Princivalle wrote: > > Hello. > > Someone can give some examples abou

[web2py] Re: Host configuration

2016-08-02 Thread Dave S
On Tuesday, August 2, 2016 at 10:23:18 AM UTC-7, Gael Princivalle wrote: > > Hello. > > Someone can give some examples about the use of the Host configuration in > appconfig.ini? > > Thanks. > If your question is about the [host] block in appconfig.ini, the one setting in the block is 'name',

[web2py] list:integer and list:string not respecting show_if parameter, patch included

2016-08-02 Thread Tim Alexander
The subject line pretty much says it all, the list:integer and list:string data types don't appear to respect the show_if parameter (from this section in the book). I needed them to, and had a workaround in js f

Re: [web2py] Web2py and WebRTC?

2016-08-02 Thread Ron Chatterjee
This may help. Its a django app. Someone needs to take a stab at this to convert into web2py. https://github.com/craigmadden/videochat On Sunday, July 28, 2013 at 8:42:19 PM UTC-4, Vinicius Assef wrote: > > WebRTC has nothing to do with web2py. > > It's a client specification, concerning bas

[web2py] Re: Web2Py tool: Amazon SNS integration

2016-08-02 Thread Kiran Subbaraman
Am assuming you are aware of the Amazon SNS APIs, and what it takes to publish messages there (as a producer / publisher) Do you want to read data from your database, and publish them to SNS on a: * Regular scheduled basis? * Whenever new data comes into the database? In either case, I would use

[web2py] Re: URL based internationalization and pattern router

2016-08-02 Thread Carlos Cesar Caballero
Hi, first sorry for the late reply, but I am on vacations and offline most of the time. Here is an example on how we use the Yii2 framework router: 'urlManager' => [ 'class' => \frontend\components\UrlManager::className(), 'enablePrettyUrl' => true, 'showS