[web2py] Re: please help us test new web site

2010-10-12 Thread Lasiaf
The new site looks awesome, also I like the web2py logo with the snake but should be silhouette instead. http://host2py.appspot.com/default/file/216001/web2py.png On Oct 9, 4:07 pm, mdipierro wrote: > New web2py layout: > >    http://web2py.com > > Thanks Bruno and Martin > > New demo_admin: > >

[web2py] Re: WikiYou - Showcase

2010-08-16 Thread Lasiaf
goal being there is only one copy of all controllers and views, > etc. (Again, I suspect your app is the same). > > When I try and enter a URL like "http://mycommunity.127.0.0.1:8000/ > mm_beta_1/default/index"  where mycommunity is actually a parameter > specifying whi

[web2py] Re: WikiYou - Showcase

2010-08-16 Thread Lasiaf
> at your site. I have not done this myself but I m pretty sure it should work. > > Kenneth > > to operate o > > > > > n, I get page not found errors. > > > On Aug 14, 6:35 pm, Lasiaf  wrote: > > >> No, its not opensource. > > >> On Au

[web2py] Adding new column in GAE

2010-08-16 Thread Lasiaf
How do I add new columns to have default values in GAE for existing records? When I add new columns, existing records don't get updated with the new columns.

[web2py] Re: suggestions for web2py website

2010-08-15 Thread Lasiaf
to contribute a piece of donation, so that the web2py have a > > site/logo done by a professional. > > We can get it for about $ 500 inhttp://crowdspring.com > > > 2010/8/15 Lasiaf > > > I think web2py site needs to be redesigned. You could ask university > >>

[web2py] Re: Host2Py - web2py simple file hosting

2010-08-15 Thread Lasiaf
ailed it :) On Aug 15, 12:04 am, mdipierro wrote: > Please add it tohttp://web2py.com/appliances > > On Aug 14, 5:34 pm, Lasiaf wrote: > > > > > Hi again, for my 3rd app it's file hosting. Very simple application to > > host files. > > You can downl

[web2py] Re: Suggestions for the Basic Authentications

2010-08-15 Thread Lasiaf
I like the deactivate account idea. It would be nice for it to be built in. On Aug 15, 11:13 am, Tim Michelsen wrote: > The register for could also benefit from a password strength checker.

[web2py] Re: suggestions for web2py website

2010-08-15 Thread Lasiaf
I think web2py site needs to be redesigned. You could ask university students to do it for free for their portfolio. :) I almost always use templates for my own projects. But that's not gonna be good for web2py. On Aug 15, 11:12 am, Tim Michelsen wrote: > Hello, > my suggestion for the web2py web

[web2py] Re: WikiYou - Showcase

2010-08-14 Thread Lasiaf
No, its not opensource. On Aug 13, 12:56 pm, Bruno Rocha wrote: > Thats opensource? > > 2010/8/13 Lasiaf > > > > > > > maybe when you tried it, the version I uploaded was the one with > > invalid routes(maybe development mode). > > I can't thin

[web2py] Host2Py - web2py simple file hosting

2010-08-14 Thread Lasiaf
Hi again, for my 3rd app it's file hosting. Very simple application to host files. You can download it in here http://code.google.com/p/host2py/ also you can see it live here http://host2py.appspot.com This is mostly for private hosting of small files, but it is designed so that you can add permi

[web2py] Re: WikiYou - Showcase

2010-08-13 Thread Lasiaf
s me the registration form again. > No message. > > On Aug 12, 7:49 pm, Lasiaf wrote: > > > > > I actually used rpx first, but I didn't like it much, so I used google > > account login but then I didn't like it too much too. hehe so I > > decided to use

[web2py] Re: WikiYou - Showcase

2010-08-12 Thread Lasiaf
mdipierro wrote: > I cannot login. I suggest you use RPX > > On Aug 12, 1:17 pm, Lasiaf wrote: > > > > > Hi, > > > I would like to share my 2nd app using web2py, its atwww.wikiyou.org. > > It is like wikipedia about us and you can create your own subdomain > &

[web2py] Re: WikiYou - Showcase

2010-08-12 Thread Lasiaf
Hi, I used routes.py to handle subdomain. Also I added in google domain * for subdomain. Here is the routes.py to give you an idea on how I did it. routes_in = (('.*:https?://([^www][a-z0-9]+)\.wikiyou\.dev:.* /wiki/ (.*)', r'/wikiyou/user/wiki/\1/\2'), ('.*:https?://([^www][a-z0-9]

[web2py] WikiYou - Showcase

2010-08-12 Thread Lasiaf
Hi, I would like to share my 2nd app using web2py, its at www.wikiyou.org. It is like wikipedia about us and you can create your own subdomain usernames like having your own username.wikiyou.org. I actually have a PHP/MySQL version using Zend Framework before, but I decided to port it to web2py an

[web2py] Re: Feed Creator - Showcase

2010-08-06 Thread Lasiaf
t work. So eventually I > had to use regular expression instead. > > -- > Iceberg > > On Aug 7, 9:49 am, Lasiaf wrote: > > > > > I just tried it, and saved the feed, worked for me. > > > I just checked the logs, if you don't put http:// gives

[web2py] Re: Feed Creator - Showcase

2010-08-06 Thread Lasiaf
I point it to my website. thadeusb.com. > > Cool concept though. > > -- > Thadeus > > > > On Fri, Aug 6, 2010 at 8:26 PM, Lasiaf wrote: > > I used urllib to get html stuff, then used gluon.html TAG for the > > filtering jQuery style. > > Here are so

[web2py] Re: Feed Creator - Showcase

2010-08-06 Thread Lasiaf
d to google and find out if there are built stuff to fix it and I found BeautifulSoup.prettify() which will fix it - maybe this should also be built in TAG() cause TAG is so awesome, I can do everything in DOM very easily. On Aug 6, 3:28 pm, mdipierro wrote: > +1 > > How does it work? >

[web2py] Feed Creator - Showcase

2010-08-06 Thread Lasiaf
ct, I decided to do all my own projects using web2py. - Lasiaf

[web2py] Re: routes.py in applications or how to access request in routes.py

2010-08-06 Thread Lasiaf
efore the changes takes effect. How long is that? But I don't edit stuff on live, I just tried to make a solution for this in that shared hosting company. Thanks On Aug 6, 9:14 am, Jonathan Lundell wrote: > On Aug 6, 2010, at 7:52 AM, Lasiaf wrote: > > > cool. > > is t

[web2py] Re: routes.py in applications or how to access request in routes.py

2010-08-06 Thread Lasiaf
cool. is there any date on when it will be added? Thanks On Aug 4, 3:41 pm, mdipierro wrote: > this is on our todo list > > On Aug 4, 4:19 pm, Lasiaf wrote: > > > > > Hi, > > > I'm new to web2py and python. > > Here is what I wanna accomplish: >

[web2py] routes.py in applications or how to access request in routes.py

2010-08-04 Thread Lasiaf
Hi, I'm new to web2py and python. Here is what I wanna accomplish: I want to have routes.py in each application, so I can make separate applications with different set of routes, because I will be hosting it in a shared hosting and they have limited inodes of 50,000. So I just want to keep a copy