[web2py] Re: How to rename my application

2015-07-23 Thread Joe
I thought of just about everything else but changing the folder's name. It's so simple and obvious...but I didn't think of that. Thanks very much Anthony! *There is no such a thing as a stupid question...or is there?* On Friday, July 24, 2015 at 10:16:59 AM UTC+8, Anthony wrote: > > Change the

[web2py] How to rename my application

2015-07-23 Thread Anthony
Change the name of its folder. 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

[web2py] How to rename my application

2015-07-23 Thread Joe
Is there a simple way to change the name of my 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 (Report Issues) --- You received this message because you are su

[web2py] Re: Is powertable a viable option for this customization?

2015-07-23 Thread Phillip
The table should reference files that will be small, but may be used as a basis (perhaps in all possible combinations) for the creation of more files. So essentially the table should be used for streaming and adding records, ideally with extensible row customization for other features. While p

[web2py] Re: crash - session_pickled = pickle.dumps(self, pickle.HIGHEST_PROTOCOL) on 2.9.11

2015-07-23 Thread Alex Glaros
Can you please list some alternatives to Apache? -- 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] Google Groups is broken for web2py

2015-07-23 Thread Richard Vézina
Is that explaining the few post that appears yesterday and today... Group see very silent... No much activity... Richard On Thu, Jul 23, 2015 at 1:06 PM, Anthony wrote: > Note, if you post a question via email or the mobile interface, you can > then return to the web interface and edit your pos

[web2py] MVC vs Flux

2015-07-23 Thread Dave S
Now that's taking advantage of an easy target, but 2 points apply: a) rating the capabilities of a development team on the basis of just 1 part of their code base may distort the picture, and FB does *a lot of code* beyond the user-facing display of the wall pages; have you examined any of that

[web2py] Is powertable a viable option for this customization?

2015-07-23 Thread Dave S
Datatable rather than Powertable seems to be the common tool discussed here. Massimo has enthused about HandsonTable https://groups.google.com/d/msg/web2py/3IZ8uEAAXyU/FBZqaPh_aGYJ> Evidently you expect your users to be looking at lots of data. But it would perhaps help us help you for you to el

[web2py] Google Groups is broken for web2py

2015-07-23 Thread Anthony
Note, if you post a question via email or the mobile interface, you can then return to the web interface and edit your post. Alternatively, if you prefer, you can post questions on Stack Overflow (using the web2py tag) and then post a link here. Anthony -- Resources: - http://web2py.com - htt

[web2py] Google Groups is broken for web2py

2015-07-23 Thread Anthony
Perhaps Google will be more likely to fix this bug (which is probably not affecting many groups) if more people complain, so if you have a minute, please submit a bug report to Google. To do so, in the web interface, there is a gear icon in the upper right to access the settings. In the dropdown

Re: [web2py] How do we render the HTML based on response provided by the AJAX call to Web2Py controller action?

2015-07-23 Thread Anthony
Note, this solution does not involve Ajax but just refreshes the whole page. -- 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 bec

[web2py] How do we render the HTML based on response provided by the AJAX call to Web2Py controller action?

2015-07-23 Thread Anthony
Answered on Stack Overflow: http://stackoverflow.com/a/31577690/440323 -- 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 y

[web2py] :using plugin_ckeditor as default editor for built-in wiki

2015-07-23 Thread 'Karl Thomas Schmidt' via web2py-users
sorry for reposting this, but it seems that google didn't like this post. some days ago i asked this: Hi @ all, is there a easy or preferred way to integrate plugin_ckeditor as the default editor for built-in wiki? I'm sure i'm missing a basic point there. Any hints/links to docs? Kalle -- R

Re: [web2py] How do we render the HTML based on response provided by the AJAX call to Web2Py controller action?

2015-07-23 Thread Selman Kocael
you can use SQLFORM.factory in controller: def page(): form=SQLFORM.factory(Field('input1'),Field('input2'),Field('input3'),Field('input4')).process() return locals() in view: {{extend 'layout.html'}} default/page.html: {{=form}} {{if form.vars:}}

[web2py] Re: logout other user

2015-07-23 Thread Alex
that's not true for me. e.g. response.session_id contains '127.0.0.1-b9fe4fd5-c2cf-4759-afa2-7393a391ff92' and response.session_filename contains '\\sessions\\127.0.0.1-b9fe4fd5-c2cf-4759-afa2-7393a391ff92' whereas the session is stored in '\\1f3\\1cc\\127.0.0.1-b9fe4fd5-c2cf-4759-afa2-7393a39

[web2py] scaling app with web services

2015-07-23 Thread Khalil Khamlichi
Hi, We are in the process of scaling a web2py application (app1), basically we are moving old data to a new server and programming a new app (app2) on this new server, The design we intend to implement is simple, app1 will use app2' web services to get xml or json data (we still deciding), we int

[web2py] How do we render the HTML based on response provided by the AJAX call to Web2Py controller action?

2015-07-23 Thread msrandhawa . public
Hello, I am new to the Web2Py, Python stack and am struggling in implementing a basic form based functionality. Basically, I have a view with two panes - left pane for input data and right pane for displaying the output. User enters information in the left pane and I need to pass that informati

[web2py] Re: We do not delete posts

2015-07-23 Thread msrandhawa . public
Is it possible to see the first post somewhere or have a confirmation of some sort that the post is indeed waiting to be moderated? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issue

[web2py] Verify password in register

2015-07-23 Thread Luis Valladares
Hello, I've modified the auth_user table using Auth.settings.extra_fields and added 3 fields, the problem is that the verify password field appears at the button of the page after all my custom fields, but the password field is before all my custom fields, I've tried to create a virtual field in