[web2py] web2py Conference Management System

2010-05-26 Thread KR
Hello, There is a Vimeo screencast (http://www.vimeo.com/1838049) about a web2py Conference Management System. Does anybody know wher I can download the soource code of that ?

[web2py] Re: web2py Conference Management System

2010-05-31 Thread KR
gt; > I will look over this in June, and look at merging back (there are > things in the base web2conf that need cleanup, updates - which looks > like Mariano made many). > > - Yarko > > On May 26, 2:32 pm, Mariano Reingart wrote: > > > On Wed, May 26, 2010 at

[web2py] Submenus and IE6

2010-06-16 Thread KR
Hi, I have the same problem as in that thread : Submenus and IE6 ( http://groups.google.be/group/web2py/browse_thread/thread/5b80149ee6cb508b/61fd3cb44109803e ) To make sure that I didn't messed all up, I installed a fresh new 1.19.2 web2py and I tried on the welcome/default/index page. On my win

[web2py] Re: Submenus and IE6

2010-06-16 Thread KR
. On 16 juin, 13:01, KR wrote: > Hi, > > I have the same problem as in that thread : Submenus and IE6 > (http://groups.google.be/group/web2py/browse_thread/thread/5b80149ee6c... > ) > > To make sure that I didn't messed all up, I installed a fresh new > 1.19.2 web2py

[web2py] Re: Submenus and IE6

2010-06-16 Thread KR
1.79.2 not 1.19.2 (in the first mail) On 16 juin, 13:01, KR wrote: > Hi, > > I have the same problem as in that thread : Submenus and IE6 > (http://groups.google.be/group/web2py/browse_thread/thread/5b80149ee6c... > ) > > To make sure that I didn't messed all u

[web2py] Re: url rewrite for SEO optimization

2010-06-16 Thread KR
routes.py is the way to do it it's a standard file of web2py On 16 juin, 20:36, Michelle Jun wrote: > hi > > i am wondering if i can do these things > > for example, i have list of businesses url links (this is generated > from my web2py default) > > http://domain.com/default/business/8http://dom

[web2py] Re: Submenus and IE6

2010-06-17 Thread KR
n my post, they were no answers :-( Thanks for web2py anyway. It's more than great. On 16 juin, 17:40, KR wrote: > Hi again, > > I just installed web2py 1.75.5 (according to the VERSION file, I > downloaded the 1.75.4:http://web2py.com/examples/static/1.75.4/web2py_src.zip) > an

[web2py] Re: SSL & admin

2010-06-21 Thread KR
http://web2pyslices.com/main/slices/take_slice/71 On 21 juin, 19:42, oncle_bob wrote: > I can't configure a ssl virtualhost. > > How can I bypass the ssl requirement for admin page ? > > Thank you. > > Julien

[web2py] Re: Password verification - how to?

2010-07-05 Thread KR
Do you have somewhere in your code TD=something ? On 6 juil, 01:18, elfuego1 wrote: > Can you please tell me yet how to implement it, so it would start > working in my form and verify the password? > When I add it to view: user.html or controller default.py then I > receive: > TypeError: 'TD' obj

[web2py] Re: IS_DATETIME validator bug

2010-08-25 Thread KR
maybe Field('When_Actually_Delivered','datetime', requires = IS_NULL_OR(IS_DATETIME())), On 25 août, 11:58, Andrew Buchan wrote: > Hello, > > I'm getting an error report using > > Field('When_Actually_Delivered', requires = > IS_NULL_OR(IS_DATETIME())), > > The form is created with SQLFORM, and t

[web2py] Re: The stability of web2py releases

2010-12-22 Thread KR
I support that. For me the last stable is 1.89.5 (or maybe 1.90.6 ? if the new DAL is stable) The only missing stuff is a place to download it. On 22 déc, 15:49, Branko Vukelić wrote: > On Wed, Dec 22, 2010 at 3:44 PM, appydev wrote: > > I think there should be a version, not to call it ... , >

[web2py] Re: Auto reload of file

2010-12-29 Thread KR
I don't use Eclipse anymore but I can just tell that on my ubuntu box I never need to restart the server when I edit a file in the application folder (that is Model, View or Controller) and I tought that web2py works like that. If you work in the framework itself, I think that stop and start is a

[web2py] Re: Python job oportunity

2010-12-30 Thread KR
On Dec 30, 10:34 am, Kenneth Lundström wrote: > Maybe they need perfect English as the don t have it? > :-) ... and now we know why they need "creative young developers" ... ;-) > Kenneth > > On Dec 29, 8:29 pm, Bruno Rocha wrote: > > >> for me it worked very well. > > Same.  One thing that

[web2py] Web2py request different behavior on local and online version (server code executes, but returns 404

2016-08-16 Thread Ur. Kr.
On my local version of the application, making the request with the following code, executes the code on the server, returning successfully. $.ajax({ type: 'POST', url: "{{=URL('default', 'serverFunction.json')}}", data: {id: id}}); However, if I make the request like so (without '.json' a

[web2py] How to serve same view for multiple urls

2018-03-15 Thread Ur. Kr.
If you want to convert part of a web2py app into an SPA with client-side routing, how do you make web2py serve the same view for multiple urls? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/

[web2py] Re: How to serve same view for multiple urls

2018-03-15 Thread Ur. Kr.
Would also need a way to redirect to "index" controller instead of getting "invalid controller" when navigating to a URL without a controller. On Thursday, March 15, 2018 at 11:28:33 AM UTC+1, Ur. Kr. wrote: > > If you want to convert part of a web2py app into an SPA w

Re: [web2py] Re: How to serve same view for multiple urls

2018-03-15 Thread Ur. Kr.
SPA are heavly javascript based. > > Take a look on discussions on Vue.js > > On Thu, Mar 15, 2018 at 11:53 AM, Ur. Kr. > wrote: > >> Would also need a way to redirect to "index" controller instead of >> getting "invalid controller" when navigating to

[web2py] Is it possible to trigger some action on error?

2018-06-03 Thread Ur. Kr.
Is it possible to trigger some action when an error occurs? When an error file is added to the errors folder. -- 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)

[web2py] Re: Is it possible to trigger some action on error?

2018-06-03 Thread Ur. Kr.
om error handler (see > http://web2py.com/books/default/chapter/29/04/the-core#Routes-on-error) > and have it take whatever action is desired before returning a response. > > Anthony > > On Sunday, June 3, 2018 at 9:15:04 AM UTC-4, Ur. Kr. wrote: >> >> Is it possible t

[web2py] Re: How to force an update to the scheduler schema

2018-07-25 Thread Ur. Kr.
scheduler = Scheduler(db, migrate=True) Doesn't recreate tables for me when I rerun the scheduler. On Tuesday, May 23, 2017 at 8:03:13 PM UTC+2, Dave S wrote: > > > > On Tuesday, May 23, 2017 at 5:30:08 AM UTC-7, Brad Miller wrote: >> >> Due to a forced migration to new hardware/os on webfaction,

[web2py] Scheduler migrate=True doesn't recreate tables

2018-07-25 Thread Ur. Kr.
scheduler = Scheduler(db, migrate=True) This doesn't recreate tables for me when I rerun the scheduler and the application. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list

[web2py] Re: Scheduler migrate=True doesn't recreate tables

2018-07-25 Thread Ur. Kr.
UTC-4, Ur. Kr. wrote: >> >> >> scheduler = Scheduler(db, migrate=True) >> This doesn't recreate tables for me when I rerun the scheduler and the >> application. >> > > Have the tables already been created once? If so, they will not be > re-creat

[web2py] Re: Scheduler migrate=True doesn't recreate tables

2018-07-25 Thread Ur. Kr.
Web2py\gluon\scheduler.py The commit under the if around line 878 does run. On Wednesday, July 25, 2018 at 9:19:33 PM UTC+2, Ur. Kr. wrote: > > I have dropped the tables relating to the scheduler from the old database > because I moved to a newer version of web2py. I want the sch

[web2py] pg8000.errors.ProgrammingError 'no result set' when querying database from module

2019-01-01 Thread Ur. Kr.
Web2py version: Version 2.8.2-stable+timestamp.2013.11.28.07.51.37 in a module, I'm setting up a db object like so: from gluon import current db = current.globalenv['db'] But when I try whatever query the database inside that module, I get an error: gluon.contrib.pg8000.errors.ProgrammingError

[web2py] Cross-domain authentication for REST api

2017-03-28 Thread Ur. Kr.
We need to make a REST api service for our website that will be accessed from arbitrary domains by partner companies, but we're having trouble with authentication. We tried auth.is_logged_in(), but the problem is that login doesn't seem to work cross domain. A session is created on the server,

[web2py] How to connect MYSQL database in web2py

2018-01-31 Thread vinu KR
Dear all, Am new to web2py, I need how to connect the MYSQL database in web2py. Kindly help us -- 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 recei

[web2py] Migration not creating new fields/tables after restore from an old backup the database

2019-07-31 Thread Ur. Kr.
This are my migration settings: DAL(settings.database_uri, migrate=True, fake_migrate_all=True) When I add new tables of fields on the development version of the app they are added properly. However, if I create a backup of the production database (missing the newly added fields/tables) and I us