[web2py] How do I design a view such that users will have to pass through login page?

2015-12-13 Thread RAGHIB R
Like in case of facebook, one has to pass through a login page. If one 's logged in he will be redirected to home page otherwise login. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/is

[web2py] How to customize login in web2py (include security check-up and ask for more information for signup?

2015-12-13 Thread RAGHIB R
More information like, birthdate, gender and others. -- 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

[web2py] How do I remove SQLITE and use MYSQL in web2py stepwise?

2015-12-13 Thread RAGHIB R
And what is capacity of MYSQL in web2py, as I heard capacity of sqlite is just 5000 entries. -- 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

[web2py] Re: How do I remove SQLITE and use MYSQL in web2py stepwise?

2015-12-13 Thread RAGHIB R
Ok that's cool. Will SQLITE be good to design a social networking site or should I go for MYSQL? What's your opinion on it? On Monday, December 14, 2015 at 10:26:38 AM UTC+5:30, Anthony wrote: > > On Sunday, December 13, 2015 at 11:14:49 PM UTC-5, RAGHIB R wrote: >> >

[web2py] What is the code to delete an entry for a query from the database table?

2015-12-13 Thread RAGHIB R
As intuitive, 'delete' doesn't match for the keyword for deletion. -- 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 a

[web2py] Can someone tell me stepwise how to upload web2py app on pythonanywhere after buying the domain?

2015-12-14 Thread RAGHIB R
Is buying domain from godaddy ok? How do I use that domain in pythonanywhere after that and does pythonanywhere give hosting facilities? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/i

[web2py] Can web2py app be hosted on any other host other than pythonanywhere?

2015-12-14 Thread RAGHIB R
If yes, where else? -- 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-use

[web2py] How do I upload web2py project on google app engine? I can't get any resource to learn this.

2015-12-14 Thread RAGHIB R
Also, the youtube video went out of my mind as I have never used MAC. Please tell it with context with windows or ubuntu. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Re

[web2py] How to add security check up for sign up?

2015-12-14 Thread RAGHIB R
One should a get a confirmation mail through enail. How to do that? -- 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

[web2py] How to not show menu bar in certain views and keep the view look normal?

2015-12-14 Thread RAGHIB R
When I remove "{{extend 'layout.html'}}" it looks so dull. I just want to remove the menu bar and nothing else. -- 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] How to hide certain fields from the table in the form?

2015-12-14 Thread RAGHIB R
How do I do that? -- 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

[web2py] How to edit writable field of Table?

2015-12-14 Thread RAGHIB R
I made both writable and readable false for not showing them in the form. But I need to edit them later on. How do I do that? -- 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: How to edit writable field of Table?

2015-12-14 Thread RAGHIB R
Sorry it is *unwritable On Tuesday, December 15, 2015 at 11:58:27 AM UTC+5:30, RAGHIB R wrote: > > I made both writable and readable false for not showing them in the form. > But I need to edit them later on. How do I do that? > -- Resources: - http://web2py.com - http://web

[web2py] Why is this not working?

2015-12-14 Thread RAGHIB R
I have created wall.html where users can edit their dp (display picture). And I added extra field for dp in auth: auth = Auth(db) auth.settings.extra_fields['auth_user']= [ Field('dp', type='upload' ), ] wall is: def wall(): form = SQLFORM(db.auth_user.dp).process() return loca

[web2py] Re: Why is this not working?

2015-12-14 Thread RAGHIB R
def wall(): form = FORM(INPUT(_type='submit'), _action=(db.auth_user.dp=name)) return locals() I figured out this too doesn't work. Can you please tell me the exact code to upload an image into db.auth_user.dp? On Tuesday, December 15, 2015 at 12:18:38 PM UTC+5:30, RAGHIB

[web2py] How to make a form for accepting images (through default.py controller)?

2015-12-19 Thread RAGHIB R
form = FORM(INPUT(_name='img', upload=True),INPUT(_type='submit')) This is not working. What's wrong here? -- 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] How do I change readable of an entry to true in view or controller?

2015-12-26 Thread RAGHIB R
-- 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 unsubsc

