[web2py] How I can disable user_group, membership, permission, events?

2017-06-14 Thread Вячеслав Анатольевич
So, I have db/table where i have data, i want just login user by the my 
field/data:


def user():
auth = Auth(db, signature=False)
auth.settings.create_user_groups = False
db.define_table('user_psw',
Field 
('tabnum', 'id', 
readable=False, writable=False),
Field 
('name', readable=False, 
writable=False),
Field 
('pwd', 'password', 
requires=CRYPT (), 
readable=False),
Field 
('ipadr'),
Field 
('groupid'),
Field 
('registration_key', 
writable=False, readable=False, default=''),
Field 
('reset_password_key', 
writable=False, readable=False, default=''),
Field 
('registration_id', 
writable=False, readable=False, default='')
)
if request .args(0) == 
'login':
auth.settings.showid = False
auth.settings.table_user_name = 'user_psw'
auth.settings.login_userfield = 'name'
auth.settings.password_field = 'pwd'
auth.settings.login_next = URL 
('index.html')
auth.settings.logout_next = URL 
('index.html')
auth.settings.actions_disabled.append('register')
auth.settings.login_email_validate = False
custom_auth_table = db[auth.settings.table_user_name]
custom_auth_table.name.requires = IS_NOT_EMPTY 
()
custom_auth_table.pwd.requires = CRYPT 
()
auth.settings.table_user = custom_auth_table

login works, but some error:

File "D:\Web\server\web2py\gluon\tools.py", line 4159, in update_groups
table_membership.user_id == self.user.id).select()
  File "D:\Web\server\web2py\gluon\packages\dal\pydal\objects.py", line 90, in 
__getattr__
raise AttributeError
AttributeError

Whats wrong? I write - 
 auth.settings.create_user_groups = False

How i can disable this? In project i dont need any groups, memebership, etc... 
only login

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Why do I get a blank screen on view

2017-06-14 Thread Maurice Waka
Sorry. Am not sure about value of Auth.user_id

On Jun 15, 2017 07:25, "Anthony"  wrote:

