[web2py] Re: how to intercept password before encryption, if possible?

2012-04-15 Thread Matt Gorecki
. https://gist.github.com/2396242 Matt Gorecki On Sunday, April 15, 2012 9:06:21 PM UTC-6, weheh wrote: I'm building an administrative interface where only the admin can register new users. Upon registering a new user, the system will email login and initial temporary password to user. I'm

[web2py] Not enough infoformation to build URL

2012-04-08 Thread Matt Gorecki
I am completely baffled. After moving my web2py application from one server to another, I keep getting SyntaxError: not enough information to build the url as a result of this line in one of my layout views: {{=URL('static','/images/logo.png')}} This working working on a 1.99.4 install and

[web2py] Re: Not enough infoformation to build URL

2012-04-08 Thread Matt Gorecki
Fantastic. Works great now. I thought I was losing my mind. Matt

[web2py] Re: How to cause radio buttons to auto deselect?

2011-11-26 Thread Matt Gorecki
All of the input tags need to have the same name value. input type=radio name=group1 value=Milk Milkbr input type=radio name=group1 value=Butter checked Butterbr input type=radio name=group1 value=Cheese CheeseBr Matt

[web2py] Re: socket.io Web2Py

2011-11-17 Thread Matt Gorecki
PhotoPops. http://myphotopops.com There isn't much there right now as I just used it in public for the first time last Friday at a local event. I think I'll make that Github repo public when I feel a little more confident about it. Matt Gorecki

[web2py] Re: stripe.com support

2011-11-14 Thread Matt Gorecki
What a coincidence, Massimo. I was just going to start working on Stripe integration today. Matt On Nov 13, 9:28 pm, Massimo Di Pierro massimo.dipie...@gmail.com wrote: I added gluon/contrib/stripe.py it provide a minimalist support for stripe.com payment processing 1) get an account

[web2py] Best practices for packaging an app?

2011-10-28 Thread Matt Gorecki
I've built an app that I'd like to give to someone to use. It's essentially a photo booth program. It's built in web2py, but it also requires node.js, gphoto2, Chrome, as well as some configuration changes to Gnome. What's the best way to package something like this? Can my 'installer' handle

[web2py] Re: web2py with twitter bootstrap - very clean interface ...

2011-09-26 Thread Matt Gorecki
This is excellent. Would you mind sharing your layout.html?

[web2py] Re: Web2py LAN

2011-09-16 Thread Matt Gorecki
Also, if you start with 0.0.0.0, web2py will listen on all of your available interfaces. For example, I have a situation where I want web2py accesible on the local LAN and as well as over a VPN connection. 0.0.0.0 works for both regardless of IP address. Matt

[web2py] Re: python isn´t in frozen sys.path

2011-09-06 Thread Matt Gorecki
I'm not sure about the error, but in that screenshot you are running version 1.90. Try doing a mercurial pull/update. You should end up with version 1.98.2. Matt On Sep 6, 9:54 am, António Ramos ramstei...@gmail.com wrote: ok, doing that i got another error sorry 2011/9/6 Anthony

[web2py] Re: how to create image as link using web2py controller

2011-08-22 Thread Matt Gorecki
You can do this. This example comes straight from the web2py book. http://web2py.com/book/default/chapter/05#Built-in-Helpers A(IMG(_src=URL('static','logo.png'), _alt=My Logo), _href=URL('default','index')) Matt Gorecki On Aug 22, 9:11 am, sagar browse2sa...@gmail.com wrote: I have triying

[web2py] Re: web2py from mercurial -admin disabled because no admin password

2011-08-22 Thread Matt Gorecki
Use the -a command line flag. python web2py.py -a yourpassword Matt On Aug 22, 10:40 am, António Ramos ramstei...@gmail.com wrote: hello , i downloaded the mercurial web2py and when i do python.exe  web2py.py and enter password in the initial server start, i got the webpage of welcome app.

[web2py] The web2py book is broken

2011-07-26 Thread Matt Gorecki
A quick FYI. http://www.web2py.com/book is throwing errors right now. Matt

[web2py] GAE discussion on Hacker News

2011-07-01 Thread Matt Gorecki
There is a discussion on Hacker News today about what Python frameworks are best suited for Google App Engine. http://news.ycombinator.com/item?id=2715887 Somebody with more technical knowledge than me should answer a few web2py questions over there. Specifically this one:

[web2py] Re: URL showing on links when printing a page

2011-06-20 Thread Matt Gorecki
My Google searches didn't yield much information. There is a CSS trick that will show the URLs only when the page is printed. Maybe you have something like this in your stylesheets: http://davidwalsh.name/optimize-your-links-for-print-using-css-show-url The only other thing I can think is it's

[web2py] Re: Discussion: Thoughts about including jQuery UI in core web2py?

2011-06-14 Thread Matt Gorecki
I second this. I think pulling jQuery and jQuery UI from a CDN is the way to go.