[web2py] how do I write a field in database such that its default is first name in auth.user?

2015-12-26 Thread RAGHIB R
For id it is auth.user_id, what for first name? -- 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 th

[web2py] Why am I getting validation error in RESIZE here? I have installed PIL and uploaded images.py module

2015-12-26 Thread RAGHIB R
db1.py reads as: from images import RESIZE db.define_table('info', Field('info_id',default=auth.user_id,writable=False,readable=False), Field('first_name'), Field('last_name'), Field('dp','upload'), Field('back','uplo

Re: [web2py] Re: Why am I getting validation error in RESIZE here? I have installed PIL and uploaded images.py module

2015-12-26 Thread RAGHIB R
ws binary version of web2py does > not come with PIL. You have to install python 2.7. Then install PIL. Then > run web2py from source. > > Massimo > > > On Saturday, 26 December 2015 09:19:37 UTC-6, RAGHIB R wrote: >> >> db1.py reads as: >> >> from image

[web2py] Re: how do I write a field in database such that its default is first name in auth.user?

2015-12-26 Thread RAGHIB R
look at this, i need the first name in the auth as first name in the info On Saturday, December 26, 2015 at 6:33:02 PM UTC+5:30, RAGHIB R wrote: > > For id it is auth.user_id, what for first name? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://gith

[web2py] How to edit the menu bar so as to remove profile and name in front of welcome in the dropdown?

2015-12-26 Thread RAGHIB R
for example here, I want to remove profile in this pic and name in front of welcome. how to do this? -- 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

[web2py] How to change the background color/ image in menu bar?

2015-12-27 Thread RAGHIB R
-- 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 unsubsc

[web2py] How do I change the look of a forms without using bootstrap? I am not getting any source to study it

2016-01-01 Thread RAGHIB R
Please give me the source at least. -- 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 Gro

[web2py] Re: How do I change the look of a forms without using bootstrap? I am not getting any source to study it

2016-01-01 Thread RAGHIB R
Dude I am asking about inbuilt forms like SQLFORM and form called from default.py -- 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 messa

[web2py] Why this form doesn't show the field name with drop down set options as intuitive? (see below)

2016-01-01 Thread RAGHIB R
Form=FORM(INPUT(_name='gender' requires=IS_IN_SET(['MALE','FEMALE']), INPUT( _type='submit')) -- 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 receive

[web2py] Why this form doesn't show the field name with drop down set options as intuitive? (see below)

2016-01-01 Thread RAGHIB R
Form=FORM(INPUT(_name='gender', requires=IS_IN_SET(['MALE','FEMALE'])), INPUT( _type='submit')) -- 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] How do you change css for inbuilt SQLFORM or FORMs called from default.py?

2016-01-01 Thread RAGHIB R
-- 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 unsubsc

[web2py] File not uploading in upload folder when using SQLFORM.factory. Why this code not working?

2016-01-01 Thread RAGHIB R
Form=SQLFORM.factory(Field('image', 'upload', uploadfolder=os.path.join(request.folder,'uploads'))) It says os is not defined. When I just put: uploadfolder=('uploads') It just creates an image of 0 bytes which when checked can't be opened becayse it has not uploaded, just created. i an using w

[web2py] How to upload an image using SQLFORMfactory in a folder & link same image to field of existing form

2016-01-01 Thread RAGHIB R
My codes are : (it is uploading the image using sqlformfactory nicely but there is some problem with the following one) Form=SQLFORM.factory(Field('image','upload',uploadfolder=os.path.join(request.folder,'uploads/'))) if Form.accepts(request.vars,session): db.person.insert(image=request.va

[web2py] How to upload an image using SQLFORMfactory in a folder & link same image to field of an existing db

2016-01-01 Thread RAGHIB R
My codes are : (it is uploading the image using sqlformfactory nicely but there is some problem with the following one) Form=SQLFORM.factory(Field('image','upload',uploadfolder=os.path.join(request.folder,'uploads/'))) if Form.accepts(request.vars,session): db.person.insert(image=request.var

[web2py] How do I create SQLFORM of a db with not all fields of the db?

2016-01-01 Thread RAGHIB R
Suppose a db has fields: name,roll,gender and I want to insert only into name and gender as of now , thus create a SQLFORM only for name and gender. How do I do that without putting roll as both readabke and writable as false? -- Resources: - http://web2py.com - http://web2py.com/book (Document

[web2py] Re: How to upload an image using SQLFORMfactory in a folder & link same image to field of an existing db

2016-01-01 Thread RAGHIB R
This didn't work. Can you please edit the code above and then point out the mistake? -- 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 me

[web2py] Re: How to upload an image using SQLFORMfactory in a folder & link same image to field of an existing db

2016-01-01 Thread RAGHIB R
@Anthony, it did upload to the 'person' table as in upload folder I can read it as person.image.something but the later part didn't work. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/

[web2py] How to create buttons for all elements of a db query individual such that all of them work different

2016-01-02 Thread RAGHIB R
For example I called a db query x in view Where each elements in x will be displayed in view with a button for each. And if user clicks on any one of them, he/she will get that very id of x (x.id) inserted in a different db store. I tried implementing the same with form but clicking on just one i

[web2py] what's wrong in this code? please help

2016-01-02 Thread RAGHIB R
For example I called a db query uu in view Where each elements in uu will be displayed in view with a button for each. And if user clicks on any one of them, he/she will get that very id of x (x.id) inserted in a different db store. I tried implementing the same with form but clicking on just one

[web2py] Re: what's wrong in this code? please help

2016-01-02 Thread RAGHIB R
How to do that?Can you explain or give a source to learn this? -- 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 s

[web2py] Re: what's wrong in this code? please help

2016-01-02 Thread RAGHIB R
thanks Niphlod. I am studying that and practicing too. But I couldn't find solution to this error in the book anywhere. Will be thankful if you point out the mistake and tell me the corrected version. Will surely take some time to complete the book after I have my doubts cleared about this. --

[web2py] Re: what's wrong in this code? please help

2016-01-03 Thread RAGHIB R
{{=A ... Can be used but it is only for URL. Please help me out of this. This is nowhere in the book. -- 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

[web2py] Re: what's wrong in this code? please help

2016-01-03 Thread RAGHIB R
I appreciate the help Alessio. That sounds little complicated. So what if I do something like this. What should I do in place of the comment. Will be thankful for your help. {{for x in uu:}} {{pass}} -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.co

[web2py] Re: what's wrong in this code? please help

2016-01-03 Thread RAGHIB R
{{for x in uu:}} {{=x.name}} {{pass}} This doesn't work as expected. -- 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

[web2py] Why this doesn't work as expected?

2016-01-03 Thread RAGHIB R
{{for x in uu:}} {{=x.name}} {{pass}} This doesn't work as expected. How to fix it? -- 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 me

Re: [web2py] Why this doesn't work as expected?

2016-01-04 Thread RAGHIB R
Thank you so much. It just worked. Thanks a lot. -- 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 t

Re: [web2py] Why this doesn't work as expected?

2016-01-04 Thread RAGHIB R
@marin it worked. Thanks for your help so sensibly. -- 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 t

[web2py] Re: Changing navbar color

2016-01-04 Thread RAGHIB R
Didn't work. -- 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" gro

[web2py] How many sessions can a web2py app handle at once?

2016-01-04 Thread RAGHIB R
Suppose session has variables: session.name1 and session.name2 such that each session needs a different set of values for them. Does web2py guarantee that there will be no conflicts between all sessions. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.

[web2py] Can we use a web2py app on Android mobile?

2016-01-04 Thread RAGHIB R
-- 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 unsubsc

Re: [web2py] Can we use a web2py app on Android mobile?

2016-01-04 Thread RAGHIB R
Can we install web2py app on android Mobile as we install the apk 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 message because

[web2py] Why I'm unable to login my gmail in web2py for mailing and getting "sign in prevented messages"?

2016-01-09 Thread RAGHIB R
How to tackle this? my code is: mail = auth.settings.mailer mail.settings.server = 'smtp.gmail.com:587' mail.settings.sender = 'mym...@gmail.com' mail.settings.login = 'mym...@gmail.com:secret' -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/

[web2py] Re: Why I'm unable to login my gmail in web2py for mailing and getting "sign in prevented messages"?

2016-01-09 Thread RAGHIB R
I want to do this for my app on pythonanywhere. On Saturday, January 9, 2016 at 4:59:25 PM UTC+5:30, RAGHIB R wrote: > > How to tackle this? > my code is: > mail = auth.settings.mailer > mail.settings.server = 'smtp.gmail.com:587' > mail.settings.sender = 'mym...

[web2py] web2py is giving me wrong time when I am using request.now for datetime. How to get time a/c as GMT?

2016-01-11 Thread RAGHIB R
Can we do it without any plugin? If yes, how? -- 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

[web2py] Why I am always being redirected? How to get a response.flash instead here?

2016-01-11 Thread RAGHIB R
{{= x.name}} this in my view calls this functions: def my_insert_function(): _id = request.args(0) db.store.insert(stuff = _id) if I don't put any redirect("sm page") here it takes me to a null page. How to prevent this and get a response.flash instead? -- Resources: - http://web2py.com

[web2py] Why this HTML email not working? Please tell me the corrected version.

2016-01-12 Thread RAGHIB R
def result(): session.x=mail.send('smm...@gmail.com', 'hello', 'Hi Raghib, you have a new entry: ','session.name+session.name2+" with "+str(session.percent)') if session.x==True: response.flash="result" else: response.fla

[web2py] Re: Why this HTML email not working? Please tell me the corrected version.

2016-01-13 Thread RAGHIB R
ubject, message, attachments, cc, .. etc etc etc). > > for html-only mails, it should be > > mail.send('reci...@gmail.com , 'subject', > 'thebody', etc etc etc) > > That being said, what's the error ? > > On Tuesday, January 12, 2016

[web2py] Re: Why this HTML email not working? Please tell me the corrected version.

2016-01-13 Thread RAGHIB R
. etc etc etc). > > for html-only mails, it should be > > mail.send('reci...@gmail.com , 'subject', > 'thebody', etc etc etc) > > That being said, what's the error ? > > On Tuesday, January 12, 2016 at 7:21:25 PM UTC+1, RAGHIB

[web2py] How can we use variables like session.variable1 inside the html email body?

2016-01-13 Thread RAGHIB R
can you please write a piece of code for it? -- 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 G

[web2py] How to not get the "confirm form submission" on reloading the page a form has?Whats error in my code

2016-01-14 Thread RAGHIB R
def hidefields(): form=SQLFORM(db.sample1) if form.accepts(request.vars,session,formname="form"): response.flash="added" return locals() {{extend 'layout.html'}} jQuery(document).ready(function(){ jQuery('#sample1_one__row').hide(); }); {{=form}} -- Resou

[web2py] How to compile Python/C++ codes in web2py and show the required output/error?

2016-01-19 Thread RAGHIB R
Please explain how to do it. -- 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 "w

[web2py] How to style submit button in the form? How should I edit this one?

2016-01-19 Thread RAGHIB R
{{=form.custom.begin}} Name: {{=form.custom.widget.name}} File: {{=form.custom.widget.source}} {{=form.custom.submit}}{{=form.custom.end}} -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google

[web2py] Re: How to compile Python/C++ codes in web2py and show the required output/error?

2016-01-22 Thread RAGHIB R
Yes Dave exactly. How do I proceed with this stepwise? On Friday, January 22, 2016 at 3:24:17 PM UTC+5:30, Dave S wrote: > > On Tuesday, January 19, 2016 at 7:51:13 AM UTC-8, RAGHIB R wrote: >> >> Please explain how to do it. >> > > > What's the goal of th

[web2py] My web2py app adjusts according to the browser on mobile and look odd? How to load it like Chrome?

2016-02-16 Thread RAGHIB R
The background-image and everything looks curbed, not suited according to browser. How to always open a standard size like that which opens in google chrome? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code

[web2py] Re: My web2py app adjusts according to the browser on mobile and look odd? How to load it like Chrome?

2016-02-17 Thread RAGHIB R
for example lovecalculator.pythonanywhere.com opens very differently on mobile and looks bad On Wednesday, February 17, 2016 at 10:09:58 AM UTC+5:30, RAGHIB R wrote: > > The background-image and everything looks curbed, not suited according to > browser. How to always open a standard

[web2py] What will happen to these if I use the link rel for css and js from my layout and use a new layout?

2016-02-19 Thread RAGHIB R
1) form (will just design change or even the functionalities change) 2) calender and ajax stuffs 3) another changes? -- 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 Is

[web2py] What happens to these if I don't use link rel for css and js in default layout and use a new layout?

2016-02-19 Thread RAGHIB R
1) form (will just design change or even the functionalities change) 2) calender and ajax stuffs 3) another changes? -- 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 Is