> What is the value of auth.user_id? Are you sure there are records in the
> database whose "post_by" value is equal to it?
>
> On Thursday, June 15, 2017 at 12:03:54 AM UTC-4, Maurice Waka wrote:
>>
>> when trying to view posts created by author, i tried this piece of code
>> on controller:
>>
>>1. option one:  replies = db(db.answers.posted_by==auth.
>>user_id).select(orderby=~db.answers.posted_by,limitby=(0,10))
>>2. option two where the author has two fields populated with
>>information:
>>1.  questions = db(db.answers.quest == auth.user_id).select()
>>   2.  replies  =  db(db.answers.report == auth.user_id).select()
>>
>> With above options, i keep getting a blank screen., but messages are
>> posted to the database
>> With this option below, i get to view all posts by not only the author's
>> posts but by all authors logged. I want it private that ONLY the author can
>> view his/her posts.
>>
>>- replies  =  db(db.answers).select()
>>- return dict(replies=replies)
>>
>> The code on the models is:
>>
>> db.define_table('answers',
>> Field('quest', 'text', 'reference auth_user'),
>> Field('report', 'text', 'reference auth_user'),
>> Field('posted_by','reference
>> auth_user',readable=False,writable=False),
>> auth.signature
>> )
>>
>>
>> code on view.html:
>>
>>1. Option one: all authors posts are seen on view
>>
>> {{for reply in replies:}}
>> {{=reply.quest}}
>> {{=reply.report.}}
>> {{pass}}
>>
>>
>>1. Option two. gives a blank screen/view
>>
>> {{for question in questions:}}
>> {{=question.quest}}
>> {{pass}}
>> {{for reply in replies:}}
>> {{=reply.reportt}}
>> {{pass}}
>>
>>
>>
>> I don't know where am going wrong. Please assist
>> Kind regards
>>
>>
> --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/web2py/Msoj2qZO7RU/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Why do I get a blank screen on view

2017-06-14 Thread Anthony
What is the value of auth.user_id? Are you sure there are records in the 
database whose "post_by" value is equal to it?

On Thursday, June 15, 2017 at 12:03:54 AM UTC-4, Maurice Waka wrote:
>
> when trying to view posts created by author, i tried this piece of code on 
> controller:
>
>1. option one:  replies = 
>
> db(db.answers.posted_by==auth.user_id).select(orderby=~db.answers.posted_by,limitby=(0,10))
>2. option two where the author has two fields populated with 
>information:
>1.  questions = db(db.answers.quest == auth.user_id).select()
>   2.  replies  =  db(db.answers.report == auth.user_id).select()
>   
> With above options, i keep getting a blank screen., but messages are 
> posted to the database
> With this option below, i get to view all posts by not only the author's 
> posts but by all authors logged. I want it private that ONLY the author can 
> view his/her posts.
>
>- replies  =  db(db.answers).select()
>- return dict(replies=replies)
>
> The code on the models is:
>
> db.define_table('answers',
> Field('quest', 'text', 'reference auth_user'),
> Field('report', 'text', 'reference auth_user'),
> Field('posted_by','reference 
> auth_user',readable=False,writable=False),
> auth.signature
> )
>
>
> code on view.html:
>
>1. Option one: all authors posts are seen on view
>
> {{for reply in replies:}}
> {{=reply.quest}}
> {{=reply.report.}}
> {{pass}}
>
>
>1. Option two. gives a blank screen/view
>
> {{for question in questions:}}
> {{=question.quest}}
> {{pass}}
> {{for reply in replies:}}
> {{=reply.reportt}}
> {{pass}}
>
>
>
> I don't know where am going wrong. Please assist
> Kind regards 
>  
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: dev_appserver does not allow login to my web2py app from LAN client

2017-06-14 Thread Anthony
It's still not clear what is generating the message you see. Can you show 
the URL you are attempting to visit and exactly what you see on the page?

Note, requiring login via @auth.requires_login() or @auth.requires() does 
not require HTTPS or a "secure channel", so merely requiring login for 
particular actions would not result in the message you are seeing.

If you have request.requires_https() somewhere, you'll need to make it 
conditional on the environment -- for example:

if os.getenv('SERVER_SOFTWARE', '').startswith('Google App Engine/'):
request.requires_https() # Only when running on GAE.

If that's the issue, though, it has nothing to do with requiring login.

Anthony

On Wednesday, June 14, 2017 at 7:30:53 PM UTC-4, 98uj...@gmail.com wrote:
>
> Thank you for your response!
>
> I am afraid that my question lacked precision! Here is my regular command 
> line to start web2py:
> ~/src/w2app$ ./web2py.py --password='1' -c ../ssl-key-crt/server.crt 
> -k ../ssl-key-crt/server.key --ip=192.168.1.25
> It works very nice!
>
> Here is my command required by dev_appserver before you deploy to gae:
> ~/src$ dev_appserver.py --host=192.168.1.25 w2app/
>
> My application requires that the user is logged in before any 
> functionality is availabe. I am not talking admin app nor appadmin app. So 
> when it is running in dev_appserver and I try to login I get a message 
> something like: can't login because insecure channel. And I can't use any 
> of its functionality. This is because I am not at the local host and this 
> behavior is understood. The problem is that my linux box, where I run 
> web2py server,  is 'headless', no windowing software, and I develop  my 
> apps via ssh and a browser from a client, in this case a chromebook, and I 
> can never be or appear to the system as being at the local host in this 
> fashion.
> Is there a linux configuration that would make me appear to the 
> dev_appserver as being at the local host even though I am accessing it form 
> LAN client?
> Thank you in advance.
>
>- 
>
> On Wednesday, June 14, 2017 at 6:04:45 PM UTC-4, Anthony wrote:
>>
>> On Tuesday, June 13, 2017 at 1:12:44 PM UTC-4, 98u...@gmail.com wrote:
>>>
>>> I run my web2py on a home lan, headless box of linux. My web2py apps 
>>> require login and it can only be performed over a secure channel. My 
>>> question: is it possible (if yes then how) to configure my linux box to 
>>> simulate local host accessing so that I can remain sitting on my couch? 
>>> Should I remove all the decorators requiring user signature in my web2py 
>>> app and the run through the dev_appserver?
>>>
>>
>> The Auth decorators do not require an HTTPS connection. Are you talking 
>> about trying to access either the admin app or the appadmin page of your 
>> app -- those are the only things that require HTTPS (or alternatively a 
>> local connection).
>>
>> Anthony
>>
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: dev_appserver does not allow login to my web2py app from LAN client

2017-06-14 Thread 98ujko9
Thank you for your response!

I am afraid that my question lacked precision! Here is my regular command 
line to start web2py:
~/src/w2app$ ./web2py.py --password='1' -c ../ssl-key-crt/server.crt -k 
../ssl-key-crt/server.key --ip=192.168.1.25
It works very nice!

Here is my command required by dev_appserver before you deploy to gae:
~/src$ dev_appserver.py --host=192.168.1.25 w2app/

My application requires that the user is logged in before any functionality 
is availabe. I am not talking admin app nor appadmin app. So when it is 
running in dev_appserver and I try to login I get a message something like: 
can't login because insecure channel. And I can't use any of its 
functionality. This is because I am not at the local host and this behavior 
is understood. The problem is that my linux box, where I run web2py server, 
 is 'headless', no windowing software, and I develop  my apps via ssh and a 
browser from a client, in this case a chromebook, and I can never be or 
appear to the system as being at the local host in this fashion.
Is there a linux configuration that would make me appear to the 
dev_appserver as being at the local host even though I am accessing it form 
LAN client?
Thank you in advance.

   - 
   
On Wednesday, June 14, 2017 at 6:04:45 PM UTC-4, Anthony wrote:
>
> On Tuesday, June 13, 2017 at 1:12:44 PM UTC-4, 98u...@gmail.com 
>  wrote:
>>
>> I run my web2py on a home lan, headless box of linux. My web2py apps 
>> require login and it can only be performed over a secure channel. My 
>> question: is it possible (if yes then how) to configure my linux box to 
>> simulate local host accessing so that I can remain sitting on my couch? 
>> Should I remove all the decorators requiring user signature in my web2py 
>> app and the run through the dev_appserver?
>>
>
> The Auth decorators do not require an HTTPS connection. Are you talking 
> about trying to access either the admin app or the appadmin page of your 
> app -- those are the only things that require HTTPS (or alternatively a 
> local connection).
>
> Anthony
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py 2.15.1

2017-06-14 Thread Anthony
On Wednesday, June 14, 2017 at 2:33:58 PM UTC-4, Richard wrote:
>
> Anthony,
>
> What are the issue with Calendar?? I know it outdated, support seems to 
> shade away (http://www.dynarch.com/ -> Website down and a link to 
> documentation is provide...
>

See OP.
 

> I had step back from implementing flatpickr, maybe we should to write down 
> requirements and evaluate various alternative to Calendar. Our at least 
> evaluate the path to flatpickr implementation... I thought it would have 
> been much more straight foward and I don't have enough time on my hand 
> right now to keep digging and workaround the issue that kick in during the 
> process...
>

Sure. I didn't do any extensive evaluation, though I suspect flatpickr 
could be made to work.
 

>
> There is alternative :
>
> https://github.com/dbushell/Pikaday (had many contributors 50), they 
> mention it works well with Moment.js, which seems to make simpler to 
> configure datetime display base on locales, so we could have just to pass 
> locales...
>

Not bad, but the default styling isn't as nice, and doesn't handle times.
 

> flatpickr (92 contributors)
> https://github.com/nazar-pc/PickMeUp 
> 
>  
> (10 contributors)
>

Also nice, though depends on jQuery and doesn't handle times.
 

> But maybe we could anticipate what comming up with web3py and pickup 
> Moment.js or postpone to web3py and do more stuff on client-side with 
> moment.js, but right now flatpickr don't seems to me a better fit then 
> Calendar which is relyable play well with python datetime.
>

As web3py will use Vue.js on the client-side, a Vue date/time picker would 
be most appropriate.

Anthony

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: dev_appserver does not allow login to my web2py app from LAN client

2017-06-14 Thread Anthony
On Tuesday, June 13, 2017 at 1:12:44 PM UTC-4, 98uj...@gmail.com wrote:
>
> I run my web2py on a home lan, headless box of linux. My web2py apps 
> require login and it can only be performed over a secure channel. My 
> question: is it possible (if yes then how) to configure my linux box to 
> simulate local host accessing so that I can remain sitting on my couch? 
> Should I remove all the decorators requiring user signature in my web2py 
> app and the run through the dev_appserver?
>

The Auth decorators do not require an HTTPS connection. Are you talking 
about trying to access either the admin app or the appadmin page of your 
app -- those are the only things that require HTTPS (or alternatively a 
local connection).

Anthony

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: dev_appserver does not allow login to my web2py app from LAN client

2017-06-14 Thread Jim S
You could use the appropriate options on startup of the web2py server to 
enable SSL so you would have a secure channel.

http://web2py.com/books/default/chapter/29/04/the-core#Command-line-options

-Jim

On Tuesday, June 13, 2017 at 12:12:44 PM UTC-5, 98u...@gmail.com wrote:
>
> I run my web2py on a home lan, headless box of linux. My web2py apps 
> require login and it can only be performed over a secure channel. My 
> question: is it possible (if yes then how) to configure my linux box to 
> simulate local host accessing so that I can remain sitting on my couch? 
> Should I remove all the decorators requiring user signature in my web2py 
> app and the run through the dev_appserver?
> Thank you in advance!
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py and SEO

2017-06-14 Thread rajjmatthur
Did anyone had any success on inserting metadata on layout or SEO 
( http://www.web2pyslices.com/slice/show/2048/simple-seo) plugins? It 
doesn't seem to work at all.


On Friday, January 3, 2014 at 9:25:14 AM UTC-5, Gael Princivalle wrote:
>
> Hi Bruno.
>
> In a same page where you make translations, how can you manage meta 
> informations for all languages ?
> With a if T.accepted_language you can set different values, but when you 
> give your site to a tool like that :
> http://www.seoutility.com/it/tools/google/sitemap_generator.aspx
> it see only meta informations in default language.
>
> page title (response.meta.title)
> page keywords ( response.meta.keywords)
> page description ( response.meta.description)
>
> How do you manage this argument ?
>
> Thanks.
>
>
> Il giorno venerdì 6 agosto 2010 15:13:58 UTC+2, rochacbruno ha scritto:
>>
>> SEO is basically done through:
>>
>> page title (response.meta.title)
>> page keywords ( response.meta.keywords)
>> page description ( response.meta.description)
>>
>> plus: 
>> the robots.txt file under website root directory, 
>> good practices for creating links and inserting images, 
>> Semantic html markup ( I mean always including "name" , "alt", "title" 
>> for relevant tags), 
>> and also using correctly the most relevant tags (h1,h2,h..., , 
>>  etc )
>>
>> And one of the most important thing: Build a sitemap [1]
>>
>> web2py is ready to do all that, but we need to do it all from the 
>> scratch, what we need now is a helper or a mechanism to make it more user 
>> friendly.As is done by the plugin ALL-IN-ONE-PACK-SEO on wordpress for 
>> example.
>>
>>
>> [1] http://en.wikipedia.org/wiki/Site_map
>>
>>
>>
>>
>>
>> 2010/8/6 mdipierro 
>>
>>> web2py does not care. I do not think there is any difference between
>>> frameworks about this. The issue how you use them.
>>>
>>> web2py provides response.meta that combined with the default layout
>>> allows you to set
>>>
>>> response.meta.keywords
>>> response.meta.description
>>> response.meta.author
>>>
>>> If you have recommendations about specific features that need to be
>>> implemented at the framework level, let us know.
>>>
>>>
>>>
>>>
>>>
>>>
>>> On Aug 6, 6:13 am, puercoespin 
>>> wrote:
>>> > Is web2py designed for a good practices about SEO? Are some frameworks
>>> > SEO-friends and others no SEO-friends and, if this is true, are web2py
>>> > SEO-friend?
>>> >
>>> > Thanks
>>>
>>
>>
>>
>> -- 
>>
>> http://rochacbruno.com.br
>>
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: web2py 2.15.1

2017-06-14 Thread Richard Vézina
Anthony,

What are the issue with Calendar?? I know it outdated, support seems to
shade away (http://www.dynarch.com/ -> Website down and a link to
documentation is provide...

But it plays so well with python date/datetime formatting string...

I had step back from implementing flatpickr, maybe we should to write down
requirements and evaluate various alternative to Calendar. Our at least
evaluate the path to flatpickr implementation... I thought it would have
been much more straight foward and I don't have enough time on my hand
right now to keep digging and workaround the issue that kick in during the
process...

There is alternative :

https://github.com/dbushell/Pikaday (had many contributors 50), they
mention it works well with Moment.js, which seems to make simpler to
configure datetime display base on locales, so we could have just to pass
locales...
flatpickr (92 contributors)
https://github.com/nazar-pc/PickMeUp (10 contributors)

Flatpickr seems the new kid on the block and the edge date picker lib
available...

But maybe we could anticipate what comming up with web3py and pickup
Moment.js or postpone to web3py and do more stuff on client-side with
moment.js, but right now flatpickr don't seems to me a better fit then
Calendar which is relyable play well with python datetime.

We can use flatpickr for time though as we don't have any picker for this
field type if we determine that we will integrate and replace Calendar...

Richard




On Tue, Jun 13, 2017 at 3:38 PM, Richard Vézina  wrote:

> Hmm, I had a look at the code of flatpickr for fromatting :
> https://github.com/chmln/flatpickr/blob/master/src/flatpickr.js#L1461
>
> Would require a major refactor to support python string fromatting
> datetime parameter '%Y-%m-%d %H:%M:%S'
>
> Also it doesn't seems to support timezone...
>
>
> https://chmln.github.io/flatpickr/formatting/
>
> On Mon, Jun 12, 2017 at 4:01 PM, Richard Vézina <
> ml.richard.vez...@gmail.com> wrote:
>
>> Here : https://github.com/web2py/web2py/commit/0205594f0853680e7c
>> 548dd0c506640958e36f1b
>>
>> Just go to : welcome/default/test_flatpickr, a dummy form with the 3
>> field types date, datetime, time demo
>>
>> Meaningful changes are mostly at the top and the bottom of diff...
>>
>> Remain to manger i18n and figure out what to do with datetime... I think
>> date is correct and time if default widget config with seconds is
>> acceptable we are done. For datetime as mention it more complexe... Maybe
>> we could propose enhancement to flatpickr to support default web2py style
>> datetime formatting like '%Y-%m-%d %H:%M:%S'... Calendar was supporting
>> that... But I am not sure if there is any standard way to specify datetime
>> string format??
>>
>> Richard
>>
>> On Mon, Jun 12, 2017 at 3:47 PM, Richard Vézina <
>> ml.richard.vez...@gmail.com> wrote:
>>
>>> Ok, I figure this out, I mean it work with only change into web2py.js
>>> and web2py_ajax.html with web2py-master (up to date)...
>>>
>>> I should remove reference to web2py_ajax.js in this comment and replace
>>> it with web2py.js I guess??
>>>
>>> Have you any input regarding the previous message about flatpickr
>>> integration and backward compatibility...
>>>
>>> I will share the mods I made so far from my fork and share the a link
>>> pointing to it here ASAP.
>>>
>>> Richard
>>>
>>> On Mon, Jun 12, 2017 at 3:43 PM, Anthony  wrote:
>>>
 On Monday, June 12, 2017 at 2:28:21 PM UTC-4, Richard wrote:
>
> Also, I am not sure what happen with web2py_ajax.*js *I found
> reference to it in web2py_ajax*.html*
>

 You must have a very old version -- web2py_ajax.js was changed to
 web2py.js a long time ago.

 Anthony

 --
 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.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to web2py+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] New site on web2py

2017-06-14 Thread Ian Ryder
Thanks - can't take all the credit, it was based around one called Unify 
but has been heavily tweaked!

On Wednesday, 14 June 2017 18:22:00 UTC+2, Chinh Dang wrote:
>
> Beautiful design. Did you use any particular bootstrap-based theme for 
> this?
>
> On Jun 14, 2017 9:36 AM, "Ian Ryder"  
> wrote:
>
>> Hi all, not sure if it's OK to do this - slap me down if not!
>>
>> We're just about to launch a new tool / site based on web2py - 
>> https://www.wherecani.live
>>
>> Any feedback appreciated and if it's useful to anyone looking to live in 
>> different parts of the world, great stuff.
>>
>> Thanks Massimo et al for the great framework :)
>>
>> Cheers
>> Ian
>>
>> -- 
>> 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.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to web2py+un...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: New site on web2py

2017-06-14 Thread Ian Ryder
Big push starts in the next week or two - lot of leg work, don't want to 
spend too much at this stage so a lot of making contact with others in this 
space. There's nothing quite like it so we're confident we should get 
decent coverage...also we should be able to make use of the press around 
Brexit. It's very relevant for a lot of people stuck in limbo right now!

On Wednesday, 14 June 2017 18:00:27 UTC+2, Ron Chatterjee wrote:
>
> Interesting! What are the marketing steps you are taking to promote the 
> site? 
>
> On Wednesday, June 14, 2017 at 9:36:18 AM UTC-4, Ian Ryder wrote:
>>
>> Hi all, not sure if it's OK to do this - slap me down if not!
>>
>> We're just about to launch a new tool / site based on web2py - 
>> https://www.wherecani.live
>>
>> Any feedback appreciated and if it's useful to anyone looking to live in 
>> different parts of the world, great stuff.
>>
>> Thanks Massimo et al for the great framework :)
>>
>> Cheers
>> Ian
>>
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] New site on web2py

2017-06-14 Thread Chinh Dang
Beautiful design. Did you use any particular bootstrap-based theme for this?

On Jun 14, 2017 9:36 AM, "Ian Ryder"  wrote:

> Hi all, not sure if it's OK to do this - slap me down if not!
>
> We're just about to launch a new tool / site based on web2py -
> https://www.wherecani.live
>
> Any feedback appreciated and if it's useful to anyone looking to live in
> different parts of the world, great stuff.
>
> Thanks Massimo et al for the great framework :)
>
> Cheers
> Ian
>
> --
> 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.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: New site on web2py

