[web2py] Re: Less or Sass?

2015-12-29 Thread Gael Princivalle
Hello. I've take this one. https://wrapbootstrap.com/theme/the-project-multipurpose-template-WB0F82581 Someone knows which are the css rules in web2py-bootstrap3.css that I must keep for having all web2py specific generated components like forms and grids to work well? Thanks, regards. Il

[web2py] Re: Oracle drivers.

2015-12-29 Thread Michael Messmer
Submitted. https://github.com/web2py/pydal/issues/322 On Tuesday, December 29, 2015 at 3:18:49 AM UTC-8, Niphlod wrote: > > if it fixes all issues, open a bug on pydal and it'll get merged. > > On Monday, December 28, 2015 at 9:57:52 PM UTC+1, Michael Messmer wrote: >> >> @Niphlod @Massimo >> >>

[web2py] form wizard all steps in one page

2015-12-29 Thread aetagothno
I am forever having trouble with making the form wizard show all the steps in one page, all it shows now is the last batch of form questions instead of the previous batches and although the database gets updated with the entry, a file that is supposed to be uploaded into the database isn't.

[web2py] Re: form wizard all steps in one page

2015-12-29 Thread Anthony
> step = 0 > for i in STEPS: > if step == 0: > session.myformt = {} > fields=STEPS[i] > print "Fields:" + str(fields) + "Trip Day" + str(step) > if isinstance(fields,tuple): > form = SQLFORM.factory(*[f for f in db.myform if f.name

[web2py] Re: why you should upgrade to web2py 2.13.4

2015-12-29 Thread Dave S
On Tuesday, December 29, 2015 at 4:41:31 PM UTC-8, Dave S wrote: > > > See below: > > On Saturday, December 26, 2015 at 12:22:27 AM UTC-8, Massimo Di Pierro > wrote: >> >> There are many reasons you should upgrade, depending on which version you >> are using now: >> >> - to help us make sure

[web2py] Re: why you should upgrade to web2py 2.13.4

2015-12-29 Thread Dave S
See below: On Saturday, December 26, 2015 at 12:22:27 AM UTC-8, Massimo Di Pierro wrote: > > There are many reasons you should upgrade, depending on which version you > are using now: > > - to help us make sure we did not break backward compatibility. If your > existing app does not work with

[web2py] Re: multiple file uploads

2015-12-29 Thread Dave S
On Tuesday, December 29, 2015 at 12:44:08 PM UTC-8, Ron Chatterjee wrote: > > Similar to this: > > > https://groups.google.com/forum/#!searchin/web2py/multiuploads/web2py/XpnUb2_MaRc/ovVMKZ7231oJ > > But for all files. Ofc with a link for all the uploads that can be > downloaded. > > > it

[web2py] Re: multiple file uploads

2015-12-29 Thread Niphlod
multiple in what sense ? that you'd like to initiate several files in a single http request ? On Tuesday, December 29, 2015 at 8:42:02 PM UTC+1, Ron Chatterjee wrote: > > Does anyone can point me to an example of multiple file uploads (not just > image files) > -- Resources: -

[web2py] multiple file uploads

2015-12-29 Thread Ron Chatterjee
Does anyone can point me to an example of multiple file uploads (not just image files) -- 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

[web2py] Re: multiple file uploads

2015-12-29 Thread Ron Chatterjee
Similar to this: https://groups.google.com/forum/#!searchin/web2py/multiuploads/web2py/XpnUb2_MaRc/ovVMKZ7231oJ But for all files. On Tuesday, December 29, 2015 at 3:12:15 PM UTC-5, Niphlod wrote: > > multiple in what sense ? that you'd like to initiate several files in a > single http

[web2py] Re: multiple file uploads

2015-12-29 Thread Ron Chatterjee
Have I not answer you correctly Niphlod? On Tuesday, December 29, 2015 at 3:44:08 PM UTC-5, Ron Chatterjee wrote: > > Similar to this: > > > https://groups.google.com/forum/#!searchin/web2py/multiuploads/web2py/XpnUb2_MaRc/ovVMKZ7231oJ > > But for all files. Ofc with a link for all the uploads

[web2py] Place different response.meta.description on each page

2015-12-29 Thread Joe
Hello, By default meta tags are in menu.py response.meta.author = '' response.meta.description = '' response.meta.keywords = '' response.meta.generator = '' What is the best way to place a unique meta description on each page of the website? Thanks. Cheers, Joe -- Resources: -

[web2py] Re: Have a more complex organize of controller files

2015-12-29 Thread Massimo Di Pierro
It is not a limitation because it does not limit the functionality. It constraints the way you code. The way we see it, it is a feature, not a bug. ;-) Massimo On Sunday, 27 December 2015 03:38:03 UTC-6, Alessio Varalta wrote: > > Ok it's seem to me a big limitation of the framework. You have

[web2py] web2py and authomatic (OAtuh 1 & 2)

2015-12-29 Thread Massimo Di Pierro
I made a PR for authomatic that include an adapter and example to use authomatic with web2py: https://github.com/peterhudec/authomatic/pull/133 Eventually we should integrate it with auth. It is not hard. I can do the coding if somebody wants to help with testing. Massimo -- Resources: -

[web2py] Re: Oracle drivers.

2015-12-29 Thread Niphlod
if it fixes all issues, open a bug on pydal and it'll get merged. On Monday, December 28, 2015 at 9:57:52 PM UTC+1, Michael Messmer wrote: > > @Niphlod @Massimo > > Is what i did a correct fix and is this something that needs to be > corrected here >

[web2py] Re: HTML5 Local storage and web2py

2015-12-29 Thread Niphlod
being something that lives in your browser, the only way is to use javascript. On Tuesday, December 29, 2015 at 3:09:18 AM UTC+1, luis.va...@metamaxzone.com wrote: > > Hello! > > I want to use the HTML5 Local Storage ( > http://diveintohtml5.info/storage.html) to store session and other >

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-29 Thread Massimo Di Pierro
You can do exactly that with web2py 2.13.4 https://github.com/web2py/web2py/blob/master/gluon/tools.py#L1200 except you need two validators instead of one: @auth.allow_jwt() @auth.requires_login() which means that you want allow jwt to give you login-like privileges. if you want you can do

Re: [web2py] web2py 2.13.3 is OUT

2015-12-29 Thread António Ramos
Just a windows machine... so far. its not a finished product yet 2015-12-29 3:56 GMT+00:00 Dave S : > > > On Monday, December 28, 2015 at 3:45:23 PM UTC-8, Ramos wrote: >> >> Vuejs/web components >> http://vuejs.org/guide/application.html >> +semantic ui +some build tools

[web2py] Bug: _before_* callbacks ignores file deletion

2015-12-29 Thread MAbeeTT
Hello everyone, I found am issue with the _before_* callbacks https://github.com/web2py/web2py/issues/1147 I tested the problem with 2.13.4-stable+timestamp.2015.12.26.04.59.39 I need disabling file deletions, while I do a backup. The uploads/ directory has a millions of files, so after the

[web2py] web2py_session already exist

2015-12-29 Thread javitgarcia
Hi. web2py-2.6.3-stable. Environments: - Production db = DAL('mysql://...', migrate=False) -> MySQL remote server - Development: db = DAL('sqlite://...', migrate=False) My production environment is death and I want to setup the development environment. The only difference between them is

[web2py] Re: web2py_session already exist

2015-12-29 Thread Niphlod
is the new db already filled or not ? if so, delete all .table files, set migrate=True and fake_migrate_all=True, hit appadmin one time, then set migrate=False and remove fake_migrate_all. On Tuesday, December 29, 2015 at 11:14:27 AM UTC+1, javit...@gmail.com wrote: > > Hi. > >

Re: [web2py] web2py and authomatic (OAtuh 1 & 2)

2015-12-29 Thread Mathieu Clabaut
Nice ! I'm really interested and ready to give some time in helping for tests. -Mathieu On Tue, Dec 29, 2015 at 10:48 AM Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > I made a PR for authomatic that include an adapter and example to use > authomatic with web2py: > >

[web2py] Re: Have a more complex organize of controller files

2015-12-29 Thread Anthony
On Sunday, December 27, 2015 at 4:38:03 AM UTC-5, Alessio Varalta wrote: > > Ok it's seem to me a big limitation of the framework. > It's not really a limitation, as you can work around it by using modules, as mentioned earlier. It just takes a little more work. So, out of the box, you get very