[web2py] Re: What happens to these if I don't use link rel for css and js in default layout and use a new layout?

2016-02-19 Thread RAGHIB R
For example I am not getting calendar even though I used its link rel by putting css file under it. On Friday, February 19, 2016 at 2:22:10 PM UTC+5:30, RAGHIB R wrote: > > 1) form (will just design change or even the functionalities change) > 2) calender and ajax stuffs > 3) ano

[web2py] Re: What happens to these if I don't use link rel for css and js in default layout and use a new layout?

2016-02-19 Thread RAGHIB R
I used both. Still what losses am I having? On Friday, February 19, 2016 at 2:47:42 PM UTC+5:30, Niphlod wrote: > > you need BOTH the js and the css file. > > On Friday, February 19, 2016 at 9:56:19 AM UTC+1, RAGHIB R wrote: >> >> For example I am not getting calendar eve

[web2py] For fastmail.com mail set up in web2py what should be mail.settings.server?

2016-02-19 Thread RAGHIB R
Please tell the thing I need to write there. -- 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 G

[web2py] Django guys get a job easily. Why don't web2py guys get a job? How to get a job?

2016-03-05 Thread RAGHIB R
I am in a very pathetic situation. I know web2py but now I realise learning Django would have been better. Am I wrong? -- 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