2017-06-14 Thread Ron Chatterjee
Interesting! What are the marketing steps you are taking to promote the 
site? 

On Wednesday, June 14, 2017 at 9:36:18 AM UTC-4, Ian Ryder wrote:
>
> Hi all, not sure if it's OK to do this - slap me down if not!
>
> We're just about to launch a new tool / site based on web2py - 
> https://www.wherecani.live
>
> Any feedback appreciated and if it's useful to anyone looking to live in 
> different parts of the world, great stuff.
>
> Thanks Massimo et al for the great framework :)
>
> Cheers
> Ian
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Future of web2py

2017-06-14 Thread Richard Vézina
Kill anxiety, the only certainty we have is that things gonna change...

:D

On Tue, Jun 13, 2017 at 4:40 PM, JorgeH  wrote:

> Hehe.
> Let poor Massimo breath..
> He shared with us his intentions about web3py
> I expect the first release to be an alfa version.
> We are excited and thrilled but just chill out.
>
> On Tuesday, June 13, 2017 at 2:36:31 PM UTC-5, Ron Chatterjee wrote:
>>
>> Massimo, web3py,...
>>
>>
>>- Will it have a web interface?
>>- Template: web2py template language?
>>- How about default.py? How about all the queries we make to the
>>database? The same method will apply?
>>- How about grid and SQLFORM? How about all the validators?
>>- It will be a full scale battery included or a minimalist approach
>>like flask or bottle?
>>- Is it one page like flask or bottle or modular approach like django?
>>- All the plugins will still work? Any third party packages it can
>>accept?
>>- How much of rework needed if someone wants to convert a web2py app
>>to web3py? I am guessing if pydal and the template language is same then
>>very minimal. Are you going to provide a conversion doc (conversion from
>>web2py to web3py)?
>>- Do you recommend people who are using web2py for deployment and
>>regular site (already functional) to switch over to web3py and leave 
>> web2py
>>just to get the training and that's it?
>>- Is there a specific advantage of web3py over web2py other than
>>speed?
>>
>>
>> -Ron
>>
>>
>> On Sunday, June 11, 2017 at 4:14:38 AM UTC-4, Massimo Di Pierro wrote:
>>>
>>> Speed depends on what the app does. Which template you use, which db,
>>> etc. In general the bottle neck of any app is the database.
>>>
>>> That said most people like to benchmark on simple hello world apps
>>> without sessions and templates. In this case web2py does not do well.
>>> web3py will do as fast as Flask, faster than Django.
>>>
>>> On Friday, 9 June 2017 20:30:08 UTC-5, Ron Chatterjee wrote:

 No I am saying how fast web3py will be comparing django or flask?
>>>
>>> --
> 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.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] New site on web2py

2017-06-14 Thread Ian Ryder
Hi all, not sure if it's OK to do this - slap me down if not!

We're just about to launch a new tool / site based on web2py 
- https://www.wherecani.live

Any feedback appreciated and if it's useful to anyone looking to live in 
different parts of the world, great stuff.

Thanks Massimo et al for the great framework :)

Cheers
Ian

-- 
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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.