[web2py] Is Opencv threadsafe in web2py?

2016-03-11 Thread RAGHIB R
Are opencv stuffs thread-safe and is it okay to use them in web2py? -- 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

[web2py] How do I take picture using camera and save it in db?

2016-03-11 Thread RAGHIB R
What syntax do you use for the same? -- 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 Gr

[web2py] How to upload my app on gae through ubuntu stepwise?

2016-03-14 Thread RAGHIB R
Please let me know the stepwise procedure. -- 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 Goo

[web2py] How to do this? Obviously I need ajax but what's the exact syntax?

2016-03-14 Thread RAGHIB R
Suppose a db table named pictures has 100 pics uploaded (from id 1 to 100). I have another db table name 'choices' with one default field as auth.user_id and another as 'choice' . Now I show user the pics from that db from id 1 to 100 and let him click on any of those such that if he clicks on

[web2py] How many days does it take you to learn django if you know web2py (and only web2py)?

2016-03-16 Thread RAGHIB R
I know learning varies from person to person, but keeping in mind rough estimate, how many days does it take? -- 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: How do you use web2py app work with phonegap?

2016-03-18 Thread RAGHIB R
Tell me if I am wrong. 1)So inside the compressed zip folder you upload for phonegap app wrapping, you simply put the w2p file of your file inside the zipped folder. 2) we add this to the controller: @request.restful() def api(): response.view = 'generic.json' def GET(tablename,id):

[web2py] Re: How do you use web2py app work with phonegap?

2016-03-19 Thread RAGHIB R
Can you please show where you created the REST API? In a different view? Can I get any link, how to do that? On Friday, March 18, 2016 at 8:17:50 PM UTC+5:30, Leonel Câmara wrote: > > I usually just create a REST API returning JSON as is very well documented > in the book and then just call it f

[web2py] How do you use web2py app work with phonegap?

2016-03-19 Thread RAGHIB R
Can you explain it stepwise? If possible please send github link of some web2py app that you changed to work with phonegap. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (R